mirror of
https://github.com/opencv/opencv.git
synced 2024-12-12 23:49:36 +08:00
8cbdd0c833
C-API cleanup: apps, imgproc_c and some constants #25075 Merge with https://github.com/opencv/opencv_contrib/pull/3642 * Removed obsolete apps - traincascade and createsamples (please use older OpenCV versions if you need them). These apps relied heavily on C-API * removed all mentions of imgproc C-API headers (imgproc_c.h, types_c.h) - they were empty, included core C-API headers * replaced usage of several C constants with C++ ones (error codes, norm modes, RNG modes, PCA modes, ...) - most part of this PR (split into two parts - all modules and calib+3d - for easier backporting) * removed imgproc C-API headers (as separate commit, so that other changes could be backported to 4.x) Most of these changes can be backported to 4.x.
85 lines
2.2 KiB
C++
85 lines
2.2 KiB
C++
// This file is part of OpenCV project.
|
|
// It is subject to the license terms in the LICENSE file found in the top-level directory
|
|
// of this distribution and at http://opencv.org/license.html.
|
|
#include "perf_precomp.hpp"
|
|
|
|
namespace opencv_test {
|
|
|
|
PERF_TEST(PerfHoughCircles, Basic)
|
|
{
|
|
string filename = getDataPath("cv/imgproc/stuff.jpg");
|
|
const double dp = 1.0;
|
|
double minDist = 20;
|
|
double edgeThreshold = 20;
|
|
double accumThreshold = 30;
|
|
int minRadius = 20;
|
|
int maxRadius = 200;
|
|
|
|
Mat img = imread(filename, IMREAD_GRAYSCALE);
|
|
ASSERT_FALSE(img.empty()) << "Unable to load source image " << filename;
|
|
|
|
GaussianBlur(img, img, Size(9, 9), 2, 2);
|
|
|
|
vector<Vec3f> circles;
|
|
declare.in(img);
|
|
|
|
TEST_CYCLE()
|
|
{
|
|
HoughCircles(img, circles, cv::HOUGH_GRADIENT, dp, minDist, edgeThreshold, accumThreshold, minRadius, maxRadius);
|
|
}
|
|
|
|
SANITY_CHECK_NOTHING();
|
|
}
|
|
|
|
PERF_TEST(PerfHoughCircles2, ManySmallCircles)
|
|
{
|
|
string filename = getDataPath("cv/imgproc/beads.jpg");
|
|
const double dp = 1.0;
|
|
double minDist = 10;
|
|
double edgeThreshold = 90;
|
|
double accumThreshold = 11;
|
|
int minRadius = 7;
|
|
int maxRadius = 18;
|
|
|
|
Mat img = imread(filename, IMREAD_GRAYSCALE);
|
|
ASSERT_FALSE(img.empty()) << "Unable to load source image " << filename;
|
|
|
|
vector<Vec3f> circles;
|
|
declare.in(img);
|
|
|
|
TEST_CYCLE()
|
|
{
|
|
HoughCircles(img, circles, cv::HOUGH_GRADIENT, dp, minDist, edgeThreshold, accumThreshold, minRadius, maxRadius);
|
|
}
|
|
|
|
SANITY_CHECK_NOTHING();
|
|
}
|
|
|
|
PERF_TEST(PerfHoughCircles4f, Basic)
|
|
{
|
|
string filename = getDataPath("cv/imgproc/stuff.jpg");
|
|
const double dp = 1.0;
|
|
double minDist = 20;
|
|
double edgeThreshold = 20;
|
|
double accumThreshold = 30;
|
|
int minRadius = 20;
|
|
int maxRadius = 200;
|
|
|
|
Mat img = imread(filename, IMREAD_GRAYSCALE);
|
|
ASSERT_FALSE(img.empty()) << "Unable to load source image " << filename;
|
|
|
|
GaussianBlur(img, img, Size(9, 9), 2, 2);
|
|
|
|
vector<Vec4f> circles;
|
|
declare.in(img);
|
|
|
|
TEST_CYCLE()
|
|
{
|
|
HoughCircles(img, circles, cv::HOUGH_GRADIENT, dp, minDist, edgeThreshold, accumThreshold, minRadius, maxRadius);
|
|
}
|
|
|
|
SANITY_CHECK_NOTHING();
|
|
}
|
|
|
|
} // namespace
|