morphologyExAsync static method
Future<Mat>
morphologyExAsync(
- InputArray rlSrc,
- int op,
- InputArray rlKernel, {
- bool bBoundaryOnForErosion = true,
- (int, int) anchor = (0, 0),
Applies a morphological operation to a run-length encoded binary image.
Implementation
static Future<Mat> morphologyExAsync(
InputArray rlSrc,
int op,
InputArray rlKernel, {
bool bBoundaryOnForErosion = true,
(int, int) anchor = (0, 0),
}) async =>
cvRunAsync(
(callback) => cffi.ximgproc_rl_morphologyEx_Async(
rlSrc.ref,
op,
rlKernel.ref,
bBoundaryOnForErosion,
anchor.asPoint.ref,
callback,
),
matCompleter,
);