opencv/modules/features2d/perf/perf_orb.cpp

81 lines
2.0 KiB
C++
Raw Normal View History

2011-10-27 22:46:12 +08:00
#include "perf_precomp.hpp"
using namespace std;
using namespace cv;
using namespace perf;
using std::tr1::make_tuple;
using std::tr1::get;
2011-10-27 22:46:12 +08:00
typedef perf::TestBaseWithParam<std::string> orb;
#define ORB_IMAGES \
"cv/detectors_descriptors_evaluation/images_datasets/leuven/img1.png",\
"stitching/a3.png"
2011-10-27 22:46:12 +08:00
PERF_TEST_P(orb, detect, testing::Values(ORB_IMAGES))
2011-10-27 22:46:12 +08:00
{
string filename = getDataPath(GetParam());
2011-10-27 22:46:12 +08:00
Mat frame = imread(filename, IMREAD_GRAYSCALE);
if (frame.empty())
FAIL() << "Unable to load source image " << filename;
Mat mask;
declare.in(frame);
Ptr<ORB> detector = ORB::create(1500, 1.3f, 1);
2011-10-27 22:46:12 +08:00
vector<KeyPoint> points;
TEST_CYCLE() detector->detect(frame, points, mask);
2012-10-09 22:37:40 +08:00
EXPECT_GT(points.size(), 20u);
SANITY_CHECK_NOTHING();
2011-10-27 22:46:12 +08:00
}
PERF_TEST_P(orb, extract, testing::Values(ORB_IMAGES))
2011-10-27 22:46:12 +08:00
{
string filename = getDataPath(GetParam());
2011-10-27 22:46:12 +08:00
Mat frame = imread(filename, IMREAD_GRAYSCALE);
if (frame.empty())
FAIL() << "Unable to load source image " << filename;
Mat mask;
declare.in(frame);
Ptr<ORB> detector = ORB::create(1500, 1.3f, 1);
2011-10-27 22:46:12 +08:00
vector<KeyPoint> points;
detector->detect(frame, points, mask);
EXPECT_GT(points.size(), 20u);
2011-10-27 22:46:12 +08:00
Mat descriptors;
TEST_CYCLE() detector->compute(frame, points, descriptors);
2012-10-09 22:37:40 +08:00
EXPECT_EQ((size_t)descriptors.rows, points.size());
SANITY_CHECK_NOTHING();
2011-10-27 22:46:12 +08:00
}
PERF_TEST_P(orb, full, testing::Values(ORB_IMAGES))
2011-10-27 22:46:12 +08:00
{
string filename = getDataPath(GetParam());
2011-10-27 22:46:12 +08:00
Mat frame = imread(filename, IMREAD_GRAYSCALE);
if (frame.empty())
FAIL() << "Unable to load source image " << filename;
Mat mask;
declare.in(frame);
Ptr<ORB> detector = ORB::create(1500, 1.3f, 1);
2011-10-27 22:46:12 +08:00
vector<KeyPoint> points;
Mat descriptors;
TEST_CYCLE() detector->detectAndCompute(frame, mask, points, descriptors, false);
2012-10-09 22:37:40 +08:00
EXPECT_GT(points.size(), 20u);
EXPECT_EQ((size_t)descriptors.rows, points.size());
SANITY_CHECK_NOTHING();
2011-10-27 22:46:12 +08:00
}