mirror of
https://github.com/opencv/opencv.git
synced 2024-11-29 13:47:32 +08:00
39e742765a
Added gradiantSize param into goodFeaturesToTrack API (#9618) * Added gradiantSize param into goodFeaturesToTrack API Removed hardcode value 3 in goodFeaturesToTrack API, and added new param 'gradinatSize' in this API so that user can pass any gradiant size as 3, 5 or 7. Signed-off-by: Vipin Anand <anand.vipin@gmail.com> Signed-off-by: Nilaykumar Patel<nilay.nilpat@gmail.com> Signed-off-by: Prashanth Voora <prashanthx85@gmail.com> * fixed compilation error for java test Signed-off-by: Vipin Anand <anand.vipin@gmail.com> * Modifying code for previous binary compatibility and fixing other warnings fixed ABI break issue resolved merged conflict compilation error fix Signed-off-by: Vipin Anand <anand.vipin@gmail.com> Signed-off-by: Patel, Nilaykumar K <nilay.nilpat@gmail.com>
44 lines
1.6 KiB
C++
44 lines
1.6 KiB
C++
#include "perf_precomp.hpp"
|
|
|
|
using namespace std;
|
|
using namespace cv;
|
|
using namespace perf;
|
|
using std::tr1::make_tuple;
|
|
using std::tr1::get;
|
|
|
|
typedef std::tr1::tuple<string, int, double, int, int, bool> Image_MaxCorners_QualityLevel_MinDistance_BlockSize_gradientSize_UseHarris_t;
|
|
typedef perf::TestBaseWithParam<Image_MaxCorners_QualityLevel_MinDistance_BlockSize_gradientSize_UseHarris_t> Image_MaxCorners_QualityLevel_MinDistance_BlockSize_gradientSize_UseHarris;
|
|
|
|
PERF_TEST_P(Image_MaxCorners_QualityLevel_MinDistance_BlockSize_gradientSize_UseHarris, goodFeaturesToTrack,
|
|
testing::Combine(
|
|
testing::Values( "stitching/a1.png", "cv/shared/pic5.png"),
|
|
testing::Values( 100, 500 ),
|
|
testing::Values( 0.1, 0.01 ),
|
|
testing::Values( 3, 5 ),
|
|
testing::Values( 3, 5 ),
|
|
testing::Bool()
|
|
)
|
|
)
|
|
{
|
|
string filename = getDataPath(get<0>(GetParam()));
|
|
int maxCorners = get<1>(GetParam());
|
|
double qualityLevel = get<2>(GetParam());
|
|
int blockSize = get<3>(GetParam());
|
|
int gradientSize = get<4>(GetParam());
|
|
bool useHarrisDetector = get<5>(GetParam());
|
|
|
|
Mat image = imread(filename, IMREAD_GRAYSCALE);
|
|
if (image.empty())
|
|
FAIL() << "Unable to load source image" << filename;
|
|
|
|
std::vector<Point2f> corners;
|
|
|
|
double minDistance = 1;
|
|
TEST_CYCLE() goodFeaturesToTrack(image, corners, maxCorners, qualityLevel, minDistance, noArray(), blockSize, gradientSize, useHarrisDetector);
|
|
|
|
if (corners.size() > 50)
|
|
corners.erase(corners.begin() + 50, corners.end());
|
|
|
|
SANITY_CHECK(corners);
|
|
}
|