paintAsync static method
Paint run length encoded binary image into an image.
Implementation
static Future<Mat> paintAsync(InputOutputArray image, InputArray rlSrc, Scalar value) async => cvRunAsync0(
(callback) => cffi.ximgproc_rl_paint_Async(image.ref, rlSrc.ref, value.ref, callback),
(c) => c.complete(image),
);