processImage method
Segment an image and store output in dst.
Implementation
Mat processImage(Mat src) {
final dst = Mat.empty();
cvRun(() => ccontrib.cv_ximgproc_GraphSegmentation_processImage(ref, src.ref, dst.ref, ffi.nullptr));
return dst;
}