I have been experimenting with the FAST algorithm (in both CPU only and GPU versions) using the class cv::FastFeatureDetector
(or the cv:cuda:FastFeatureDetector
)
Then I found my colleague is using cv::FAST
The first one is a “Wrapping class for feature detection using the FAST method” while the second one is a function that Detects corners using the FAST algorithm
My questions are two:
- What could be the criteria to use one over the other?
- Is there a CUDA alternative to use instead of
cv::FAST
?