CudaLaplacianFilter Constructor |
http://www.emgu.com
Create a Laplacian filter.
Namespace: Emgu.CV.CudaAssembly: Emgu.CV.Cuda (in Emgu.CV.Cuda.dll) Version: 3.0.0.2161 (3.0.0.2161)
Syntaxpublic CudaLaplacianFilter(
DepthType srcDepth,
int srcChannels,
DepthType dstDepth,
int dstChannels,
int ksize = 1,
double scale = 1,
BorderType borderType = BorderType.Reflect101,
MCvScalar borderValue = null
)
Public Sub New (
srcDepth As DepthType,
srcChannels As Integer,
dstDepth As DepthType,
dstChannels As Integer,
Optional ksize As Integer = 1,
Optional scale As Double = 1,
Optional borderType As BorderType = BorderType.Reflect101,
Optional borderValue As MCvScalar = Nothing
)
public:
CudaLaplacianFilter(
DepthType srcDepth,
int srcChannels,
DepthType dstDepth,
int dstChannels,
int ksize = 1,
double scale = 1,
BorderType borderType = BorderType::Reflect101,
MCvScalar borderValue = nullptr
)
new :
srcDepth : DepthType *
srcChannels : int *
dstDepth : DepthType *
dstChannels : int *
?ksize : int *
?scale : float *
?borderType : BorderType *
?borderValue : MCvScalar
(* Defaults:
let _ksize = defaultArg ksize 1
let _scale = defaultArg scale 1
let _borderType = defaultArg borderType BorderType.Reflect101
let _borderValue = defaultArg borderValue null
*)
-> CudaLaplacianFilter
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