ImageTColor, TDepthSmoothGaussian Method (Int32, Int32, Double, Double) |
http://www.emgu.com Perform Gaussian Smoothing in the current image and return the result
Namespace:
Emgu.CV
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.1.3497 (4.1.1.3497)
Syntaxpublic 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
)
member SmoothGaussian :
kernelWidth : int *
kernelHeight : int *
sigma1 : float *
sigma2 : float -> Image<'TColor, 'TDepth>
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 dimension - sigma2
- Type: SystemDouble
The standard deviation of the Gaussian kernel in the vertical dimension
Return Value
Type:
ImageTColor,
TDepth The smoothed image
See Also