ximgproc_rl class

Constructors

ximgproc_rl()

Properties

hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Static Methods

createRLEImage(VecPoint3i runs, {(int, int) size = (0, 0)}) Mat
Creates a run-length encoded image from a vector of runs (column begin, column end, row)
createRLEImageAsync(VecPoint3i runs, {(int, int) size = (0, 0)}) Future<Mat>
Creates a run-length encoded image from a vector of runs (column begin, column end, row)
dilate(InputArray rlSrc, InputArray rlKernel, {(int, int) anchor = (0, 0)}) Mat
Dilates an run-length encoded binary image by using a specific structuring element.
dilateAsync(InputArray rlSrc, InputArray rlKernel, {(int, int) anchor = (0, 0)}) Future<Mat>
Dilates an run-length encoded binary image by using a specific structuring element.
erode(InputArray rlSrc, InputArray rlKernel, {bool bBoundaryOn = true, (int, int) anchor = (0, 0)}) Mat
Erodes an run-length encoded binary image by using a specific structuring element.
erodeAsync(InputArray rlSrc, InputArray rlKernel, {bool bBoundaryOn = true, (int, int) anchor = (0, 0)}) Future<Mat>
Erodes an run-length encoded binary image by using a specific structuring element.
getStructuringElement(int shape, (int, int) ksize) Mat
Returns a run length encoded structuring element of the specified size and shape.
getStructuringElementAsync(int shape, (int, int) ksize) Future<Mat>
Returns a run length encoded structuring element of the specified size and shape.
isRLMorphologyPossible(InputArray rlStructuringElement) bool
Check whether a custom made structuring element can be used with run length morphological operations. (It must consist of a continuous array of single runs per row)
isRLMorphologyPossibleAsync(InputArray rlStructuringElement) Future<bool>
Check whether a custom made structuring element can be used with run length morphological operations. (It must consist of a continuous array of single runs per row)
morphologyEx(InputArray rlSrc, int op, InputArray rlKernel, {bool bBoundaryOnForErosion = true, (int, int) anchor = (0, 0)}) Mat
Applies a morphological operation to a run-length encoded binary image.
morphologyExAsync(InputArray rlSrc, int op, InputArray rlKernel, {bool bBoundaryOnForErosion = true, (int, int) anchor = (0, 0)}) Future<Mat>
Applies a morphological operation to a run-length encoded binary image.
paint(InputOutputArray image, InputArray rlSrc, Scalar value) Mat
Paint run length encoded binary image into an image.
paintAsync(InputOutputArray image, InputArray rlSrc, Scalar value) Future<Mat>
Paint run length encoded binary image into an image.
threshold(InputArray sr, double thresh, int type) Mat
Applies a fixed-level threshold to each array element.
thresholdAsync(InputArray src, double thresh, int type) Future<Mat>
Applies a fixed-level threshold to each array element.