Applies separable linear filter to an image
Namespace:
OpenCvSharp
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 3.4.1.20180605-33-CaRLSharp
Syntaxpublic static void SepFilter2D(
InputArray src,
OutputArray dst,
MatType ddepth,
InputArray kernelX,
InputArray kernelY,
Nullable<Point> anchor = null,
double delta = 0,
BorderTypes borderType = BorderTypes.Reflect101
)
Public Shared Sub SepFilter2D (
src As InputArray,
dst As OutputArray,
ddepth As MatType,
kernelX As InputArray,
kernelY As InputArray,
Optional anchor As Nullable(Of Point) = Nothing,
Optional delta As Double = 0,
Optional borderType As BorderTypes = BorderTypes.Reflect101
)
public:
static void SepFilter2D(
InputArray^ src,
OutputArray^ dst,
MatType ddepth,
InputArray^ kernelX,
InputArray^ kernelY,
Nullable<Point> anchor = nullptr,
double delta = 0,
BorderTypes borderType = BorderTypes::Reflect101
)
static member SepFilter2D :
src : InputArray *
dst : OutputArray *
ddepth : MatType *
kernelX : InputArray *
kernelY : InputArray *
?anchor : Nullable<Point> *
?delta : float *
?borderType : BorderTypes
(* Defaults:
let _anchor = defaultArg anchor null
let _delta = defaultArg delta 0
let _borderType = defaultArg borderType BorderTypes.Reflect101
*)
-> unit
OpenCvSharp.Cv2.SepFilter2D = function(src, dst, ddepth, kernelX, kernelY, anchor, delta, borderType);
Parameters
- src
- Type: OpenCvSharpInputArray
The source image - dst
- Type: OpenCvSharpOutputArray
The destination image; will have the same size and the same number of channels as src - ddepth
- Type: OpenCvSharpMatType
The destination image depth - kernelX
- Type: OpenCvSharpInputArray
The coefficients for filtering each row - kernelY
- Type: OpenCvSharpInputArray
The coefficients for filtering each column - anchor (Optional)
- Type: SystemNullablePoint
The anchor position within the kernel; The default value (-1, 1) means that the anchor is at the kernel center - delta (Optional)
- Type: SystemDouble
The value added to the filtered results before storing them - borderType (Optional)
- Type: OpenCvSharpBorderTypes
The pixel extrapolation method
See Also