pyrUpAsync function
PyrUp upsamples an image and then blurs it.
For further details, please see: https:///docs.opencv.org/master/d4/d86/group__imgproc__filter.html#gada75b59bdaaca411ed6fee10085eb784
Implementation
Future<Mat> pyrUpAsync(
Mat src, {
Mat? dst,
(int, int) dstsize = (0, 0),
int borderType = BORDER_DEFAULT,
}) async =>
cvRunAsync(
(callback) => cimgproc.PyrUp_Async(src.ref, dstsize.cvd.ref, borderType, callback),
matCompleter,
);