CudaBoxFilter Constructor |
http://www.emgu.com
Create a BoxMax filter.
Namespace:
Emgu.CV.Cuda
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.0.1.3373 (4.0.1.3373)
Syntaxpublic CudaBoxFilter(
DepthType srcDepth,
int srcChannels,
DepthType dstDepth,
int dstChannels,
Size ksize,
Point anchor,
BorderType borderType = BorderType.Reflect101,
MCvScalar borderValue = null
)
Public Sub New (
srcDepth As DepthType,
srcChannels As Integer,
dstDepth As DepthType,
dstChannels As Integer,
ksize As Size,
anchor As Point,
Optional borderType As BorderType = BorderType.Reflect101,
Optional borderValue As MCvScalar = Nothing
)
public:
CudaBoxFilter(
DepthType srcDepth,
int srcChannels,
DepthType dstDepth,
int dstChannels,
Size ksize,
Point anchor,
BorderType borderType = BorderType::Reflect101,
MCvScalar borderValue = nullptr
)
new :
srcDepth : DepthType *
srcChannels : int *
dstDepth : DepthType *
dstChannels : int *
ksize : Size *
anchor : Point *
?borderType : BorderType *
?borderValue : MCvScalar
(* Defaults:
let _borderType = defaultArg borderType BorderType.Reflect101
let _borderValue = defaultArg borderValue null
*)
-> CudaBoxFilter
Parameters
- srcDepth
- Type: Emgu.CV.CvEnumDepthType
The source image depth type - srcChannels
- Type: SystemInt32
The number of channels in the source image - dstDepth
- Type: Emgu.CV.CvEnumDepthType
The destination image depth type - dstChannels
- Type: SystemInt32
The number of channels in the destination image - ksize
- Type: System.DrawingSize
Size of the kernel - anchor
- Type: System.DrawingPoint
The center of the kernel. User (-1, -1) for the default kernel center. - borderType (Optional)
- Type: Emgu.CV.CvEnumBorderType
The border type. - borderValue (Optional)
- Type: Emgu.CV.StructureMCvScalar
The border value.
See Also