dilateAsync static method
Dilates an run-length encoded binary image by using a specific structuring element.
Implementation
static Future<Mat> dilateAsync(InputArray rlSrc, InputArray rlKernel, {(int, int) anchor = (0, 0)}) async =>
cvRunAsync(
(callback) =>
ccontrib.ximgproc_rl_dilate_Async(rlSrc.ref, rlKernel.ref, anchor.asPoint.ref, callback),
matCompleter,
);