processImage method
Segment an image and store output in dst.
Implementation
Mat processImage(Mat src) {
final p = calloc<ccontrib.Mat>();
cvRun(() => ccontrib.ximgproc_GraphSegmentation_processImage(ref, src.ref, p));
return Mat.fromPointer(p);
}