processAsync method

Future<Mat> processAsync(
  1. VecMat src
)

Implementation

Future<Mat> processAsync(VecMat src) async {
  final dst = Mat.empty();
  return cvRunAsync0((callback) => cphoto.cv_MergeMertens_process(ref, src.ref, dst.ref, callback), (c) {
    return c.complete(dst);
  });
}