Perform Gaussian Smoothing in the current image and return the result
Namespace:
Emgu.CV
Assembly:
Emgu.CV (in Emgu.CV.dll) Version: 2.0.1.0 (2.0.1.0)
Syntax
C# |
---|
public Image<TColor, TDepth> SmoothGaussian(
int kernelSize
) |
Visual Basic (Declaration) |
---|
Public Function SmoothGaussian ( _
kernelSize As Integer _
) As Image(Of TColor, TDepth) |
Visual C++ |
---|
public:
Image<TColor, TDepth>^ SmoothGaussian(
int kernelSize
) |
Parameters
- kernelSize
- Type: System..::.Int32
The size of the Gaussian kernel (kernelSize x kernelSize)
Return Value
The smoothed image
See Also