Change colourspace handling round a bit:
[libdcp.git] / src / colour_conversion.h
1 /*
2     Copyright (C) 2014 Carl Hetherington <cth@carlh.net>
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #include <boost/shared_ptr.hpp>
21 #include <boost/numeric/ublas/matrix.hpp>
22
23 namespace dcp {
24
25 class TransferFunction;
26
27 class ColourConversion
28 {
29 public:
30         ColourConversion ()
31                 : _matrix (3, 3)
32         {}
33         
34         ColourConversion (
35                 boost::shared_ptr<const TransferFunction> in,
36                 double const matrix[3][3],
37                 boost::shared_ptr<const TransferFunction> out
38                 );
39
40         boost::shared_ptr<const TransferFunction> in () const {
41                 return _in;
42         }
43
44         boost::numeric::ublas::matrix<double> matrix () const {
45                 return _matrix;
46         }
47
48         boost::shared_ptr<const TransferFunction> out () const {
49                 return _out;
50         }
51
52         void set_in (boost::shared_ptr<const TransferFunction> f) {
53                 _in = f;
54         }
55
56         void set_matrix (boost::numeric::ublas::matrix<double> m) {
57                 _matrix = m;
58         }
59
60         void set_out (boost::shared_ptr<const TransferFunction> f) {
61                 _out = f;
62         }
63
64         bool about_equal (ColourConversion const & other, float epsilon) const;
65
66         static ColourConversion srgb_to_xyz;
67         static ColourConversion xyz_to_rgb;
68         static ColourConversion rec709_to_xyz;
69
70 protected:
71         boost::shared_ptr<const TransferFunction> _in;
72         boost::numeric::ublas::matrix<double> _matrix;
73         boost::shared_ptr<const TransferFunction> _out;
74 };
75
76 }