matchers.hpp 9.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275
  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. // License Agreement
  11. // For Open Source Computer Vision Library
  12. //
  13. // Copyright (C) 2000-2008, Intel Corporation, all rights reserved.
  14. // Copyright (C) 2009, Willow Garage Inc., all rights reserved.
  15. // Third party copyrights are property of their respective owners.
  16. //
  17. // Redistribution and use in source and binary forms, with or without modification,
  18. // are permitted provided that the following conditions are met:
  19. //
  20. // * Redistribution's of source code must retain the above copyright notice,
  21. // this list of conditions and the following disclaimer.
  22. //
  23. // * Redistribution's in binary form must reproduce the above copyright notice,
  24. // this list of conditions and the following disclaimer in the documentation
  25. // and/or other materials provided with the distribution.
  26. //
  27. // * The name of the copyright holders may not be used to endorse or promote products
  28. // derived from this software without specific prior written permission.
  29. //
  30. // This software is provided by the copyright holders and contributors "as is" and
  31. // any express or implied warranties, including, but not limited to, the implied
  32. // warranties of merchantability and fitness for a particular purpose are disclaimed.
  33. // In no event shall the Intel Corporation or contributors be liable for any direct,
  34. // indirect, incidental, special, exemplary, or consequential damages
  35. // (including, but not limited to, procurement of substitute goods or services;
  36. // loss of use, data, or profits; or business interruption) however caused
  37. // and on any theory of liability, whether in contract, strict liability,
  38. // or tort (including negligence or otherwise) arising in any way out of
  39. // the use of this software, even if advised of the possibility of such damage.
  40. //
  41. //M*/
  42. #ifndef __OPENCV_STITCHING_MATCHERS_HPP__
  43. #define __OPENCV_STITCHING_MATCHERS_HPP__
  44. #include "opencv2/core.hpp"
  45. #include "opencv2/features2d.hpp"
  46. #include "opencv2/opencv_modules.hpp"
  47. #ifdef HAVE_OPENCV_XFEATURES2D
  48. # include "opencv2/xfeatures2d/cuda.hpp"
  49. #endif
  50. namespace cv {
  51. namespace detail {
  52. //! @addtogroup stitching_match
  53. //! @{
  54. /** @brief Structure containing image keypoints and descriptors. */
  55. struct CV_EXPORTS ImageFeatures
  56. {
  57. int img_idx;
  58. Size img_size;
  59. std::vector<KeyPoint> keypoints;
  60. UMat descriptors;
  61. };
  62. /** @brief Feature finders base class */
  63. class CV_EXPORTS FeaturesFinder
  64. {
  65. public:
  66. virtual ~FeaturesFinder() {}
  67. /** @overload */
  68. void operator ()(InputArray image, ImageFeatures &features);
  69. /** @brief Finds features in the given image.
  70. @param image Source image
  71. @param features Found features
  72. @param rois Regions of interest
  73. @sa detail::ImageFeatures, Rect_
  74. */
  75. void operator ()(InputArray image, ImageFeatures &features, const std::vector<cv::Rect> &rois);
  76. /** @brief Frees unused memory allocated before if there is any. */
  77. virtual void collectGarbage() {}
  78. protected:
  79. /** @brief This method must implement features finding logic in order to make the wrappers
  80. detail::FeaturesFinder::operator()_ work.
  81. @param image Source image
  82. @param features Found features
  83. @sa detail::ImageFeatures */
  84. virtual void find(InputArray image, ImageFeatures &features) = 0;
  85. };
  86. /** @brief SURF features finder.
  87. @sa detail::FeaturesFinder, SURF
  88. */
  89. class CV_EXPORTS SurfFeaturesFinder : public FeaturesFinder
  90. {
  91. public:
  92. SurfFeaturesFinder(double hess_thresh = 300., int num_octaves = 3, int num_layers = 4,
  93. int num_octaves_descr = /*4*/3, int num_layers_descr = /*2*/4);
  94. private:
  95. void find(InputArray image, ImageFeatures &features);
  96. Ptr<FeatureDetector> detector_;
  97. Ptr<DescriptorExtractor> extractor_;
  98. Ptr<Feature2D> surf;
  99. };
  100. /** @brief ORB features finder. :
  101. @sa detail::FeaturesFinder, ORB
  102. */
  103. class CV_EXPORTS OrbFeaturesFinder : public FeaturesFinder
  104. {
  105. public:
  106. OrbFeaturesFinder(Size _grid_size = Size(3,1), int nfeatures=1500, float scaleFactor=1.3f, int nlevels=5);
  107. private:
  108. void find(InputArray image, ImageFeatures &features);
  109. Ptr<ORB> orb;
  110. Size grid_size;
  111. };
  112. #ifdef HAVE_OPENCV_XFEATURES2D
  113. class CV_EXPORTS SurfFeaturesFinderGpu : public FeaturesFinder
  114. {
  115. public:
  116. SurfFeaturesFinderGpu(double hess_thresh = 300., int num_octaves = 3, int num_layers = 4,
  117. int num_octaves_descr = 4, int num_layers_descr = 2);
  118. void collectGarbage();
  119. private:
  120. void find(InputArray image, ImageFeatures &features);
  121. cuda::GpuMat image_;
  122. cuda::GpuMat gray_image_;
  123. cuda::SURF_CUDA surf_;
  124. cuda::GpuMat keypoints_;
  125. cuda::GpuMat descriptors_;
  126. int num_octaves_, num_layers_;
  127. int num_octaves_descr_, num_layers_descr_;
  128. };
  129. #endif
  130. /** @brief Structure containing information about matches between two images.
  131. It's assumed that there is a homography between those images.
  132. */
  133. struct CV_EXPORTS MatchesInfo
  134. {
  135. MatchesInfo();
  136. MatchesInfo(const MatchesInfo &other);
  137. const MatchesInfo& operator =(const MatchesInfo &other);
  138. int src_img_idx, dst_img_idx; //!< Images indices (optional)
  139. std::vector<DMatch> matches;
  140. std::vector<uchar> inliers_mask; //!< Geometrically consistent matches mask
  141. int num_inliers; //!< Number of geometrically consistent matches
  142. Mat H; //!< Estimated homography
  143. double confidence; //!< Confidence two images are from the same panorama
  144. };
  145. /** @brief Feature matchers base class. */
  146. class CV_EXPORTS FeaturesMatcher
  147. {
  148. public:
  149. virtual ~FeaturesMatcher() {}
  150. /** @overload
  151. @param features1 First image features
  152. @param features2 Second image features
  153. @param matches_info Found matches
  154. */
  155. void operator ()(const ImageFeatures &features1, const ImageFeatures &features2,
  156. MatchesInfo& matches_info) { match(features1, features2, matches_info); }
  157. /** @brief Performs images matching.
  158. @param features Features of the source images
  159. @param pairwise_matches Found pairwise matches
  160. @param mask Mask indicating which image pairs must be matched
  161. The function is parallelized with the TBB library.
  162. @sa detail::MatchesInfo
  163. */
  164. void operator ()(const std::vector<ImageFeatures> &features, std::vector<MatchesInfo> &pairwise_matches,
  165. const cv::UMat &mask = cv::UMat());
  166. /** @return True, if it's possible to use the same matcher instance in parallel, false otherwise
  167. */
  168. bool isThreadSafe() const { return is_thread_safe_; }
  169. /** @brief Frees unused memory allocated before if there is any.
  170. */
  171. virtual void collectGarbage() {}
  172. protected:
  173. FeaturesMatcher(bool is_thread_safe = false) : is_thread_safe_(is_thread_safe) {}
  174. /** @brief This method must implement matching logic in order to make the wrappers
  175. detail::FeaturesMatcher::operator()_ work.
  176. @param features1 first image features
  177. @param features2 second image features
  178. @param matches_info found matches
  179. */
  180. virtual void match(const ImageFeatures &features1, const ImageFeatures &features2,
  181. MatchesInfo& matches_info) = 0;
  182. bool is_thread_safe_;
  183. };
  184. /** @brief Features matcher which finds two best matches for each feature and leaves the best one only if the
  185. ratio between descriptor distances is greater than the threshold match_conf
  186. @sa detail::FeaturesMatcher
  187. */
  188. class CV_EXPORTS BestOf2NearestMatcher : public FeaturesMatcher
  189. {
  190. public:
  191. /** @brief Constructs a "best of 2 nearest" matcher.
  192. @param try_use_gpu Should try to use GPU or not
  193. @param match_conf Match distances ration threshold
  194. @param num_matches_thresh1 Minimum number of matches required for the 2D projective transform
  195. estimation used in the inliers classification step
  196. @param num_matches_thresh2 Minimum number of matches required for the 2D projective transform
  197. re-estimation on inliers
  198. */
  199. BestOf2NearestMatcher(bool try_use_gpu = false, float match_conf = 0.3f, int num_matches_thresh1 = 6,
  200. int num_matches_thresh2 = 6);
  201. void collectGarbage();
  202. protected:
  203. void match(const ImageFeatures &features1, const ImageFeatures &features2, MatchesInfo &matches_info);
  204. int num_matches_thresh1_;
  205. int num_matches_thresh2_;
  206. Ptr<FeaturesMatcher> impl_;
  207. };
  208. class CV_EXPORTS BestOf2NearestRangeMatcher : public BestOf2NearestMatcher
  209. {
  210. public:
  211. BestOf2NearestRangeMatcher(int range_width = 5, bool try_use_gpu = false, float match_conf = 0.3f,
  212. int num_matches_thresh1 = 6, int num_matches_thresh2 = 6);
  213. void operator ()(const std::vector<ImageFeatures> &features, std::vector<MatchesInfo> &pairwise_matches,
  214. const cv::UMat &mask = cv::UMat());
  215. protected:
  216. int range_width_;
  217. };
  218. //! @} stitching_match
  219. } // namespace detail
  220. } // namespace cv
  221. #endif // __OPENCV_STITCHING_MATCHERS_HPP__