CudaLaplacianFilter Constructor |
http://www.emgu.com
Create a Laplacian filter.
Namespace:
Emgu.CV.Cuda
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 3.3.0.2824 (3.3.0.2824)
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
The depth type of the source image - srcChannels
- Type: SystemInt32
The number of channels in the source image - dstDepth
- Type: Emgu.CV.CvEnumDepthType
The depth type of the destination image - dstChannels
- Type: SystemInt32
The number of channels in the destination image - 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