ColumnSumFilter Constructor |
http://www.emgu.com
Creates a vertical 1D box filter.
Namespace:
Emgu.CV.Cuda
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.0.1.3373 (4.0.1.3373)
Syntaxpublic ColumnSumFilter(
DepthType srcDepth,
int srcChannels,
DepthType dstDepth,
int dstChannels,
int ksize,
int anchor = -1,
BorderType borderType = BorderType.Reflect101,
MCvScalar borderValue = null
)
Public Sub New (
srcDepth As DepthType,
srcChannels As Integer,
dstDepth As DepthType,
dstChannels As Integer,
ksize As Integer,
Optional anchor As Integer = -1,
Optional borderType As BorderType = BorderType.Reflect101,
Optional borderValue As MCvScalar = Nothing
)
public:
ColumnSumFilter(
DepthType srcDepth,
int srcChannels,
DepthType dstDepth,
int dstChannels,
int ksize,
int anchor = -1,
BorderType borderType = BorderType::Reflect101,
MCvScalar borderValue = nullptr
)
new :
srcDepth : DepthType *
srcChannels : int *
dstDepth : DepthType *
dstChannels : int *
ksize : int *
?anchor : int *
?borderType : BorderType *
?borderValue : MCvScalar
(* Defaults:
let _anchor = defaultArg anchor -1
let _borderType = defaultArg borderType BorderType.Reflect101
let _borderValue = defaultArg borderValue null
*)
-> ColumnSumFilter
Parameters
- srcDepth
- Type: Emgu.CV.CvEnumDepthType
Input image depth. - srcChannels
- Type: SystemInt32
Input image channel. - dstDepth
- Type: Emgu.CV.CvEnumDepthType
Output image depth. - dstChannels
- Type: SystemInt32
Output image channel. - ksize
- Type: SystemInt32
Kernel size. - anchor (Optional)
- Type: SystemInt32
Anchor point. The default value (-1) means that the anchor is at the kernel center. - borderType (Optional)
- Type: Emgu.CV.CvEnumBorderType
Pixel extrapolation method. - borderValue (Optional)
- Type: Emgu.CV.StructureMCvScalar
Default border value.
See Also