exposure_compensate.hpp 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  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_EXPOSURE_COMPENSATE_HPP__
  43. #define __OPENCV_STITCHING_EXPOSURE_COMPENSATE_HPP__
  44. #include "opencv2/core.hpp"
  45. namespace cv {
  46. namespace detail {
  47. //! @addtogroup stitching_exposure
  48. //! @{
  49. /** @brief Base class for all exposure compensators.
  50. */
  51. class CV_EXPORTS ExposureCompensator
  52. {
  53. public:
  54. virtual ~ExposureCompensator() {}
  55. enum { NO, GAIN, GAIN_BLOCKS };
  56. static Ptr<ExposureCompensator> createDefault(int type);
  57. /**
  58. @param corners Source image top-left corners
  59. @param images Source images
  60. @param masks Image masks to update (second value in pair specifies the value which should be used
  61. to detect where image is)
  62. */
  63. void feed(const std::vector<Point> &corners, const std::vector<UMat> &images,
  64. const std::vector<UMat> &masks);
  65. /** @overload */
  66. virtual void feed(const std::vector<Point> &corners, const std::vector<UMat> &images,
  67. const std::vector<std::pair<UMat,uchar> > &masks) = 0;
  68. /** @brief Compensate exposure in the specified image.
  69. @param index Image index
  70. @param corner Image top-left corner
  71. @param image Image to process
  72. @param mask Image mask
  73. */
  74. virtual void apply(int index, Point corner, InputOutputArray image, InputArray mask) = 0;
  75. };
  76. /** @brief Stub exposure compensator which does nothing.
  77. */
  78. class CV_EXPORTS NoExposureCompensator : public ExposureCompensator
  79. {
  80. public:
  81. void feed(const std::vector<Point> &/*corners*/, const std::vector<UMat> &/*images*/,
  82. const std::vector<std::pair<UMat,uchar> > &/*masks*/) { }
  83. void apply(int /*index*/, Point /*corner*/, InputOutputArray /*image*/, InputArray /*mask*/) { }
  84. };
  85. /** @brief Exposure compensator which tries to remove exposure related artifacts by adjusting image
  86. intensities, see @cite BL07 and @cite WJ10 for details.
  87. */
  88. class CV_EXPORTS GainCompensator : public ExposureCompensator
  89. {
  90. public:
  91. void feed(const std::vector<Point> &corners, const std::vector<UMat> &images,
  92. const std::vector<std::pair<UMat,uchar> > &masks);
  93. void apply(int index, Point corner, InputOutputArray image, InputArray mask);
  94. std::vector<double> gains() const;
  95. private:
  96. Mat_<double> gains_;
  97. };
  98. /** @brief Exposure compensator which tries to remove exposure related artifacts by adjusting image block
  99. intensities, see @cite UES01 for details.
  100. */
  101. class CV_EXPORTS BlocksGainCompensator : public ExposureCompensator
  102. {
  103. public:
  104. BlocksGainCompensator(int bl_width = 32, int bl_height = 32)
  105. : bl_width_(bl_width), bl_height_(bl_height) {}
  106. void feed(const std::vector<Point> &corners, const std::vector<UMat> &images,
  107. const std::vector<std::pair<UMat,uchar> > &masks);
  108. void apply(int index, Point corner, InputOutputArray image, InputArray mask);
  109. private:
  110. int bl_width_, bl_height_;
  111. std::vector<UMat> gain_maps_;
  112. };
  113. //! @}
  114. } // namespace detail
  115. } // namespace cv
  116. #endif // __OPENCV_STITCHING_EXPOSURE_COMPENSATE_HPP__