Back to FabImage Studio website

You are here: Start » Filter Reference » OpenCV » Image Filtering » cvSepFilter2D

cvSepFilter2D


Module: OpenCV

Applies separable linear filter to an image.

Name Type Description
Input value inSrc Image Source image.
Input value inDDepth Integer* Destination image depth.
Input value inRowKernel Matrix Coefficients for filtering each row.
Input value inColumnKernel Matrix Coefficients for filtering each column.
Input value inAnchor Location* Anchor position within the kernel. The NIL value means that the anchor is at the kernel center.
Input value inDelta Real Value added to the filtered results before storing them.
Input value inBorderType CvBorderType Pixel extrapolation method.
Output value outDst Image Output image.

Errors

This filter can throw an exception to report error. Read how to deal with errors in Error Handling.

List of possible exceptions:

Error type Description
DomainError At least one of inRowKernel and inColumnKernel must not be empty in cvSepFilter2D.
DomainError Input image must have pixel type different from Int8 and Int32 in cvSepFilter2D.

Complexity Level

This filter is available on Basic Complexity Level.