http://www.emgu.com
Assembly: Emgu.CV (in Emgu.CV.dll) Version: 2.3.0.1416 (2.3.0.1416)
Perform Gaussian Smoothing in the current image and return the result
Namespace: Emgu.CVAssembly: Emgu.CV (in Emgu.CV.dll) Version: 2.3.0.1416 (2.3.0.1416)
Syntax
C# |
---|
public Image<TColor, TDepth> SmoothGaussian( int kernelWidth, int kernelHeight, double sigma1, double sigma2 ) |
Visual Basic |
---|
Public Function SmoothGaussian ( _ kernelWidth As Integer, _ kernelHeight As Integer, _ sigma1 As Double, _ sigma2 As Double _ ) As Image(Of TColor, TDepth) |
Visual C++ |
---|
public: Image<TColor, TDepth>^ SmoothGaussian( int kernelWidth, int kernelHeight, double sigma1, double sigma2 ) |
Parameters
- kernelWidth
- Type: System..::..Int32
The width of the Gaussian kernel
- kernelHeight
- Type: System..::..Int32
The height of the Gaussian kernel
- sigma1
- Type: System..::..Double
The standard deviation of the Gaussian kernel in the horizontal dimwnsion
- sigma2
- Type: System..::..Double
The standard deviation of the Gaussian kernel in the vertical dimwnsion