ImageTColor, TDepthSmoothGaussian Method (Int32) |
http://www.emgu.com Perform Gaussian Smoothing in the current image and return the result
Namespace: Emgu.CVAssembly: Emgu.CV (in Emgu.CV.dll) Version: 3.0.0.2161 (3.0.0.2161)
Syntaxpublic Image<TColor, TDepth> SmoothGaussian(
int kernelSize
)
Public Function SmoothGaussian (
kernelSize As Integer
) As Image(Of TColor, TDepth)
public:
Image<TColor, TDepth>^ SmoothGaussian(
int kernelSize
)
member SmoothGaussian :
kernelSize : int -> Image<'TColor, 'TDepth>
Parameters
- kernelSize
- Type: SystemInt32
The size of the Gaussian kernel (kernelSize x kernelSize)
Return Value
Type:
ImageTColor,
TDepth The smoothed image
See Also