process method

VecMat process(
  1. VecMat src
)

Implementation

VecMat process(VecMat src) {
  final dst = VecMat();
  cvRun(() => cphoto.cv_AlignMTB_process(ref, src.ref, dst.ptr, ffi.nullptr));
  return dst;
}