Click or drag to resize

Cv2SepFilter2D Method

Applies separable linear filter to an image

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

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