CudaMorphologyFilter Constructor |
http://www.emgu.com
Create a Morphology filter.
Namespace: Emgu.CV.CudaAssembly: Emgu.CV.Cuda (in Emgu.CV.Cuda.dll) Version: 3.0.0.2161 (3.0.0.2161)
Syntaxpublic CudaMorphologyFilter(
MorphOp op,
DepthType srcDepth,
int srcChannels,
IInputArray kernel,
Point anchor,
int iterations
)
Public Sub New (
op As MorphOp,
srcDepth As DepthType,
srcChannels As Integer,
kernel As IInputArray,
anchor As Point,
iterations As Integer
)
public:
CudaMorphologyFilter(
MorphOp op,
DepthType srcDepth,
int srcChannels,
IInputArray^ kernel,
Point anchor,
int iterations
)
new :
op : MorphOp *
srcDepth : DepthType *
srcChannels : int *
kernel : IInputArray *
anchor : Point *
iterations : int -> CudaMorphologyFilter
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