Added unit-tests for KAZE and AKAZE features
This commit is contained in:
parent
137ff7eccb
commit
17f305140b
@ -166,3 +166,15 @@ TEST(Features2d_Detector_Keypoints_Dense, validation)
|
|||||||
CV_FeatureDetectorKeypointsTest test(Algorithm::create<FeatureDetector>("Feature2D.Dense"));
|
CV_FeatureDetectorKeypointsTest test(Algorithm::create<FeatureDetector>("Feature2D.Dense"));
|
||||||
test.safe_run();
|
test.safe_run();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
TEST(Features2d_Detector_Keypoints_KAZE, validation)
|
||||||
|
{
|
||||||
|
CV_FeatureDetectorKeypointsTest test(Algorithm::create<FeatureDetector>("Feature2D.KAZE"));
|
||||||
|
test.safe_run();
|
||||||
|
}
|
||||||
|
|
||||||
|
TEST(Features2d_Detector_Keypoints_AKAZE, validation)
|
||||||
|
{
|
||||||
|
CV_FeatureDetectorKeypointsTest test(Algorithm::create<FeatureDetector>("Feature2D.AKAZE"));
|
||||||
|
test.safe_run();
|
||||||
|
}
|
@ -652,6 +652,21 @@ TEST(Features2d_ScaleInvariance_Detector_BRISK, regression)
|
|||||||
test.safe_run();
|
test.safe_run();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
TEST(Features2d_ScaleInvariance_Detector_KAZE, regression)
|
||||||
|
{
|
||||||
|
DetectorScaleInvarianceTest test(Algorithm::create<FeatureDetector>("Feature2D.KAZE"),
|
||||||
|
0.08f,
|
||||||
|
0.49f);
|
||||||
|
test.safe_run();
|
||||||
|
}
|
||||||
|
|
||||||
|
TEST(Features2d_ScaleInvariance_Detector_AKAZE, regression)
|
||||||
|
{
|
||||||
|
DetectorScaleInvarianceTest test(Algorithm::create<FeatureDetector>("Feature2D.AKAZE"),
|
||||||
|
0.08f,
|
||||||
|
0.49f);
|
||||||
|
test.safe_run();
|
||||||
|
}
|
||||||
//TEST(Features2d_ScaleInvariance_Detector_ORB, regression)
|
//TEST(Features2d_ScaleInvariance_Detector_ORB, regression)
|
||||||
//{
|
//{
|
||||||
// DetectorScaleInvarianceTest test(Algorithm::create<FeatureDetector>("Feature2D.ORB"),
|
// DetectorScaleInvarianceTest test(Algorithm::create<FeatureDetector>("Feature2D.ORB"),
|
||||||
|
Loading…
x
Reference in New Issue
Block a user