util.hpp 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171
  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_UTIL_HPP__
  43. #define __OPENCV_STITCHING_UTIL_HPP__
  44. #include <list>
  45. #include "opencv2/core.hpp"
  46. #ifndef ENABLE_LOG
  47. #define ENABLE_LOG 0
  48. #endif
  49. // TODO remove LOG macros, add logging class
  50. #if ENABLE_LOG
  51. #ifdef ANDROID
  52. #include <iostream>
  53. #include <sstream>
  54. #include <android/log.h>
  55. #define LOG_STITCHING_MSG(msg) \
  56. do { \
  57. Stringstream _os; \
  58. _os << msg; \
  59. __android_log_print(ANDROID_LOG_DEBUG, "STITCHING", "%s", _os.str().c_str()); \
  60. } while(0);
  61. #else
  62. #include <iostream>
  63. #define LOG_STITCHING_MSG(msg) for(;;) { std::cout << msg; std::cout.flush(); break; }
  64. #endif
  65. #else
  66. #define LOG_STITCHING_MSG(msg)
  67. #endif
  68. #define LOG_(_level, _msg) \
  69. for(;;) \
  70. { \
  71. using namespace std; \
  72. if ((_level) >= ::cv::detail::stitchingLogLevel()) \
  73. { \
  74. LOG_STITCHING_MSG(_msg); \
  75. } \
  76. break; \
  77. }
  78. #define LOG(msg) LOG_(1, msg)
  79. #define LOG_CHAT(msg) LOG_(0, msg)
  80. #define LOGLN(msg) LOG(msg << std::endl)
  81. #define LOGLN_CHAT(msg) LOG_CHAT(msg << std::endl)
  82. //#if DEBUG_LOG_CHAT
  83. // #define LOG_CHAT(msg) LOG(msg)
  84. // #define LOGLN_CHAT(msg) LOGLN(msg)
  85. //#else
  86. // #define LOG_CHAT(msg) do{}while(0)
  87. // #define LOGLN_CHAT(msg) do{}while(0)
  88. //#endif
  89. namespace cv {
  90. namespace detail {
  91. //! @addtogroup stitching
  92. //! @{
  93. class CV_EXPORTS DisjointSets
  94. {
  95. public:
  96. DisjointSets(int elem_count = 0) { createOneElemSets(elem_count); }
  97. void createOneElemSets(int elem_count);
  98. int findSetByElem(int elem);
  99. int mergeSets(int set1, int set2);
  100. std::vector<int> parent;
  101. std::vector<int> size;
  102. private:
  103. std::vector<int> rank_;
  104. };
  105. struct CV_EXPORTS GraphEdge
  106. {
  107. GraphEdge(int from, int to, float weight);
  108. bool operator <(const GraphEdge& other) const { return weight < other.weight; }
  109. bool operator >(const GraphEdge& other) const { return weight > other.weight; }
  110. int from, to;
  111. float weight;
  112. };
  113. inline GraphEdge::GraphEdge(int _from, int _to, float _weight) : from(_from), to(_to), weight(_weight) {}
  114. class CV_EXPORTS Graph
  115. {
  116. public:
  117. Graph(int num_vertices = 0) { create(num_vertices); }
  118. void create(int num_vertices) { edges_.assign(num_vertices, std::list<GraphEdge>()); }
  119. int numVertices() const { return static_cast<int>(edges_.size()); }
  120. void addEdge(int from, int to, float weight);
  121. template <typename B> B forEach(B body) const;
  122. template <typename B> B walkBreadthFirst(int from, B body) const;
  123. private:
  124. std::vector< std::list<GraphEdge> > edges_;
  125. };
  126. //////////////////////////////////////////////////////////////////////////////
  127. // Auxiliary functions
  128. CV_EXPORTS bool overlapRoi(Point tl1, Point tl2, Size sz1, Size sz2, Rect &roi);
  129. CV_EXPORTS Rect resultRoi(const std::vector<Point> &corners, const std::vector<UMat> &images);
  130. CV_EXPORTS Rect resultRoi(const std::vector<Point> &corners, const std::vector<Size> &sizes);
  131. CV_EXPORTS Rect resultRoiIntersection(const std::vector<Point> &corners, const std::vector<Size> &sizes);
  132. CV_EXPORTS Point resultTl(const std::vector<Point> &corners);
  133. // Returns random 'count' element subset of the {0,1,...,size-1} set
  134. CV_EXPORTS void selectRandomSubset(int count, int size, std::vector<int> &subset);
  135. CV_EXPORTS int& stitchingLogLevel();
  136. //! @}
  137. } // namespace detail
  138. } // namespace cv
  139. #include "util_inl.hpp"
  140. #endif // __OPENCV_STITCHING_UTIL_HPP__