ImageTColor, TDepthErode Method |
http://www.emgu.com
Erodes this image using a 3x3 rectangular structuring element.
Erosion are applied several (iterations) times
Namespace:
Emgu.CV
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.1.3497 (4.1.1.3497)
Syntaxpublic Image<TColor, TDepth> Erode(
int iterations
)
Public Function Erode (
iterations As Integer
) As Image(Of TColor, TDepth)
public:
Image<TColor, TDepth>^ Erode(
int iterations
)
member Erode :
iterations : int -> Image<'TColor, 'TDepth>
Parameters
- iterations
- Type: SystemInt32
The number of erode iterations
Return Value
Type:
ImageTColor,
TDepth The eroded image
See Also