uzh-rpg / fast

FAST corner detector by Edward Rosten
GNU Lesser General Public License v2.1
113 stars 89 forks source link

Is this more efficient than opencv FAST detector? #9

Closed voyage19941119 closed 3 years ago

baliika commented 3 years ago

hello voyage19941119, The official opencv repository contains an AVX2 optimized version of the FAST feature detector. If your platform is x86 AND the image if properly aligned in memory, then it is likely that the OpenCV version is going to be faster. On platforms where this SIMD instruction set is not supported only SSE2, then it could perform faster. If your platform has a CUDA-enabled graphics card, you might want to give our implementation a look: https://github.com/uzh-rpg/vilib .

voyage19941119 commented 3 years ago

@baliika Thanks for the reply!