Method SepFilter2D
- Namespace
- OpenCvSharp
- Assembly
- OpenCvSharp.dll
SepFilter2D(InputArray, OutputArray, MatType, InputArray, InputArray, Point?, double, BorderTypes)
Applies separable linear filter to an image
public static void SepFilter2D(InputArray src, OutputArray dst, MatType ddepth, InputArray kernelX, InputArray kernelY, Point? anchor = null, double delta = 0, BorderTypes borderType = BorderTypes.Default)
Parameters
srcInputArrayThe source image
dstOutputArrayThe destination image; will have the same size and the same number of channels as src
ddepthMatTypeThe destination image depth
kernelXInputArrayThe coefficients for filtering each row
kernelYInputArrayThe coefficients for filtering each column
anchorPoint?The anchor position within the kernel; The default value (-1, 1) means that the anchor is at the kernel center
deltadoubleThe value added to the filtered results before storing them
borderTypeBorderTypesThe pixel extrapolation method