Skip to content

Instantly share code, notes, and snippets.

View JefferyRPrice's full-sized avatar

Jeff Price JefferyRPrice

View GitHub Profile
@JefferyRPrice
JefferyRPrice / main.cpp
Last active August 31, 2015 21:22
AGAST detector is ~30x slower than FAST detector
// Output (DETECTOR, num detected points, total milliseconds)
// AGAST, 3715, 31672
// FAST, 3735, 1025
int main(int argc, char *argv[])
{
cv::Ptr<cv::AgastFeatureDetector> agast =
cv::AgastFeatureDetector::create(10, true, cv::AgastFeatureDetector::OAST_9_16);
cv::Ptr<cv::FastFeatureDetector> fast =