Perform Gaussian Smoothing inplace for the current image

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

Syntax

         
 C#  Visual Basic  Visual C++ 
public void _SmoothGaussian(
	int kernelWidth,
	int kernelHeight,
	double sigma1,
	double sigma2
)
Public Sub _SmoothGaussian ( _
	kernelWidth As Integer, _
	kernelHeight As Integer, _
	sigma1 As Double, _
	sigma2 As Double _
)
public:
void _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

See Also