Dilates image by using arbitrary structuring element.
Namespace: OpenCvSharp
Assembly: OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public static void Dilate( CvArr src, CvArr dst, IplConvKernel element, int iterations )
Parameters
- src
- Type: OpenCvSharpCvArr
Source image. - dst
- Type: OpenCvSharpCvArr
Destination image. - element
- Type: OpenCvSharpIplConvKernel
Structuring element used for erosion. If it is null, a 3x3 rectangular structuring element is used. - iterations
- Type: SystemInt32
Number of times erosion is applied.
See Also