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",\
|
|
|
|
"stitching/a3.jpg"
|
|
|
|
|
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);
|
|
|
|
|
|
|
|
FastFeatureDetector fd(20, true);
|
|
|
|
vector<KeyPoint> points;
|
|
|
|
|
2011-12-30 00:46:16 +08:00
|
|
|
TEST_CYCLE() fd.detect(frame, points);
|
2011-10-28 20:52:20 +08:00
|
|
|
}
|
|
|
|
|