Click or drag to resize
CvInvokeMorphologyEx Method
http://www.emgu.com
Performs advanced morphological transformations.

Namespace: Emgu.CV
Assembly: Emgu.CV.World (in Emgu.CV.World.dll) Version: 3.2.0.2682 (3.2.0.2682)
Syntax
public static void MorphologyEx(
	IInputArray src,
	IOutputArray dst,
	MorphOp operation,
	IInputArray kernel,
	Point anchor,
	int iterations,
	BorderType borderType,
	MCvScalar borderValue
)

Parameters

src
Type: Emgu.CVIInputArray
Source image.
dst
Type: Emgu.CVIOutputArray
Destination image.
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
Pixel extrapolation method.
borderValue
Type: Emgu.CV.StructureMCvScalar
Border value in case of a constant border.
See Also