OpenCV 4.5.3(日本語機械翻訳)
retinafasttonemapping.hpp
[詳解]
1
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 ** bioinspired : interfaces allowing OpenCV users to integrate Human Vision System models. Presented models originate from Jeanny Herault's original research and have been reused and adapted by the author&collaborators for computed vision applications since his thesis with Alice Caplier at Gipsa-Lab.
11 **
12 ** Maintainers : Listic lab (code author current affiliation & applications) and Gipsa Lab (original research origins & applications)
13 **
14 ** Creation - enhancement process 2007-2013
15 ** Author: Alexandre Benoit (benoit.alexandre.vision@gmail.com), LISTIC lab, Annecy le vieux, France
16 **
17 ** Theses algorithm have been developped by Alexandre BENOIT since his thesis with Alice Caplier at Gipsa-Lab (www.gipsa-lab.inpg.fr) and the research he pursues at LISTIC Lab (www.listic.univ-savoie.fr).
18 ** Refer to the following research paper for more information:
19 ** Benoit A., Caplier A., Durette B., Herault, J., "USING HUMAN VISUAL SYSTEM MODELING FOR BIO-INSPIRED LOW LEVEL IMAGE PROCESSING", Elsevier, Computer Vision and Image Understanding 114 (2010), pp. 758-773, DOI: http://dx.doi.org/10.1016/j.cviu.2010.01.011
20 ** This work have been carried out thanks to Jeanny Herault who's research and great discussions are the basis of all this work, please take a look at his book:
21 ** Vision: Images, Signals and Neural Networks: Models of Neural Processing in Visual Perception (Progress in Neural Processing),By: Jeanny Herault, ISBN: 9814273686. WAPI (Tower ID): 113266891.
22 **
23 **
24 **
25 **
26 **
27 ** This class is based on image processing tools of the author and already used within the Retina class (this is the same code as method retina::applyFastToneMapping, but in an independent class, it is ligth from a memory requirement point of view). It implements an adaptation of the efficient tone mapping algorithm propose by David Alleyson, Sabine Susstruck and Laurence Meylan's work, please cite:
28 ** -> Meylan L., Alleysson D., and Susstrunk S., A Model of Retinal Local Adaptation for the Tone Mapping of Color Filter Array Images, Journal of Optical Society of America, A, Vol. 24, N 9, September, 1st, 2007, pp. 2807-2816
29 **
30 **
31 ** License Agreement
32 ** For Open Source Computer Vision Library
33 **
34 ** Copyright (C) 2000-2008, Intel Corporation, all rights reserved.
35 ** Copyright (C) 2008-2011, Willow Garage Inc., all rights reserved.
36 **
37 ** For Human Visual System tools (bioinspired)
38 ** Copyright (C) 2007-2011, LISTIC Lab, Annecy le Vieux and GIPSA Lab, Grenoble, France, all rights reserved.
39 **
40 ** Third party copyrights are property of their respective owners.
41 **
42 ** Redistribution and use in source and binary forms, with or without modification,
43 ** are permitted provided that the following conditions are met:
44 **
45 ** * Redistributions of source code must retain the above copyright notice,
46 ** this list of conditions and the following disclaimer.
47 **
48 ** * Redistributions in binary form must reproduce the above copyright notice,
49 ** this list of conditions and the following disclaimer in the documentation
50 ** and/or other materials provided with the distribution.
51 **
52 ** * The name of the copyright holders may not be used to endorse or promote products
53 ** derived from this software without specific prior written permission.
54 **
55 ** This software is provided by the copyright holders and contributors "as is" and
56 ** any express or implied warranties, including, but not limited to, the implied
57 ** warranties of merchantability and fitness for a particular purpose are disclaimed.
58 ** In no event shall the Intel Corporation or contributors be liable for any direct,
59 ** indirect, incidental, special, exemplary, or consequential damages
60 ** (including, but not limited to, procurement of substitute goods or services;
61 ** loss of use, data, or profits; or business interruption) however caused
62 ** and on any theory of liability, whether in contract, strict liability,
63 ** or tort (including negligence or otherwise) arising in any way out of
64 ** the use of this software, even if advised of the possibility of such damage.
65 *******************************************************************************/
66
67 #ifndef __OPENCV_BIOINSPIRED_RETINAFASTTONEMAPPING_HPP__
68 #define __OPENCV_BIOINSPIRED_RETINAFASTTONEMAPPING_HPP__
69
76 #include "opencv2/core.hpp" // for all OpenCV core functionalities access, including cv::Exception support
77
78 namespace cv{
79 namespace bioinspired{
80
83
99 class CV_EXPORTS_W RetinaFastToneMapping : public Algorithm
100{
101 public:
102
119 CV_WRAP virtual void applyFastToneMapping(InputArray inputImage, OutputArray outputToneMappedImage)=0;
120
128 CV_WRAP virtual void setup(const float photoreceptorsNeighborhoodRadius=3.f, const float ganglioncellsNeighborhoodRadius=1.f, const float meanLuminanceModulatorK=1.f)=0;
129
130 CV_WRAP static Ptr<RetinaFastToneMapping> create(Size inputSize);
131};
132
133
135
136}
137}
138 #endif /* __OPENCV_BIOINSPIRED_RETINAFASTTONEMAPPING_HPP__ */
This type is very similar to InputArray except that it is used for input/output and output function p...
Definition: mat.hpp:295
This is a base class for all more or less complex algorithms in OpenCV
Definition: core.hpp:3091
Template class for specifying the size of an image or rectangle.
Definition: core/types.hpp:316
a wrapper class which allows the tone mapping algorithm of Meylan&al(2007) to be used with OpenCV.
Definition: retinafasttonemapping.hpp:100
cv
"black box" representation of the file storage associated with a file on disk.
Definition: aruco.hpp:75
Definition: cvstd_wrapper.hpp:74