SeparableLinearFilter Constructor |
http://www.emgu.com
Create a SeparableLinearFilter
Namespace:
Emgu.CV.Cuda
Assembly:
Emgu.CV.Platform.NetStandard (in Emgu.CV.Platform.NetStandard.dll) Version: 4.3.0.3890
Syntaxpublic SeparableLinearFilter(
DepthType srcDepth,
int srcChannels,
DepthType dstDepth,
int dstChannels,
IInputArray rowKernel,
IInputArray columnKernel,
Point anchor,
BorderType rowBorderType = BorderType.Reflect101,
BorderType columnBorderType = BorderType.Reflect101
)
Public Sub New (
srcDepth As DepthType,
srcChannels As Integer,
dstDepth As DepthType,
dstChannels As Integer,
rowKernel As IInputArray,
columnKernel As IInputArray,
anchor As Point,
Optional rowBorderType As BorderType = BorderType.Reflect101,
Optional columnBorderType As BorderType = BorderType.Reflect101
)
public:
SeparableLinearFilter(
DepthType srcDepth,
int srcChannels,
DepthType dstDepth,
int dstChannels,
IInputArray^ rowKernel,
IInputArray^ columnKernel,
Point anchor,
BorderType rowBorderType = BorderType::Reflect101,
BorderType columnBorderType = BorderType::Reflect101
)
new :
srcDepth : DepthType *
srcChannels : int *
dstDepth : DepthType *
dstChannels : int *
rowKernel : IInputArray *
columnKernel : IInputArray *
anchor : Point *
?rowBorderType : BorderType *
?columnBorderType : BorderType
(* Defaults:
let _rowBorderType = defaultArg rowBorderType BorderType.Reflect101
let _columnBorderType = defaultArg columnBorderType BorderType.Reflect101
*)
-> SeparableLinearFilter
Parameters
- srcDepth
- Type: Emgu.CV.CvEnumDepthType
Source array depth - srcChannels
- Type: SystemInt32
Source array channels - dstDepth
- Type: Emgu.CV.CvEnumDepthType
Destination array depth - dstChannels
- Type: SystemInt32
Destination array channels - rowKernel
- Type: Emgu.CVIInputArray
Horizontal filter coefficients. Support kernels with size <= 32 . - columnKernel
- Type: Emgu.CVIInputArray
Vertical filter coefficients. Support kernels with size <= 32 . - anchor
- Type: System.DrawingPoint
Anchor position within the kernel. Negative values mean that anchor is positioned at the aperture center. - rowBorderType (Optional)
- Type: Emgu.CV.CvEnumBorderType
Pixel extrapolation method in the vertical direction - columnBorderType (Optional)
- Type: Emgu.CV.CvEnumBorderType
Pixel extrapolation method in the horizontal direction
See Also