Click or drag to resize
CudaLaplacianFilter Constructor
http://www.emgu.com
Create a Laplacian 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 CudaLaplacianFilter(
	DepthType srcDepth,
	int srcChannels,
	DepthType dstDepth,
	int dstChannels,
	int ksize = 1,
	double scale = 1,
	BorderType borderType = BorderType.Reflect101,
	MCvScalar borderValue = null
)

Parameters

srcDepth
Type: Emgu.CV.CvEnumDepthType

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

srcChannels
Type: SystemInt32

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

dstDepth
Type: Emgu.CV.CvEnumDepthType

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

dstChannels
Type: SystemInt32

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

ksize (Optional)
Type: SystemInt32
Either 1 or 3
scale (Optional)
Type: SystemDouble
Optional scale. Use 1.0 for default
borderType (Optional)
Type: Emgu.CV.CvEnumBorderType
The border type.
borderValue (Optional)
Type: Emgu.CV.StructureMCvScalar
The border value.
See Also