process method

VecMat process(
  1. VecMat src
)

Implementation

VecMat process(VecMat src) {
  final dst = calloc<cphoto.VecMat>();
  cphoto.AlignMTB_Process(ref, src.ref, dst);
  return VecMat.fromPointer(dst);
}