ImageTColor, TDepth_MorphologyEx Method |
http://www.emgu.com
Perform inplace advanced morphological transformations using erosion and dilation as basic operations.
Namespace:
Emgu.CV
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.1.3497 (4.1.1.3497)
Syntaxpublic void _MorphologyEx(
MorphOp operation,
IInputArray kernel,
Point anchor,
int iterations,
BorderType borderType,
MCvScalar borderValue
)
Public Sub _MorphologyEx (
operation As MorphOp,
kernel As IInputArray,
anchor As Point,
iterations As Integer,
borderType As BorderType,
borderValue As MCvScalar
)
public:
void _MorphologyEx(
MorphOp operation,
IInputArray^ kernel,
Point anchor,
int iterations,
BorderType borderType,
MCvScalar borderValue
)
member _MorphologyEx :
operation : MorphOp *
kernel : IInputArray *
anchor : Point *
iterations : int *
borderType : BorderType *
borderValue : MCvScalar -> unit
Parameters
- operation
- Type: Emgu.CV.CvEnumMorphOp
Type of morphological operation - kernel
- Type: Emgu.CVIInputArray
Structuring element - anchor
- Type: System.DrawingPoint
Anchor position with the kernel. Negative values mean that the anchor is at the kernel center. - iterations
- Type: SystemInt32
Number of times erosion and dilation are applied - borderType
- Type: Emgu.CV.CvEnumBorderType
Border type - borderValue
- Type: Emgu.CV.StructureMCvScalar
Border value
See Also