Emgu CV Library Documentation
SmoothGaussian Method (kernelWidth, kernelHeight, sigma1, sigma2)
NamespacesEmgu.CVImage<(Of <(TColor, TDepth>)>)SmoothGaussian(Int32, Int32, Double, Double)

www.emgu.com/wiki
Perform Gaussian Smoothing in the current image and return the result
Declaration Syntax
C#Visual BasicVisual C++
public Image<TColor, TDepth> SmoothGaussian(
	int kernelWidth,
	int kernelHeight,
	double sigma1,
	double sigma2
)
Public Function SmoothGaussian ( _
	kernelWidth As Integer, _
	kernelHeight As Integer, _
	sigma1 As Double, _
	sigma2 As Double _
) As Image(Of TColor, TDepth)
public:
Image<TColor, TDepth>^ SmoothGaussian(
	int kernelWidth, 
	int kernelHeight, 
	double sigma1, 
	double sigma2
)
Parameters
kernelWidth (Int32)
The width of the Gaussian kernel
kernelHeight (Int32)
The height of the Gaussian kernel
sigma1 (Double)
The standard deviation of the Gaussian kernel in the horizontal dimwnsion
sigma2 (Double)
The standard deviation of the Gaussian kernel in the vertical dimwnsion
Return Value
The smoothed image

Assembly: Emgu.CV (Module: Emgu.CV) Version: 1.5.0.0 (1.5.0.0)