Erodes the image (applies the local minimum operator). Supports CV_8UC1, CV_8UC4 type.

Namespace: Emgu.CV.GPU
Assembly: Emgu.CV.GPU (in Emgu.CV.GPU.dll) Version: 2.2.1.1150 (2.2.1.1150)

Syntax

         
 C#  Visual Basic  Visual C++ 
public static void Erode(
	IntPtr src,
	IntPtr dst,
	IntPtr kernel,
	Point anchor,
	int iterations
)
Public Shared Sub Erode ( _
	src As IntPtr, _
	dst As IntPtr, _
	kernel As IntPtr, _
	anchor As Point, _
	iterations As Integer _
)
public:
static void Erode(
	IntPtr src, 
	IntPtr dst, 
	IntPtr kernel, 
	Point anchor, 
	int iterations
)

Parameters

src
IntPtr
The source GpuMat
dst
IntPtr
The destination GpuMat
kernel
IntPtr
The morphology kernel, pointer to an CvArr
anchor
Point
The center of the kernel
iterations
Int32
The number of iterations morphology is applied

See Also