Fix tests to match reality.
[libdcp.git] / test / colour_conversion_test.cc
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 "gamma_transfer_function.h"
21 #include "colour_conversion.h"
22 #include "modified_gamma_transfer_function.h"
23 #include <boost/test/unit_test.hpp>
24 #include <cmath>
25
26 using std::pow;
27 using boost::shared_ptr;
28 using namespace dcp;
29
30 static void
31 check_gamma (shared_ptr<const TransferFunction> tf, int bit_depth, bool inverse, float gamma)
32 {
33         double const * lut = tf->lut (bit_depth, inverse);
34         int const count = rint (pow (2.0, bit_depth));
35
36         for (int i = 0; i < count; ++i) {
37                 BOOST_CHECK_CLOSE (lut[i], pow (float(i) / (count - 1), gamma), 0.001);
38         }
39 }
40
41 static void
42 check_modified_gamma (shared_ptr<const TransferFunction> tf, int bit_depth, bool inverse, double power, double threshold, double A, double B)
43 {
44         double const * lut = tf->lut (bit_depth, inverse);
45         int const count = rint (pow (2.0, bit_depth));
46
47         for (int i = 0; i < count; ++i) {
48                 double const x = double(i) / (count - 1);
49                 if (x > threshold) {
50                         BOOST_CHECK_CLOSE (lut[i], pow ((x + A) / (1 + A), power), 0.001);
51                 } else {
52                         BOOST_CHECK_CLOSE (lut[i], (x / B), 0.001);
53                 }
54         }
55 }
56
57 /** Check that the gamma correction LUTs are right for sRGB */
58 BOOST_AUTO_TEST_CASE (colour_conversion_test1)
59 {
60         ColourConversion cc = ColourConversion::srgb_to_xyz ();
61
62         check_modified_gamma (cc.in(), 8, false, 2.4, 0.04045, 0.055, 12.92);
63         check_modified_gamma (cc.in(), 12, false, 2.4, 0.04045, 0.055, 12.92);
64         check_modified_gamma (cc.in(), 16, false, 2.4, 0.04045, 0.055, 12.92);
65
66         check_gamma (cc.out(), 8, true, 1 / 2.6);
67         check_gamma (cc.out(), 12, true, 1 / 2.6);
68         check_gamma (cc.out(), 16, true, 1 / 2.6);
69 }
70
71 /** Check that the gamma correction LUTs are right for REC709 */
72 BOOST_AUTO_TEST_CASE (colour_conversion_test2)
73 {
74         ColourConversion cc = ColourConversion::rec709_to_xyz ();
75
76         check_gamma (cc.in(), 8, false, 2.2);
77         check_gamma (cc.in(), 12, false, 2.2);
78         check_gamma (cc.in(), 16, false, 2.2);
79
80         check_gamma (cc.out(), 8, true, 1 / 2.6);
81         check_gamma (cc.out(), 12, true, 1 / 2.6);
82         check_gamma (cc.out(), 16, true, 1 / 2.6);
83 }
84
85 /** Check that the xyz_to_rgb matrix is the inverse of the rgb_to_xyz one */
86 BOOST_AUTO_TEST_CASE (colour_conversion_matrix_test)
87 {
88         ColourConversion c = ColourConversion::srgb_to_xyz ();
89
90         boost::numeric::ublas::matrix<double> A = c.rgb_to_xyz ();
91         boost::numeric::ublas::matrix<double> B = c.xyz_to_rgb ();
92
93         BOOST_CHECK_CLOSE (A(0, 0) * B(0, 0) + A(0, 1) * B(1, 0) + A(0, 2) * B(2, 0), 1, 0.1);
94         BOOST_CHECK (fabs (A(0, 0) * B(0, 1) + A(0, 1) * B(1, 1) + A(0, 2) * B(2, 1)) < 1e-6);
95         BOOST_CHECK (fabs (A(0, 0) * B(0, 2) + A(0, 1) * B(1, 2) + A(0, 2) * B(2, 2)) < 1e-6);
96
97         BOOST_CHECK (fabs (A(1, 0) * B(0, 0) + A(1, 1) * B(1, 0) + A(1, 2) * B(2, 0)) < 1e-6);
98         BOOST_CHECK_CLOSE (A(1, 0) * B(0, 1) + A(1, 1) * B(1, 1) + A(1, 2) * B(2, 1), 1, 0.1);
99         BOOST_CHECK (fabs (A(1, 0) * B(0, 2) + A(1, 1) * B(1, 2) + A(1, 2) * B(2, 2)) < 1e-6);
100
101         BOOST_CHECK (fabs (A(2, 0) * B(0, 0) + A(2, 1) * B(1, 0) + A(2, 2) * B(2, 0)) < 1e-6);
102         BOOST_CHECK (fabs (A(2, 0) * B(0, 1) + A(2, 1) * B(1, 1) + A(2, 2) * B(2, 1)) < 1e-6);
103         BOOST_CHECK_CLOSE (A(2, 0) * B(0, 2) + A(2, 1) * B(1, 2) + A(2, 2) * B(2, 2), 1, 0.1);
104 }