[This is preliminary documentation and is subject to change.]

Perform Gaussian Smoothing in the current image and return the result

Namespace:  Emgu.CV
Assembly:  Emgu.CV (in Emgu.CV.dll) Version: 2.0.0.0 (2.0.0.0)

Syntax

         
 C#  Visual Basic  Visual C++ 
public Image<TColor, TDepth> SmoothGaussian(
	int kernelSize
)
Public Function SmoothGaussian ( _
	kernelSize As Integer _
) As Image(Of TColor, TDepth)
public:
Image<TColor, TDepth>^ SmoothGaussian(
	int kernelSize
)

Parameters

kernelSize
Int32
The size of the Gaussian kernel ( x )

Return Value

The smoothed image

See Also