createRLEImage static method
Creates a run-length encoded image from a vector of runs (column begin, column end, row)
Implementation
static Mat createRLEImage(VecPoint3i runs, {(int, int) size = (0, 0)}) {
final p = calloc<ccontrib.Mat>();
cvRun(() => ccontrib.ximgproc_rl_createRLEImage(runs.ref, p, size.cvd.ref));
return Mat.fromPointer(p);
}