Click or drag to resize

MatSepFilter2D Method

Applies separable linear filter to an image

Namespace:  OpenCvSharp
Assembly:  OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0
Syntax
public Mat SepFilter2D(
	MatType ddepth,
	InputArray kernelX,
	InputArray kernelY,
	Nullable<Point> anchor = null,
	double delta = 0,
	BorderTypes borderType = BorderTypes.Reflect101
)

Parameters

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

Return Value

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