processAsync method

Future<VecMat> processAsync(
  1. VecMat src
)

Implementation

Future<VecMat> processAsync(VecMat src) async {
  final dst = calloc<cvg.VecMat>();
  return cvRunAsync0(
    (callback) => cphoto.cv_AlignMTB_process(ref, src.ref, dst, callback),
    (c) {
      return c.complete(VecMat.fromPointer(dst));
    },
  );
}