http://www.emgu.com
Assembly: Emgu.CV (in Emgu.CV.dll) Version: 2.3.0.1416 (2.3.0.1416)
Dilates the source image using the specified structuring element that determines the shape of a pixel neighborhood over which the maximum is taken
The function supports the in-place mode. Dilation can be applied several (iterations) times. In case of color image each channel is processed independently
Namespace: Emgu.CVAssembly: Emgu.CV (in Emgu.CV.dll) Version: 2.3.0.1416 (2.3.0.1416)
Syntax
C# |
---|
public static void cvDilate( IntPtr src, IntPtr dst, IntPtr element, int iterations ) |
Visual Basic |
---|
Public Shared Sub cvDilate ( _ src As IntPtr, _ dst As IntPtr, _ element As IntPtr, _ iterations As Integer _ ) |
Visual C++ |
---|
public: static void cvDilate( IntPtr src, IntPtr dst, IntPtr element, int iterations ) |
Parameters
- src
- Type: System..::..IntPtr
Source image
- dst
- Type: System..::..IntPtr
Destination image
- element
- Type: System..::..IntPtr
Structuring element used for erosion. If it is IntPtr.Zero, a 3x3 rectangular structuring element is used
- iterations
- Type: System..::..Int32
Number of times erosion is applied