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
//! Defines the tristimulus values of the CIE Illuminants.
//!
//! White point is the reference white or target white as seen by a standard
//! observer under a standard illuminant. For example, photographs taken indoors
//! may be lit by incandescent lights, which are relatively orange compared to
//! daylight. Defining "white" as daylight will give unacceptable results when
//! attempting to color-correct a photograph taken with incandescent lighting.
use crate::{num::Real, Xyz};
/// Represents an unspecified reference white point.
///
/// Some color spaces (such as `Xyz` and `Yxy`) or operations don't necessarily
/// need a known intended white point. `Any` may be used as a placeholder type
/// in those situations.
#[derive(Copy, Clone, Debug, PartialEq, Eq)]
pub struct Any;
/// WhitePoint defines the Xyz color co-ordinates for a given white point.
///
/// A white point (often referred to as reference white or target white in
/// technical documents) is a set of tristimulus values or chromaticity
/// coordinates that serve to define the color "white" in image capture,
/// encoding, or reproduction.
///
/// Custom white points can be easily defined on an empty struct with the
/// tristimulus values and can be used in place of the ones defined in this
/// library.
pub trait WhitePoint<T>: 'static {
/// Get the Xyz chromaticity co-ordinates for the white point.
fn get_xyz() -> Xyz<Any, T>;
}
/// CIE standard illuminant A
///
/// CIE standard illuminant A is intended to represent typical, domestic,
/// tungsten-filament lighting. Its relative spectral power distribution is that
/// of a Planckian radiator at a temperature of approximately 2856 K. Uses the
/// CIE 1932 2° Standard Observer
#[derive(Copy, Clone, Debug, PartialEq, Eq)]
pub struct A;
impl<T: Real> WhitePoint<T> for A {
#[inline]
fn get_xyz() -> Xyz<Any, T> {
Xyz::new(T::from_f64(1.09850), T::from_f64(1.0), T::from_f64(0.35585))
}
}
/// CIE standard illuminant B
///
/// CIE standard illuminant B represents noon sunlight, with a correlated color
/// temperature (CCT) of 4874 K Uses the CIE 1932 2° Standard Observer
#[derive(Copy, Clone, Debug, PartialEq, Eq)]
pub struct B;
impl<T: Real> WhitePoint<T> for B {
#[inline]
fn get_xyz() -> Xyz<Any, T> {
Xyz::new(T::from_f64(0.99072), T::from_f64(1.0), T::from_f64(0.85223))
}
}
/// CIE standard illuminant C
///
/// CIE standard illuminant C represents the average day light with a CCT of
/// 6774 K Uses the CIE 1932 2° Standard Observer
#[derive(Copy, Clone, Debug, PartialEq, Eq)]
pub struct C;
impl<T: Real> WhitePoint<T> for C {
#[inline]
fn get_xyz() -> Xyz<Any, T> {
Xyz::new(T::from_f64(0.98074), T::from_f64(1.0), T::from_f64(1.18232))
}
}
/// CIE D series standard illuminant - D50
///
/// D50 White Point is the natural daylight with a color temperature of around
/// 5000K for 2° Standard Observer.
#[derive(Copy, Clone, Debug, PartialEq, Eq)]
pub struct D50;
impl<T: Real> WhitePoint<T> for D50 {
#[inline]
fn get_xyz() -> Xyz<Any, T> {
Xyz::new(T::from_f64(0.96422), T::from_f64(1.0), T::from_f64(0.82521))
}
}
/// CIE D series standard illuminant - D55
///
/// D55 White Point is the natural daylight with a color temperature of around
/// 5500K for 2° Standard Observer.
#[derive(Copy, Clone, Debug, PartialEq, Eq)]
pub struct D55;
impl<T: Real> WhitePoint<T> for D55 {
#[inline]
fn get_xyz() -> Xyz<Any, T> {
Xyz::new(T::from_f64(0.95682), T::from_f64(1.0), T::from_f64(0.92149))
}
}
/// CIE D series standard illuminant - D65
///
/// D65 White Point is the natural daylight with a color temperature of 6500K
/// for 2° Standard Observer.
#[derive(Copy, Clone, Debug, PartialEq, Eq)]
pub struct D65;
impl<T: Real> WhitePoint<T> for D65 {
#[inline]
fn get_xyz() -> Xyz<Any, T> {
Xyz::new(T::from_f64(0.95047), T::from_f64(1.0), T::from_f64(1.08883))
}
}
/// CIE D series standard illuminant - D75
///
/// D75 White Point is the natural daylight with a color temperature of around
/// 7500K for 2° Standard Observer.
#[derive(Copy, Clone, Debug, PartialEq, Eq)]
pub struct D75;
impl<T: Real> WhitePoint<T> for D75 {
#[inline]
fn get_xyz() -> Xyz<Any, T> {
Xyz::new(T::from_f64(0.94972), T::from_f64(1.0), T::from_f64(1.22638))
}
}
/// CIE standard illuminant E
///
/// CIE standard illuminant E represents the equal energy radiator
/// Uses the CIE 1932 2° Standard Observer
#[derive(Copy, Clone, Debug, PartialEq, Eq)]
pub struct E;
impl<T: Real> WhitePoint<T> for E {
#[inline]
fn get_xyz() -> Xyz<Any, T> {
Xyz::new(T::from_f64(1.0), T::from_f64(1.0), T::from_f64(1.0))
}
}
/// CIE fluorescent illuminant series - F2
///
/// F2 represents a semi-broadband fluorescent lamp for 2° Standard Observer.
#[derive(Copy, Clone, Debug, PartialEq, Eq)]
pub struct F2;
impl<T: Real> WhitePoint<T> for F2 {
#[inline]
fn get_xyz() -> Xyz<Any, T> {
Xyz::new(T::from_f64(0.99186), T::from_f64(1.0), T::from_f64(0.67393))
}
}
/// CIE fluorescent illuminant series - F7
///
/// F7 represents a broadband fluorescent lamp for 2° Standard Observer.
#[derive(Copy, Clone, Debug, PartialEq, Eq)]
pub struct F7;
impl<T: Real> WhitePoint<T> for F7 {
#[inline]
fn get_xyz() -> Xyz<Any, T> {
Xyz::new(T::from_f64(0.95041), T::from_f64(1.0), T::from_f64(1.08747))
}
}
/// CIE fluorescent illuminant series - F11
///
/// F11 represents a narrowband fluorescent lamp for 2° Standard Observer.
#[derive(Copy, Clone, Debug, PartialEq, Eq)]
pub struct F11;
impl<T: Real> WhitePoint<T> for F11 {
#[inline]
fn get_xyz() -> Xyz<Any, T> {
Xyz::new(T::from_f64(1.00962), T::from_f64(1.0), T::from_f64(0.64350))
}
}
/// CIE D series standard illuminant - D50
///
/// D50 White Point is the natural daylight with a color temperature of around
/// 5000K for 10° Standard Observer.
#[derive(Copy, Clone, Debug, PartialEq, Eq)]
pub struct D50Degree10;
impl<T: Real> WhitePoint<T> for D50Degree10 {
#[inline]
fn get_xyz() -> Xyz<Any, T> {
Xyz::new(T::from_f64(0.9672), T::from_f64(1.0), T::from_f64(0.8143))
}
}
/// CIE D series standard illuminant - D55
///
/// D55 White Point is the natural daylight with a color temperature of around
/// 5500K for 10° Standard Observer.
#[derive(Copy, Clone, Debug, PartialEq, Eq)]
pub struct D55Degree10;
impl<T: Real> WhitePoint<T> for D55Degree10 {
#[inline]
fn get_xyz() -> Xyz<Any, T> {
Xyz::new(T::from_f64(0.958), T::from_f64(1.0), T::from_f64(0.9093))
}
}
/// CIE D series standard illuminant - D65
///
/// D65 White Point is the natural daylight with a color temperature of 6500K
/// for 10° Standard Observer.
#[derive(Copy, Clone, Debug, PartialEq, Eq)]
pub struct D65Degree10;
impl<T: Real> WhitePoint<T> for D65Degree10 {
#[inline]
fn get_xyz() -> Xyz<Any, T> {
Xyz::new(T::from_f64(0.9481), T::from_f64(1.0), T::from_f64(1.073))
}
}
/// CIE D series standard illuminant - D75
///
/// D75 White Point is the natural daylight with a color temperature of around
/// 7500K for 10° Standard Observer.
#[derive(Copy, Clone, Debug, PartialEq, Eq)]
pub struct D75Degree10;
impl<T: Real> WhitePoint<T> for D75Degree10 {
#[inline]
fn get_xyz() -> Xyz<Any, T> {
Xyz::new(T::from_f64(0.94416), T::from_f64(1.0), T::from_f64(1.2064))
}
}