-
Notifications
You must be signed in to change notification settings - Fork 9
/
colorspace_conversion_effect.h
42 lines (31 loc) · 1.3 KB
/
colorspace_conversion_effect.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#ifndef _MOVIT_COLORSPACE_CONVERSION_EFFECT_H
#define _MOVIT_COLORSPACE_CONVERSION_EFFECT_H 1
// An effect to convert between different color spaces.
// Can convert freely between sRGB/Rec. 709 and the two different Rec. 601
// color spaces (which thankfully have the same white point).
//
// We don't do any fancy gamut mapping or similar; colors that are out-of-gamut
// will simply stay out-of-gamut, and probably clip in the output stage.
#include <Eigen/Core>
#include <string>
#include "effect.h"
#include "image_format.h"
namespace movit {
class ColorspaceConversionEffect : public Effect {
private:
// Should not be instantiated by end users.
ColorspaceConversionEffect();
friend class EffectChain;
public:
std::string effect_type_id() const override { return "ColorspaceConversionEffect"; }
std::string output_fragment_shader() override;
bool needs_srgb_primaries() const override { return false; }
AlphaHandling alpha_handling() const override { return DONT_CARE_ALPHA_TYPE; }
bool strong_one_to_one_sampling() const override { return true; }
// Get a conversion matrix from the given color space to XYZ.
static Eigen::Matrix3d get_xyz_matrix(Colorspace space);
private:
Colorspace source_space, destination_space;
};
} // namespace movit
#endif // !defined(_MOVIT_COLORSPACE_CONVERSION_EFFECT_H)