morphologyExAsync static method

Future<Mat> morphologyExAsync(
  1. InputArray rlSrc,
  2. int op,
  3. InputArray rlKernel, {
  4. bool bBoundaryOnForErosion = true,
  5. (int, int) anchor = (0, 0),
})

Implementation

static Future<Mat> morphologyExAsync(
  InputArray rlSrc,
  int op,
  InputArray rlKernel, {
  bool bBoundaryOnForErosion = true,
  (int, int) anchor = (0, 0),
}) async {
  final dst = Mat.empty();
  return cvRunAsync0(
    (callback) => ccontrib.cv_ximgproc_rl_morphologyEx(
      rlSrc.ref,
      dst.ref,
      op,
      rlKernel.ref,
      bBoundaryOnForErosion,
      anchor.toPoint().ref,
      callback,
    ),
    (c) {
      return c.complete(dst);
    },
  );
}