Click or drag to resize

CvInvokeSepFilter2D Method

http://www.emgu.com
The function applies a separable linear filter to the image. That is, first, every row of src is filtered with the 1D kernel kernelX. Then, every column of the result is filtered with the 1D kernel kernelY. The final result shifted by delta is stored in dst .

Namespace:  Emgu.CV
Assembly:  Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.1.3497 (4.1.1.3497)
Syntax
public static void SepFilter2D(
	IInputArray src,
	IOutputArray dst,
	DepthType ddepth,
	IInputArray kernelX,
	IInputArray kernelY,
	Point anchor,
	double delta = 0,
	BorderType borderType = BorderType.Reflect101
)

Parameters

src
Type: Emgu.CVIInputArray
Source image.
dst
Type: Emgu.CVIOutputArray
Destination image of the same size and the same number of channels as src.
ddepth
Type: Emgu.CV.CvEnumDepthType
Destination image depth
kernelX
Type: Emgu.CVIInputArray
Coefficients for filtering each row.
kernelY
Type: Emgu.CVIInputArray
Coefficients for filtering each column.
anchor
Type: System.DrawingPoint
Anchor position within the kernel. The value (-1,-1) means that the anchor is at the kernel center.
delta (Optional)
Type: SystemDouble
Value added to the filtered results before storing them.
borderType (Optional)
Type: Emgu.CV.CvEnumBorderType
Pixel extrapolation method
See Also