CudaBoxMinFilter Constructor |
http://www.emgu.com
Create a BoxMin filter.
Namespace:
Emgu.CV.Cuda
Assembly:
Emgu.CV.World.NetStandard (in Emgu.CV.World.NetStandard.dll) Version: 1.0.0
Syntaxpublic CudaBoxMinFilter(
DepthType srcDepth,
int srcChannels,
Size ksize,
Point anchor,
BorderType borderType = 4,
MCvScalar borderValue = null
)
Public Sub New (
srcDepth As DepthType,
srcChannels As Integer,
ksize As Size,
anchor As Point,
Optional borderType As BorderType = 4,
Optional borderValue As MCvScalar = Nothing
)
public:
CudaBoxMinFilter(
DepthType^ srcDepth,
int srcChannels,
Size^ ksize,
Point^ anchor,
BorderType^ borderType = 4,
MCvScalar^ borderValue = nullptr
)
new :
srcDepth : DepthType *
srcChannels : int *
ksize : Size *
anchor : Point *
?borderType : BorderType *
?borderValue : MCvScalar
(* Defaults:
let _borderType = defaultArg borderType 4
let _borderValue = defaultArg borderValue null
*)
-> CudaBoxMinFilter
Parameters
- srcDepth
- Type: Emgu.CV.CvEnumDepthType
The depth of the source image - srcChannels
- Type: SystemInt32
The number of channels in the source 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