test_keypoints.cpp 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187
  1. /*M///////////////////////////////////////////////////////////////////////////////////////
  2. //
  3. // IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING.
  4. //
  5. // By downloading, copying, installing or using the software you agree to this license.
  6. // If you do not agree to this license, do not download, install,
  7. // copy or use the software.
  8. //
  9. //
  10. // Intel License Agreement
  11. // For Open Source Computer Vision Library
  12. //
  13. // Copyright (C) 2000, Intel Corporation, all rights reserved.
  14. // Third party copyrights are property of their respective owners.
  15. //
  16. // Redistribution and use in source and binary forms, with or without modification,
  17. // are permitted provided that the following conditions are met:
  18. //
  19. // * Redistribution's of source code must retain the above copyright notice,
  20. // this list of conditions and the following disclaimer.
  21. //
  22. // * Redistribution's in binary form must reproduce the above copyright notice,
  23. // this list of conditions and the following disclaimer in the documentation
  24. // and/or other materials provided with the distribution.
  25. //
  26. // * The name of Intel Corporation may not be used to endorse or promote products
  27. // derived from this software without specific prior written permission.
  28. //
  29. // This software is provided by the copyright holders and contributors "as is" and
  30. // any express or implied warranties, including, but not limited to, the implied
  31. // warranties of merchantability and fitness for a particular purpose are disclaimed.
  32. // In no event shall the Intel Corporation or contributors be liable for any direct,
  33. // indirect, incidental, special, exemplary, or consequential damages
  34. // (including, but not limited to, procurement of substitute goods or services;
  35. // loss of use, data, or profits; or business interruption) however caused
  36. // and on any theory of liability, whether in contract, strict liability,
  37. // or tort (including negligence or otherwise) arising in any way out of
  38. // the use of this software, even if advised of the possibility of such damage.
  39. //
  40. //M*/
  41. #include "test_precomp.hpp"
  42. #include "opencv2/core/core_c.h"
  43. namespace opencv_test { namespace {
  44. const string FEATURES2D_DIR = "features2d";
  45. const string IMAGE_FILENAME = "tsukuba.png";
  46. /****************************************************************************************\
  47. * Test for KeyPoint *
  48. \****************************************************************************************/
  49. class CV_FeatureDetectorKeypointsTest : public cvtest::BaseTest
  50. {
  51. public:
  52. CV_FeatureDetectorKeypointsTest(const Ptr<FeatureDetector>& _detector) :
  53. detector(_detector) {}
  54. protected:
  55. virtual void run(int)
  56. {
  57. CV_Assert(detector);
  58. string imgFilename = string(ts->get_data_path()) + FEATURES2D_DIR + "/" + IMAGE_FILENAME;
  59. // Read the test image.
  60. Mat image = imread(imgFilename);
  61. if(image.empty())
  62. {
  63. ts->printf(cvtest::TS::LOG, "Image %s can not be read.\n", imgFilename.c_str());
  64. ts->set_failed_test_info(cvtest::TS::FAIL_INVALID_TEST_DATA);
  65. return;
  66. }
  67. vector<KeyPoint> keypoints;
  68. detector->detect(image, keypoints);
  69. if(keypoints.empty())
  70. {
  71. ts->printf(cvtest::TS::LOG, "Detector can't find keypoints in image.\n");
  72. ts->set_failed_test_info(cvtest::TS::FAIL_INVALID_OUTPUT);
  73. return;
  74. }
  75. Rect r(0, 0, image.cols, image.rows);
  76. for(size_t i = 0; i < keypoints.size(); i++)
  77. {
  78. const KeyPoint& kp = keypoints[i];
  79. if(!r.contains(kp.pt))
  80. {
  81. ts->printf(cvtest::TS::LOG, "KeyPoint::pt is out of image (x=%f, y=%f).\n", kp.pt.x, kp.pt.y);
  82. ts->set_failed_test_info(cvtest::TS::FAIL_INVALID_OUTPUT);
  83. return;
  84. }
  85. if(kp.size <= 0.f)
  86. {
  87. ts->printf(cvtest::TS::LOG, "KeyPoint::size is not positive (%f).\n", kp.size);
  88. ts->set_failed_test_info(cvtest::TS::FAIL_INVALID_OUTPUT);
  89. return;
  90. }
  91. if((kp.angle < 0.f && kp.angle != -1.f) || kp.angle >= 360.f)
  92. {
  93. ts->printf(cvtest::TS::LOG, "KeyPoint::angle is out of range [0, 360). It's %f.\n", kp.angle);
  94. ts->set_failed_test_info(cvtest::TS::FAIL_INVALID_OUTPUT);
  95. return;
  96. }
  97. }
  98. ts->set_failed_test_info(cvtest::TS::OK);
  99. }
  100. Ptr<FeatureDetector> detector;
  101. };
  102. // Registration of tests
  103. TEST(Features2d_Detector_Keypoints_BRISK, validation)
  104. {
  105. CV_FeatureDetectorKeypointsTest test(BRISK::create());
  106. test.safe_run();
  107. }
  108. TEST(Features2d_Detector_Keypoints_FAST, validation)
  109. {
  110. CV_FeatureDetectorKeypointsTest test(FastFeatureDetector::create());
  111. test.safe_run();
  112. }
  113. TEST(Features2d_Detector_Keypoints_AGAST, validation)
  114. {
  115. CV_FeatureDetectorKeypointsTest test(AgastFeatureDetector::create());
  116. test.safe_run();
  117. }
  118. TEST(Features2d_Detector_Keypoints_HARRIS, validation)
  119. {
  120. CV_FeatureDetectorKeypointsTest test(GFTTDetector::create(1000, 0.01, 1, 3, 3, true, 0.04));
  121. test.safe_run();
  122. }
  123. TEST(Features2d_Detector_Keypoints_GFTT, validation)
  124. {
  125. Ptr<GFTTDetector> gftt = GFTTDetector::create();
  126. gftt->setHarrisDetector(true);
  127. CV_FeatureDetectorKeypointsTest test(gftt);
  128. test.safe_run();
  129. }
  130. TEST(Features2d_Detector_Keypoints_MSER, validation)
  131. {
  132. CV_FeatureDetectorKeypointsTest test(MSER::create());
  133. test.safe_run();
  134. }
  135. TEST(Features2d_Detector_Keypoints_ORB, validation)
  136. {
  137. CV_FeatureDetectorKeypointsTest test(ORB::create());
  138. test.safe_run();
  139. }
  140. TEST(Features2d_Detector_Keypoints_KAZE, validation)
  141. {
  142. CV_FeatureDetectorKeypointsTest test(KAZE::create());
  143. test.safe_run();
  144. }
  145. TEST(Features2d_Detector_Keypoints_AKAZE, validation)
  146. {
  147. CV_FeatureDetectorKeypointsTest test_kaze(AKAZE::create(AKAZE::DESCRIPTOR_KAZE));
  148. test_kaze.safe_run();
  149. CV_FeatureDetectorKeypointsTest test_mldb(AKAZE::create(AKAZE::DESCRIPTOR_MLDB));
  150. test_mldb.safe_run();
  151. }
  152. TEST(Features2d_Detector_Keypoints_SIFT, validation)
  153. {
  154. CV_FeatureDetectorKeypointsTest test(SIFT::create());
  155. test.safe_run();
  156. }
  157. }} // namespace