MatSepFilter2D Method OpenCvSharp Class Library
Applies separable linear filter to an image

Namespace:  OpenCvSharp.CPlusPlus
Assembly:  OpenCvSharp.CPlusPlus (in OpenCvSharp.CPlusPlus.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax

public Mat SepFilter2D(
	MatType ddepth,
	InputArray kernelX,
	InputArray kernelY,
	Nullable<Point> anchor = null,
	double delta = 0,
	BorderType borderType = BorderType.Reflect101
)

Parameters

ddepth
Type: OpenCvSharp.CPlusPlusMatType
The destination image depth
kernelX
Type: OpenCvSharp.CPlusPlusInputArray
The coefficients for filtering each row
kernelY
Type: OpenCvSharp.CPlusPlusInputArray
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: OpenCvSharpBorderType
The pixel extrapolation method

Return Value

Type: Mat
The destination image; will have the same size and the same number of channels as src
See Also

Reference