CudaBoxMinFilter Constructor |
http://www.emgu.com
Create a BoxMin filter.
Namespace: Emgu.CV.CudaAssembly: Emgu.CV.Cuda (in Emgu.CV.Cuda.dll) Version: 3.0.0.2161 (3.0.0.2161)
Syntaxpublic CudaBoxMinFilter(
DepthType srcDepth,
int srcChannels,
Size ksize,
Point anchor,
BorderType borderType = BorderType.Reflect101,
MCvScalar borderValue = null
)
Public Sub New (
srcDepth As DepthType,
srcChannels As Integer,
ksize As Size,
anchor As Point,
Optional borderType As BorderType = BorderType.Reflect101,
Optional borderValue As MCvScalar = Nothing
)
public:
CudaBoxMinFilter(
DepthType srcDepth,
int srcChannels,
Size ksize,
Point anchor,
BorderType borderType = BorderType::Reflect101,
MCvScalar borderValue = nullptr
)
new :
srcDepth : DepthType *
srcChannels : int *
ksize : Size *
anchor : Point *
?borderType : BorderType *
?borderValue : MCvScalar
(* Defaults:
let _borderType = defaultArg borderType BorderType.Reflect101
let _borderValue = defaultArg borderValue null
*)
-> CudaBoxMinFilter
Parameters
- srcDepth
- Type: Emgu.CV.CvEnumDepthType
[Missing <param name="srcDepth"/> documentation for "M:Emgu.CV.Cuda.CudaBoxMinFilter.#ctor(Emgu.CV.CvEnum.DepthType,System.Int32,System.Drawing.Size,System.Drawing.Point,Emgu.CV.CvEnum.BorderType,Emgu.CV.Structure.MCvScalar)"]
- srcChannels
- Type: SystemInt32
[Missing <param name="srcChannels"/> documentation for "M:Emgu.CV.Cuda.CudaBoxMinFilter.#ctor(Emgu.CV.CvEnum.DepthType,System.Int32,System.Drawing.Size,System.Drawing.Point,Emgu.CV.CvEnum.BorderType,Emgu.CV.Structure.MCvScalar)"]
- 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