blurAsync function

Future<Mat> blurAsync(
  1. Mat src,
  2. (int, int) ksize
)

Blur blurs an image Mat using a normalized box filter.

For further details, please see: https:///docs.opencv.org/master/d4/d86/group__imgproc__filter.html#ga8c45db9afe636703801b0b2e440fce37

Implementation

Future<Mat> blurAsync(Mat src, (int, int) ksize) async =>
    cvRunAsync((callback) => cimgproc.Blur_Async(src.ref, ksize.cvd.ref, callback), matCompleter);