Click or drag to resize
CudaGaussianFilter Constructor
http://www.emgu.com
Create a Gaussian filter.

Namespace: Emgu.CV.Cuda
Assembly: Emgu.CV.Cuda (in Emgu.CV.Cuda.dll) Version: 3.0.0.2161 (3.0.0.2161)
Syntax
public CudaGaussianFilter(
	DepthType srcDepth,
	int srcChannels,
	DepthType dstDepth,
	int dstChannels,
	Size ksize,
	double sigma1,
	double sigma2 = 0,
	BorderType rowBorderType = BorderType.Reflect101,
	BorderType columnBorderType = BorderType.NegativeOne
)

Parameters

srcDepth
Type: Emgu.CV.CvEnumDepthType

[Missing <param name="srcDepth"/> documentation for "M:Emgu.CV.Cuda.CudaGaussianFilter.#ctor(Emgu.CV.CvEnum.DepthType,System.Int32,Emgu.CV.CvEnum.DepthType,System.Int32,System.Drawing.Size,System.Double,System.Double,Emgu.CV.CvEnum.BorderType,Emgu.CV.CvEnum.BorderType)"]

srcChannels
Type: SystemInt32

[Missing <param name="srcChannels"/> documentation for "M:Emgu.CV.Cuda.CudaGaussianFilter.#ctor(Emgu.CV.CvEnum.DepthType,System.Int32,Emgu.CV.CvEnum.DepthType,System.Int32,System.Drawing.Size,System.Double,System.Double,Emgu.CV.CvEnum.BorderType,Emgu.CV.CvEnum.BorderType)"]

dstDepth
Type: Emgu.CV.CvEnumDepthType

[Missing <param name="dstDepth"/> documentation for "M:Emgu.CV.Cuda.CudaGaussianFilter.#ctor(Emgu.CV.CvEnum.DepthType,System.Int32,Emgu.CV.CvEnum.DepthType,System.Int32,System.Drawing.Size,System.Double,System.Double,Emgu.CV.CvEnum.BorderType,Emgu.CV.CvEnum.BorderType)"]

dstChannels
Type: SystemInt32

[Missing <param name="dstChannels"/> documentation for "M:Emgu.CV.Cuda.CudaGaussianFilter.#ctor(Emgu.CV.CvEnum.DepthType,System.Int32,Emgu.CV.CvEnum.DepthType,System.Int32,System.Drawing.Size,System.Double,System.Double,Emgu.CV.CvEnum.BorderType,Emgu.CV.CvEnum.BorderType)"]

ksize
Type: System.DrawingSize
The size of the kernel
sigma1
Type: SystemDouble
This parameter may specify Gaussian sigma (standard deviation). If it is zero, it is calculated from the kernel size.
sigma2 (Optional)
Type: SystemDouble
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
rowBorderType (Optional)
Type: Emgu.CV.CvEnumBorderType
The row border type.
columnBorderType (Optional)
Type: Emgu.CV.CvEnumBorderType
The column border type.
See Also