createRLEImageAsync static method
Creates a run-length encoded image from a vector of runs (column begin, column end, row)
Implementation
static Future<Mat> createRLEImageAsync(VecPoint3i runs, {(int, int) size = (0, 0)}) async => cvRunAsync(
(callback) => ccontrib.ximgproc_rl_createRLEImage_Async(runs.ref, size.toSize.ref, callback),
matCompleter,
);