Click or drag to resize
CudaMorphologyFilter Constructor
http://www.emgu.com
Create a Morphology filter.

Namespace: Emgu.CV.Cuda
Assembly: Emgu.CV.Cuda (in Emgu.CV.Cuda.dll) Version: 3.0.0.2161 (3.0.0.2161)
Syntax
public CudaMorphologyFilter(
	MorphOp op,
	DepthType srcDepth,
	int srcChannels,
	IInputArray kernel,
	Point anchor,
	int iterations
)

Parameters

op
Type: Emgu.CV.CvEnumMorphOp
Type of morphological operation
srcDepth
Type: Emgu.CV.CvEnumDepthType

[Missing <param name="srcDepth"/> documentation for "M:Emgu.CV.Cuda.CudaMorphologyFilter.#ctor(Emgu.CV.CvEnum.MorphOp,Emgu.CV.CvEnum.DepthType,System.Int32,Emgu.CV.IInputArray,System.Drawing.Point,System.Int32)"]

srcChannels
Type: SystemInt32

[Missing <param name="srcChannels"/> documentation for "M:Emgu.CV.Cuda.CudaMorphologyFilter.#ctor(Emgu.CV.CvEnum.MorphOp,Emgu.CV.CvEnum.DepthType,System.Int32,Emgu.CV.IInputArray,System.Drawing.Point,System.Int32)"]

kernel
Type: Emgu.CVIInputArray
2D 8-bit structuring element for the morphological operation.
anchor
Type: System.DrawingPoint
Anchor position within the structuring element. Negative values mean that the anchor is at the center.
iterations
Type: SystemInt32
Number of times erosion and dilation to be applied.
See Also