http://www.emgu.com 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 kernelSize
) |
Visual Basic |
---|
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