2011-10-28 20:52:20 +08:00
|
|
|
#include "perf_precomp.hpp"
|
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
using namespace cv;
|
|
|
|
using namespace perf;
|
2011-12-30 00:46:16 +08:00
|
|
|
using std::tr1::make_tuple;
|
|
|
|
using std::tr1::get;
|
2011-10-28 20:52:20 +08:00
|
|
|
|
|
|
|
typedef perf::TestBaseWithParam<std::string> fast;
|
|
|
|
|
|
|
|
#define FAST_IMAGES \
|
|
|
|
"cv/detectors_descriptors_evaluation/images_datasets/leuven/img1.png",\
|
2012-10-03 03:07:46 +08:00
|
|
|
"stitching/a3.png"
|
2011-10-28 20:52:20 +08:00
|
|
|
|
2011-12-30 00:46:16 +08:00
|
|
|
PERF_TEST_P(fast, detectForORB, testing::Values(FAST_IMAGES))
|
2011-10-28 20:52:20 +08:00
|
|
|
{
|
|
|
|
String filename = getDataPath(GetParam());
|
|
|
|
Mat frame = imread(filename, IMREAD_GRAYSCALE);
|
|
|
|
|
|
|
|
if (frame.empty())
|
|
|
|
FAIL() << "Unable to load source image " << filename;
|
|
|
|
|
|
|
|
declare.in(frame);
|
|
|
|
|
2012-07-31 21:17:58 +08:00
|
|
|
FastFeatureDetector fd(20, true, FastFeatureDetector::TYPE_5_8);
|
2011-10-28 20:52:20 +08:00
|
|
|
vector<KeyPoint> points;
|
|
|
|
|
2011-12-30 00:46:16 +08:00
|
|
|
TEST_CYCLE() fd.detect(frame, points);
|
2012-07-31 21:17:58 +08:00
|
|
|
fd = FastFeatureDetector(20, true, FastFeatureDetector::TYPE_7_12);
|
|
|
|
TEST_CYCLE() fd.detect(frame, points);
|
|
|
|
fd = FastFeatureDetector(20, true, FastFeatureDetector::TYPE_9_16);
|
|
|
|
TEST_CYCLE() fd.detect(frame, points);
|
2011-10-28 20:52:20 +08:00
|
|
|
}
|
|
|
|
|