Smooths the GpuMat using Gaussian filter.

Namespace: Emgu.CV.GPU
Assembly: Emgu.CV.GPU (in Emgu.CV.GPU.dll) Version: 2.2.1.1106 (2.2.1.1106)

Syntax

         
 C#  Visual Basic  Visual C++ 
public static void gpuMatGaussianBlur(
	IntPtr src,
	IntPtr dst,
	Size ksize,
	double sigma1,
	double sigma2
)
Public Shared Sub gpuMatGaussianBlur ( _
	src As IntPtr, _
	dst As IntPtr, _
	ksize As Size, _
	sigma1 As Double, _
	sigma2 As Double _
)
public:
static void gpuMatGaussianBlur(
	IntPtr src, 
	IntPtr dst, 
	Size ksize, 
	double sigma1, 
	double sigma2
)

Parameters

src
IntPtr
The source GpuMat
dst
IntPtr
The smoothed GpuMat
ksize
Size
The size of the kernel
sigma1
Double
This parameter may specify Gaussian sigma (standard deviation). If it is zero, it is calculated from the kernel size.
sigma2
Double
In case of non-square Gaussian kernel the parameter may be used to specify a different (from param3) sigma in the vertical direction. Use 0 for default

See Also