dilate static method
Dilates an run-length encoded binary image by using a specific structuring element.
Implementation
static Mat dilate(InputArray rlSrc, InputArray rlKernel, {(int, int) anchor = (0, 0)}) {
final p = calloc<ccontrib.Mat>();
cvRun(() => ccontrib.ximgproc_rl_dilate(rlSrc.ref, p, rlKernel.ref, anchor.asPoint.ref));
return Mat.fromPointer(p);
}