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