CvInvokeSepFilter2D Method |
http://www.emgu.com
The function applies a separable linear filter to the image. That is, first, every row of src is filtered with the 1D kernel kernelX. Then, every column of the result is filtered with the 1D kernel kernelY. The final result shifted by delta is stored in dst .
Namespace:
Emgu.CV
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.1.3497 (4.1.1.3497)
Syntaxpublic static void SepFilter2D(
IInputArray src,
IOutputArray dst,
DepthType ddepth,
IInputArray kernelX,
IInputArray kernelY,
Point anchor,
double delta = 0,
BorderType borderType = BorderType.Reflect101
)
Public Shared Sub SepFilter2D (
src As IInputArray,
dst As IOutputArray,
ddepth As DepthType,
kernelX As IInputArray,
kernelY As IInputArray,
anchor As Point,
Optional delta As Double = 0,
Optional borderType As BorderType = BorderType.Reflect101
)
public:
static void SepFilter2D(
IInputArray^ src,
IOutputArray^ dst,
DepthType ddepth,
IInputArray^ kernelX,
IInputArray^ kernelY,
Point anchor,
double delta = 0,
BorderType borderType = BorderType::Reflect101
)
static member SepFilter2D :
src : IInputArray *
dst : IOutputArray *
ddepth : DepthType *
kernelX : IInputArray *
kernelY : IInputArray *
anchor : Point *
?delta : float *
?borderType : BorderType
(* Defaults:
let _delta = defaultArg delta 0
let _borderType = defaultArg borderType BorderType.Reflect101
*)
-> unit
Parameters
- src
- Type: Emgu.CVIInputArray
Source image. - dst
- Type: Emgu.CVIOutputArray
Destination image of the same size and the same number of channels as src. - ddepth
- Type: Emgu.CV.CvEnumDepthType
Destination image depth - kernelX
- Type: Emgu.CVIInputArray
Coefficients for filtering each row. - kernelY
- Type: Emgu.CVIInputArray
Coefficients for filtering each column. - anchor
- Type: System.DrawingPoint
Anchor position within the kernel. The value (-1,-1) means that the anchor is at the kernel center. - delta (Optional)
- Type: SystemDouble
Value added to the filtered results before storing them. - borderType (Optional)
- Type: Emgu.CV.CvEnumBorderType
Pixel extrapolation method
See Also