GraphSegmentation.create constructor
Implementation
factory GraphSegmentation.create({double sigma = 0.5, double k = 300, int minSize = 100}) {
final p = calloc<ccontrib.GraphSegmentation>();
cvRun(() => ccontrib.ximgproc_GraphSegmentation_Create(sigma, k, minSize, p));
return GraphSegmentation.fromPointer(p);
}