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
|
|
|
|
2012-10-09 19:54:13 +08:00
|
|
|
enum { TYPE_5_8 =FastFeatureDetector::TYPE_5_8, TYPE_7_12 = FastFeatureDetector::TYPE_7_12, TYPE_9_16 = FastFeatureDetector::TYPE_9_16 };
|
|
|
|
CV_ENUM(FastType, TYPE_5_8, TYPE_7_12, TYPE_9_16)
|
|
|
|
|
|
|
|
typedef std::tr1::tuple<String, FastType> File_Type_t;
|
|
|
|
typedef perf::TestBaseWithParam<File_Type_t> fast;
|
2011-10-28 20:52:20 +08:00
|
|
|
|
|
|
|
#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
|
|
|
|
2012-10-09 19:54:13 +08:00
|
|
|
PERF_TEST_P(fast, detect, testing::Combine(
|
|
|
|
testing::Values(FAST_IMAGES),
|
|
|
|
testing::ValuesIn(FastType::all())
|
|
|
|
))
|
2011-10-28 20:52:20 +08:00
|
|
|
{
|
2012-10-09 19:54:13 +08:00
|
|
|
String filename = getDataPath(get<0>(GetParam()));
|
|
|
|
int type = get<1>(GetParam());
|
2011-10-28 20:52:20 +08:00
|
|
|
Mat frame = imread(filename, IMREAD_GRAYSCALE);
|
|
|
|
|
|
|
|
if (frame.empty())
|
|
|
|
FAIL() << "Unable to load source image " << filename;
|
|
|
|
|
|
|
|
declare.in(frame);
|
|
|
|
|
2012-10-09 19:54:13 +08:00
|
|
|
FastFeatureDetector fd(20, true, type);
|
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-10-09 19:54:13 +08:00
|
|
|
|
2012-10-09 22:37:40 +08:00
|
|
|
SANITY_CHECK_KEYPOINTS(points);
|
2011-10-28 20:52:20 +08:00
|
|
|
}
|
|
|
|
|