Table of Contents

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

src InputArray

The source image

dst OutputArray

The destination image; will have the same size and the same number of channels as src

ddepth MatType

The destination image depth

kernelX InputArray

The coefficients for filtering each row

kernelY InputArray

The coefficients for filtering each column

anchor Point?

The anchor position within the kernel; The default value (-1, 1) means that the anchor is at the kernel center

delta double

The value added to the filtered results before storing them

borderType BorderTypes

The pixel extrapolation method