morphologyEx static method
Mat
morphologyEx(
- 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 Mat morphologyEx(
InputArray rlSrc,
int op,
InputArray rlKernel, {
bool bBoundaryOnForErosion = true,
(int, int) anchor = (0, 0),
}) {
final p = calloc<cvg.Mat>();
cvRun(
() => cffi.ximgproc_rl_morphologyEx(
rlSrc.ref,
p,
op,
rlKernel.ref,
bBoundaryOnForErosion,
anchor.asPoint.ref,
),
);
return Mat.fromPointer(p);
}