MATLAB File Help: cv.sepFilter2D | Index |
Applies a separable linear filter to an image
dst = cv.sepFilter2D(src, kernelX, kernelY)
dst = cv.sepFilter2D(..., 'OptionName',optionValue, ...)
src
.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
.