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)
|
|
|
|
|
2013-02-25 00:14:01 +08:00
|
|
|
typedef std::tr1::tuple<string, FastType> File_Type_t;
|
2012-10-09 19:54:13 +08:00
|
|
|
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),
|
2013-04-15 23:39:49 +08:00
|
|
|
FastType::all()
|
2012-10-09 19:54:13 +08:00
|
|
|
))
|
2011-10-28 20:52:20 +08:00
|
|
|
{
|
2013-02-25 00:14:01 +08:00
|
|
|
string filename = getDataPath(get<0>(GetParam()));
|
2012-10-09 19:54:13 +08:00
|
|
|
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-11-02 21:45:58 +08:00
|
|
|
Ptr<FeatureDetector> fd = Algorithm::create<FeatureDetector>("Feature2D.FAST");
|
2012-12-16 02:09:21 +08:00
|
|
|
ASSERT_FALSE( fd.empty() );
|
2012-10-16 01:09:24 +08:00
|
|
|
fd->set("threshold", 20);
|
|
|
|
fd->set("nonmaxSuppression", true);
|
|
|
|
fd->set("type", type);
|
2011-10-28 20:52:20 +08:00
|
|
|
vector<KeyPoint> points;
|
|
|
|
|
2012-10-16 01:09:24 +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
|
|
|
}
|