OpenCV 4.5.3(日本語機械翻訳)
tonemap.hpp
1 // This file is part of OpenCV project.
2 // It is subject to the license terms in the LICENSE file found in the top-level directory
3 // of this distribution and at http://opencv.org/license.html.
4
5 #ifndef OPENCV_XPHOTO_TONEMAP_HPP
6 #define OPENCV_XPHOTO_TONEMAP_HPP
7
8 #include "opencv2/photo.hpp"
9
10 namespace cv { namespace xphoto {
11
14
24 class CV_EXPORTS_W TonemapDurand : public Tonemap
25{
26 public:
27
28 CV_WRAP virtual float getSaturation() const = 0;
29 CV_WRAP virtual void setSaturation(float saturation) = 0;
30
31 CV_WRAP virtual float getContrast() const = 0;
32 CV_WRAP virtual void setContrast(float contrast) = 0;
33
34 CV_WRAP virtual float getSigmaSpace() const = 0;
35 CV_WRAP virtual void setSigmaSpace(float sigma_space) = 0;
36
37 CV_WRAP virtual float getSigmaColor() const = 0;
38 CV_WRAP virtual void setSigmaColor(float sigma_color) = 0;
39};
40
52CV_EXPORTS_W Ptr<TonemapDurand>
53 createTonemapDurand(float gamma = 1.0f, float contrast = 4.0f, float saturation = 1.0f, float sigma_color = 2.0f, float sigma_space = 2.0f);
54
55}} // namespace
56 #endif // OPENCV_XPHOTO_TONEMAP_HPP
Base class for tonemapping algorithms - tools that are used to map HDR image to 8-bit range.
Definition: photo.hpp:337
This algorithm decomposes image into two layers: base layer and detail layer using bilateral filter a...
Definition: tonemap.hpp:25
CV_EXPORTS_W Ptr< TonemapDurand > createTonemapDurand(float gamma=1.0f, float contrast=4.0f, float saturation=1.0f, float sigma_color=2.0f, float sigma_space=2.0f)
Creates TonemapDurand object
cv
"black box" representation of the file storage associated with a file on disk.
Definition: aruco.hpp:75
Definition: cvstd_wrapper.hpp:74