ImageTColor, TDepthDilate Method |
http://www.emgu.com
Dilates this image using a 3x3 rectangular structuring element.
Dilation are applied several (iterations) times
Namespace: Emgu.CVAssembly: Emgu.CV (in Emgu.CV.dll) Version: 3.0.0.2161 (3.0.0.2161)
Syntaxpublic Image<TColor, TDepth> Dilate(
int iterations
)
Public Function Dilate (
iterations As Integer
) As Image(Of TColor, TDepth)
public:
Image<TColor, TDepth>^ Dilate(
int iterations
)
member Dilate :
iterations : int -> Image<'TColor, 'TDepth>
Parameters
- iterations
- Type: SystemInt32
The number of dilate iterations
Return Value
Type:
ImageTColor,
TDepth The dialated image
See Also