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
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
//!Convert colors from one reference white point to another
//!
//!Chromatic adaptation is the human visual system’s ability to adjust to changes
//!in illumination in order to preserve the appearance of object colors. It is responsible
//!for the stable appearance of object colours despite the wide variation of light which
//!might be reflected from an object and observed by our eyes.
//!
//!This library provides three methods for chromatic adaptation Bradford (which is the default),
//!VonKries and XyzScaling
//!
//!```
//!use palette::Xyz;
//!use palette::white_point::{A, C};
//!use palette::chromatic_adaptation::AdaptInto;
//!
//!
//!let a = Xyz::<A, f32>::with_wp(0.315756, 0.162732, 0.015905);
//!
//!//Will convert Xyz<A, f32> to Xyz<C, f32> using Bradford chromatic adaptation
//!let c: Xyz<C, f32> = a.adapt_into();
//!
//!//Should print {x: 0.257963, y: 0.139776,z: 0.058825}
//!println!("{:?}", c)
//!```
use float::Float;

use {cast, Component, FromColor, IntoColor, Xyz};
use white_point::WhitePoint;
use matrix::{multiply_xyz, Mat3, multiply_3x3};

///Chromatic adaptation methods implemented in the library
pub enum Method {
    ///Bradford chromatic adaptation method
    Bradford,
    ///VonKries chromatic adaptation method
    VonKries,
    ///XyzScaling chromatic adaptation method
    XyzScaling,
}

///Holds the matrix coeffecients for the chromatic adaptation methods
pub struct ConeResponseMatrices<T: Float> {
    ///3x3 matrix for the cone response domains
    pub ma: Mat3<T>,
    ///3x3 matrix for the inverse of the cone response domains
    pub inv_ma: Mat3<T>,
}

///Generates a conversion matrix to convert the Xyz trisitmilus values from
///one illuminant to another (Swp -> Dwp)
pub trait TransformMatrix<Swp, Dwp, T>
where
    T: Component + Float,
    Swp: WhitePoint,
    Dwp: WhitePoint,
{
    ///Get the cone response functions for the chromatic adaptation method
    fn get_cone_response(&self) -> ConeResponseMatrices<T>;

    ///Generates a 3x3 transformation matrix to convert color from one reference white point
    ///to another with the given cone_response
    fn generate_transform_matrix(&self) -> Mat3<T> {
        let s_wp: Xyz<Swp, T> = Swp::get_xyz();
        let t_wp: Xyz<Dwp, T> = Dwp::get_xyz();
        let adapt = self.get_cone_response();

        let resp_src: Xyz<Swp, _> = multiply_xyz(&adapt.ma, &s_wp);
        let resp_dst: Xyz<Dwp, _> = multiply_xyz(&adapt.ma, &t_wp);
        let z = T::zero();
        let resp = [
            resp_dst.x / resp_src.x,
            z,
            z,
            z,
            resp_dst.y / resp_src.y,
            z,
            z,
            z,
            resp_dst.z / resp_src.z,
        ];

        let tmp = multiply_3x3(&resp, &adapt.ma);
        multiply_3x3(&adapt.inv_ma, &tmp)
    }
}

impl<Swp, Dwp, T> TransformMatrix<Swp, Dwp, T> for Method
where
    T: Component + Float,
    Swp: WhitePoint,
    Dwp: WhitePoint,
{
    #[cfg_attr(rustfmt, rustfmt_skip)]
    fn get_cone_response(&self) -> ConeResponseMatrices<T> {
        match *self {
             Method::Bradford => {
                ConeResponseMatrices::<T> {
                    ma: [cast(0.8951000), cast(0.2664000), cast(-0.1614000),
                         cast(-0.7502000), cast(1.7135000), cast(0.0367000),
                         cast(0.0389000), cast(-0.0685000), cast(1.0296000)
                         ],
                    inv_ma: [cast(0.9869929), cast(-0.1470543), cast(0.1599627),
                             cast(0.4323053), cast(0.5183603), cast(0.0492912),
                             cast(-0.0085287), cast(0.0400428), cast(0.9684867)
                            ],
                }
            }
             Method::VonKries => {
                ConeResponseMatrices::<T> {
                    ma: [cast(0.4002400), cast(0.7076000), cast(-0.0808100),
                         cast(-0.2263000), cast(1.1653200), cast(0.0457000),
                         cast(0.0000000), cast(0.0000000), cast(0.9182200)
                         ],
                    inv_ma: [cast(1.8599364), cast(-1.1293816), cast(0.2198974),
                             cast(0.3611914), cast(0.6388125), cast(-0.0000064),
                             cast(0.0000000), cast(0.0000000), cast(1.0890636)
                             ],
                }
            }
             Method::XyzScaling => {
                ConeResponseMatrices::<T> {
                    ma: [cast(1.0000000), cast(0.0000000), cast(0.0000000),
                         cast(0.0000000), cast(1.0000000), cast(0.0000000),
                         cast(0.0000000), cast(0.0000000), cast(1.0000000)
                         ],
                    inv_ma: [cast(1.0000000), cast(0.0000000), cast(0.0000000),
                             cast(0.0000000), cast(1.0000000), cast(0.0000000),
                             cast(0.0000000), cast(0.0000000), cast(1.0000000)
                             ],
                }
            }
        }
    }
}

///Trait to convert color from one reference white point to another
///
///Converts a color from the source white point (Swp) to the destination white point (Dwp).
///Uses the bradford method for conversion by default.
pub trait AdaptFrom<S, Swp, Dwp, T>: Sized
where
    T: Component + Float,
    Swp: WhitePoint,
    Dwp: WhitePoint,
{
    ///Convert the source color to the destination color using the bradford
    /// method by default
    fn adapt_from(color: S) -> Self {
        Self::adapt_from_using(color, Method::Bradford)
    }
    ///Convert the source color to the destination color using the specified
    /// method
    fn adapt_from_using<M: TransformMatrix<Swp, Dwp, T>>(color: S, method: M) -> Self;
}

impl<S, D, Swp, Dwp, T> AdaptFrom<S, Swp, Dwp, T> for D
where
    T: Component + Float,
    Swp: WhitePoint,
    Dwp: WhitePoint,
    S: IntoColor<Swp, T>,
    D: FromColor<Dwp, T>,
{
    fn adapt_from_using<M: TransformMatrix<Swp, Dwp, T>>(color: S, method: M) -> D {
        let src_xyz: Xyz<Swp, T> = color.into_xyz();
        let transform_matrix = method.generate_transform_matrix();
        let dst_xyz: Xyz<Dwp, T> = multiply_xyz(&transform_matrix, &src_xyz);
        D::from_xyz(dst_xyz)
    }
}

///Trait to convert color with one reference white point into another
///
///Converts a color with the source white point (Swp) into the destination white point (Dwp).
///Uses the bradford method for conversion by default.
pub trait AdaptInto<D, Swp, Dwp, T>: Sized
where
    T: Component + Float,
    Swp: WhitePoint,
    Dwp: WhitePoint,
{
    ///Convert the source color to the destination color using the bradford
    /// method by default
    fn adapt_into(self) -> D {
        self.adapt_into_using(Method::Bradford)
    }
    ///Convert the source color to the destination color using the specified
    /// method
    fn adapt_into_using<M: TransformMatrix<Swp, Dwp, T>>(self, method: M) -> D;
}

impl<S, D, Swp, Dwp, T> AdaptInto<D, Swp, Dwp, T> for S
where
    T: Component + Float,
    Swp: WhitePoint,
    Dwp: WhitePoint,
    D: AdaptFrom<S, Swp, Dwp, T>,
{
    fn adapt_into_using<M: TransformMatrix<Swp, Dwp, T>>(self, method: M) -> D {
        D::adapt_from_using(self, method)
    }
}

#[cfg(test)]
mod test {

    use Xyz;
    use white_point::{D50, D65, A, C};
    use super::{AdaptFrom, AdaptInto, Method, TransformMatrix};

    #[test]
    fn d65_to_d50_matrix_xyz_scaling() {
        let expected = [
            1.0144665, 0.0000000, 0.0000000, 0.0000000, 1.0000000, 0.0000000, 0.0000000, 0.0000000,
            0.7578869,
        ];
        let xyz_scaling = Method::XyzScaling;
        let computed = <dyn TransformMatrix<D65, D50, _>>::generate_transform_matrix(&xyz_scaling);
        for (e, c) in expected.iter().zip(computed.iter()) {
            assert_relative_eq!(e, c, epsilon = 0.0001)
        }
    }
    #[test]
    fn d65_to_d50_matrix_von_kries() {
        let expected = [
            1.0160803, 0.0552297, -0.0521326, 0.0060666, 0.9955661, -0.0012235, 0.0000000,
            0.0000000, 0.7578869,
        ];
        let von_kries = Method::VonKries;
        let computed = <dyn TransformMatrix<D65, D50, _>>::generate_transform_matrix(&von_kries);
        for (e, c) in expected.iter().zip(computed.iter()) {
            assert_relative_eq!(e, c, epsilon = 0.0001)
        }
    }
    #[test]
    fn d65_to_d50_matrix_bradford() {
        let expected = [
            1.0478112, 0.0228866, -0.0501270, 0.0295424, 0.9904844, -0.0170491, -0.0092345,
            0.0150436, 0.7521316,
        ];
        let bradford = Method::Bradford;
        let computed = <dyn TransformMatrix<D65, D50, _>>::generate_transform_matrix(&bradford);
        for (e, c) in expected.iter().zip(computed.iter()) {
            assert_relative_eq!(e, c, epsilon = 0.0001)
        }
    }

    #[test]
    fn chromatic_adaptation_from_a_to_c() {
        let input_a = Xyz::<A, f32>::with_wp(0.315756, 0.162732, 0.015905);

        let expected_bradford = Xyz::<C, f32>::with_wp(0.257963, 0.139776, 0.058825);
        let expected_vonkries = Xyz::<C, f32>::with_wp(0.268446, 0.159139, 0.052843);
        let expected_xyz_scaling = Xyz::<C, f32>::with_wp(0.281868, 0.162732, 0.052844);

        let computed_bradford: Xyz<C, f32> = Xyz::adapt_from(input_a);
        assert_relative_eq!(expected_bradford, computed_bradford, epsilon = 0.0001);

        let computed_vonkries: Xyz<C, f32> = Xyz::adapt_from_using(input_a, Method::VonKries);
        assert_relative_eq!(expected_vonkries, computed_vonkries, epsilon = 0.0001);

        let computed_xyz_scaling: Xyz<C, _> = Xyz::adapt_from_using(input_a, Method::XyzScaling);
        assert_relative_eq!(expected_xyz_scaling, computed_xyz_scaling, epsilon = 0.0001);
    }

    #[test]
    fn chromatic_adaptation_into_a_to_c() {
        let input_a = Xyz::<A, f32>::with_wp(0.315756, 0.162732, 0.015905);

        let expected_bradford = Xyz::<C, f32>::with_wp(0.257963, 0.139776, 0.058825);
        let expected_vonkries = Xyz::<C, f32>::with_wp(0.268446, 0.159139, 0.052843);
        let expected_xyz_scaling = Xyz::<C, f32>::with_wp(0.281868, 0.162732, 0.052844);

        let computed_bradford: Xyz<C, f32> = input_a.adapt_into();
        assert_relative_eq!(expected_bradford, computed_bradford, epsilon = 0.0001);

        let computed_vonkries: Xyz<C, f32> = input_a.adapt_into_using(Method::VonKries);
        assert_relative_eq!(expected_vonkries, computed_vonkries, epsilon = 0.0001);

        let computed_xyz_scaling: Xyz<C, _> = input_a.adapt_into_using(Method::XyzScaling);
        assert_relative_eq!(expected_xyz_scaling, computed_xyz_scaling, epsilon = 0.0001);
    }
}