Tagged Questions
2
votes
2answers
1k views
How can I boost up OpenCV performance on iPhone?
I'm using AVFoundation to capture video along with OpenCV to do image processing on iPhone. However, I'm considering using OpenGL shaders to do calculations (convolving) on 192x144 grayscale image.
...
1
vote
5answers
1k views
Optimizing 1D Convolution
Is there a way to speed up this 1D convolution ? I tried to make the dy cache efficient
but compiling with g++ and -O3 gave worse performances.
I am convolving with [-1. , 0., 1] in both directions.
...