cv::sepFilter2D in one dimension?
Hi,
Can sepFilter2D also just do a filter in X or Y but not in both. It would be useful if it could (think the law texture kernels).
Cheers
Dave
Hi,
Can sepFilter2D also just do a filter in X or Y but not in both. It would be useful if it could (think the law texture kernels).
Cheers
Dave
AFAIK there is no 1D convolution filter (horizontal or vertical) in OpenCV.
However it is easy to implement using three for
loops (two to go through the pixels, one for the sum of the products).
Asked: 2018-08-21 03:51:48 -0600
Seen: 1,007 times
Last updated: Aug 22 '18
Convolution operation over 1D array
Does OpenCV uses GEMM for convolution?
what is the difference between 1D log-Gabor filter and the gabor filter?
how to perform deconvolution of images?
Wrong term in the tutorial "Making your own linear filters!"
sepFilter2d on a ROI reading out of bounds?
Is there any problem in using the same src and dst image in filtering functions?
Is it possible to run filter2D at just one point in an image?
De-Convolution without DFT using OpenCV
Using custom kernel in opencv 2DFilter - causing crash … convolution how?