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