mirror of
https://github.com/opencv/opencv.git
synced 2024-11-26 20:20:20 +08:00
31 lines
704 B
C++
31 lines
704 B
C++
#include "perf_precomp.hpp"
|
|
|
|
using namespace std;
|
|
using namespace cv;
|
|
using namespace perf;
|
|
using std::tr1::make_tuple;
|
|
using std::tr1::get;
|
|
|
|
typedef perf::TestBaseWithParam<std::string> fast;
|
|
|
|
#define FAST_IMAGES \
|
|
"cv/detectors_descriptors_evaluation/images_datasets/leuven/img1.png",\
|
|
"stitching/a3.jpg"
|
|
|
|
PERF_TEST_P(fast, detectForORB, testing::Values(FAST_IMAGES))
|
|
{
|
|
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;
|
|
|
|
TEST_CYCLE() fd.detect(frame, points);
|
|
}
|
|
|