Start » Filter Reference » OpenCV » Image Filtering » cvSepFilter2D
Module: | OpenCV |
---|
Applies separable linear filter to an image.
Name | Type | Description | |
---|---|---|---|
![]() |
inSrc | Image | Source image. |
![]() |
inDDepth | Integer* | Destination image depth. |
![]() |
inRowKernel | Matrix | Coefficients for filtering each row. |
![]() |
inColumnKernel | Matrix | Coefficients for filtering each column. |
![]() |
inAnchor | Location* | Anchor position within the kernel. The NIL value means that the anchor is at the kernel center. |
![]() |
inDelta | Real | Value added to the filtered results before storing them. |
![]() |
inBorderType | CvBorderType | Pixel extrapolation method. |
![]() |
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.