ImageTColor, TDepth_SmoothGaussian Method (Int32, Int32, Double, Double) |
http://www.emgu.com Perform Gaussian Smoothing inplace for the current image
Namespace: Emgu.CVAssembly: Emgu.CV (in Emgu.CV.dll) Version: 3.0.0.2161 (3.0.0.2161)
Syntaxpublic 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
)
member _SmoothGaussian :
kernelWidth : int *
kernelHeight : int *
sigma1 : float *
sigma2 : float -> unit
Parameters
- kernelWidth
- Type: SystemInt32
The width of the Gaussian kernel - kernelHeight
- Type: SystemInt32
The height of the Gaussian kernel - sigma1
- Type: SystemDouble
The standard deviation of the Gaussian kernel in the horizontal dimwnsion - sigma2
- Type: SystemDouble
The standard deviation of the Gaussian kernel in the vertical dimwnsion
See Also