SyB3R - Synthetic Benchmark for 3D Reconstruction
Main Page
Related Pages
Modules
Classes
Files
File List
libs
Synthesis
source
syb3r
synthesis
ImagePP_TonemappingCurve.h
1
/*
2
* Syb3r - A framework for the creation and use of synthetic benchmark datasets for SfM/MVS with Blender and Cycles.
3
* Copyright (C) 2016 Andreas Ley <mail@andreas-ley.com>
4
*
5
* This program is free software: you can redistribute it and/or modify
6
* it under the terms of the GNU General Public License as published by
7
* the Free Software Foundation, either version 3 of the License, or
8
* (at your option) any later version.
9
*
10
* This program is distributed in the hope that it will be useful,
11
* but WITHOUT ANY WARRANTY; without even the implied warranty of
12
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13
* GNU General Public License for more details.
14
*
15
* You should have received a copy of the GNU General Public License
16
* along with this program. If not, see <http://www.gnu.org/licenses/>.
17
*
18
*/
19
20
21
#ifndef IMAGEPP_TONEMAPPINGCURVE_H
22
#define IMAGEPP_TONEMAPPINGCURVE_H
23
24
#include "ImagePostprocessorStep.h"
25
26
#include <syb3r/models/CameraResponseCurve.h>
27
28
namespace
syb3r
{
29
namespace
synthesis {
30
31
class
ImagePP_TonemappingCurve
:
public
ImagePostprocessorStep
32
{
33
public
:
34
ImagePP_TonemappingCurve
(
const
models::CameraRGBResponseCurves<256>
&curves);
35
36
virtual
void
process
(
tools::FloatImage<Eigen::Vector3f>
&output,
const
tools::FloatImage<Eigen::Vector3f>
&input,
ImageProperties
&properties)
const override
;
37
protected
:
38
const
models::CameraRGBResponseCurves<256>
&m_curves;
39
};
40
41
}
42
}
43
44
#endif // IMAGEPP_TONEMAPPINGCURVE_H
syb3r
Definition:
CameraPathEvaluation.cpp:10
syb3r::models::CameraRGBResponseCurves< 256 >
syb3r::synthesis::ImagePostprocessorStep
Definition:
ImagePostprocessorStep.h:33
syb3r::synthesis::ImagePP_TonemappingCurve
Definition:
ImagePP_TonemappingCurve.h:31
syb3r::synthesis::ImageProperties
Stores basic information in key/value pairs.
Definition:
ImagePostprocessor.h:25
syb3r::tools::FloatImage
Stores an image with arbitrary, usually float based, pixel values.
Definition:
FloatImage.h:35
syb3r::synthesis::ImagePP_TonemappingCurve::process
virtual void process(tools::FloatImage< Eigen::Vector3f > &output, const tools::FloatImage< Eigen::Vector3f > &input, ImageProperties &properties) const override
Definition:
ImagePP_TonemappingCurve.cpp:31
Generated by
1.8.11