blenders.hpp 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163
  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_BLENDERS_HPP__
  43. #define __OPENCV_STITCHING_BLENDERS_HPP__
  44. #include "opencv2/core.hpp"
  45. namespace cv {
  46. namespace detail {
  47. //! @addtogroup stitching_blend
  48. //! @{
  49. /** @brief Base class for all blenders.
  50. Simple blender which puts one image over another
  51. */
  52. class CV_EXPORTS Blender
  53. {
  54. public:
  55. virtual ~Blender() {}
  56. enum { NO, FEATHER, MULTI_BAND };
  57. static Ptr<Blender> createDefault(int type, bool try_gpu = false);
  58. /** @brief Prepares the blender for blending.
  59. @param corners Source images top-left corners
  60. @param sizes Source image sizes
  61. */
  62. void prepare(const std::vector<Point> &corners, const std::vector<Size> &sizes);
  63. /** @overload */
  64. virtual void prepare(Rect dst_roi);
  65. /** @brief Processes the image.
  66. @param img Source image
  67. @param mask Source image mask
  68. @param tl Source image top-left corners
  69. */
  70. virtual void feed(InputArray img, InputArray mask, Point tl);
  71. /** @brief Blends and returns the final pano.
  72. @param dst Final pano
  73. @param dst_mask Final pano mask
  74. */
  75. virtual void blend(InputOutputArray dst, InputOutputArray dst_mask);
  76. protected:
  77. UMat dst_, dst_mask_;
  78. Rect dst_roi_;
  79. };
  80. /** @brief Simple blender which mixes images at its borders.
  81. */
  82. class CV_EXPORTS FeatherBlender : public Blender
  83. {
  84. public:
  85. FeatherBlender(float sharpness = 0.02f);
  86. float sharpness() const { return sharpness_; }
  87. void setSharpness(float val) { sharpness_ = val; }
  88. void prepare(Rect dst_roi);
  89. void feed(InputArray img, InputArray mask, Point tl);
  90. void blend(InputOutputArray dst, InputOutputArray dst_mask);
  91. //! Creates weight maps for fixed set of source images by their masks and top-left corners.
  92. //! Final image can be obtained by simple weighting of the source images.
  93. Rect createWeightMaps(const std::vector<UMat> &masks, const std::vector<Point> &corners,
  94. std::vector<UMat> &weight_maps);
  95. private:
  96. float sharpness_;
  97. UMat weight_map_;
  98. UMat dst_weight_map_;
  99. };
  100. inline FeatherBlender::FeatherBlender(float _sharpness) { setSharpness(_sharpness); }
  101. /** @brief Blender which uses multi-band blending algorithm (see @cite BA83).
  102. */
  103. class CV_EXPORTS MultiBandBlender : public Blender
  104. {
  105. public:
  106. MultiBandBlender(int try_gpu = false, int num_bands = 5, int weight_type = CV_32F);
  107. int numBands() const { return actual_num_bands_; }
  108. void setNumBands(int val) { actual_num_bands_ = val; }
  109. void prepare(Rect dst_roi);
  110. void feed(InputArray img, InputArray mask, Point tl);
  111. void blend(InputOutputArray dst, InputOutputArray dst_mask);
  112. private:
  113. int actual_num_bands_, num_bands_;
  114. std::vector<UMat> dst_pyr_laplace_;
  115. std::vector<UMat> dst_band_weights_;
  116. Rect dst_roi_final_;
  117. bool can_use_gpu_;
  118. int weight_type_; //CV_32F or CV_16S
  119. };
  120. //////////////////////////////////////////////////////////////////////////////
  121. // Auxiliary functions
  122. void CV_EXPORTS normalizeUsingWeightMap(InputArray weight, InputOutputArray src);
  123. void CV_EXPORTS createWeightMap(InputArray mask, float sharpness, InputOutputArray weight);
  124. void CV_EXPORTS createLaplacePyr(InputArray img, int num_levels, std::vector<UMat>& pyr);
  125. void CV_EXPORTS createLaplacePyrGpu(InputArray img, int num_levels, std::vector<UMat>& pyr);
  126. // Restores source image
  127. void CV_EXPORTS restoreImageFromLaplacePyr(std::vector<UMat>& pyr);
  128. void CV_EXPORTS restoreImageFromLaplacePyrGpu(std::vector<UMat>& pyr);
  129. //! @}
  130. } // namespace detail
  131. } // namespace cv
  132. #endif // __OPENCV_STITCHING_BLENDERS_HPP__