Which simple methods to speed up OpenCV code exists? [closed]
Instead of using compiler keys such as -mfpu NEON, VFPV3, etc -O3 -compile with TBB key and using setUseOptimized(true) function, Which simple methods to speed up OpenCV code exists?
I interested more in optimizations on mobile platforms, so Which simple methods to speed up OpenCV code exists?
far too broad question ;(
Reduce the resolution of the images you are processing to the smallest acceptable size and use built-in OpenCV functions whenever possible as these are nearly all optimized under-the-hood. You can always do tricks to up-res results to original image size with relatively cheap guided filters. For example, do dense stereo or optical-flow at VGA or even QVGA and then use the fast bilateral solver to get back to original X MP resolution (with appropriate scaling). You might also be interested in the new Graph API.