You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Evaluate the [CIEDE2000](http://en.wikipedia.org/wiki/Color_difference#CIEDE2000) color difference formula by default. This gives an approximate measure of the perceptual difference between two colors to a typical viewer. A larger number is returned for increasingly distinguishable colors.
13
21
14
-
Options for `DifferenceMetric` are as follows:
15
-
16
-
| Option | Action |
17
-
| ---------- | ------- |
18
-
|`DE_2000(kl::Float64, kc::Float64, kh::Float64)`| Specify the color difference using the recommended CIEDE2000 equation, with weighting parameters `kl`, `kc`, and `kh` as provided for in the recommendation.|
19
-
|`DE_2000()`| - when not provided, these parameters default to 1. |
20
-
|`DE_94(kl::Float64, kc::Float64, kh::Float64)`| Specify the color difference using the recommended CIEDE94 equation, with weighting parameters `kl`, `kc`, and `kh` as provided for in the recommendation. |
21
-
|`DE_94()`| - hen not provided, these parameters default to 1. |
|`DE_CMC(kl::Float64, kc::Float64)`| Specify the color difference using the CMC equation, with weighting parameters `kl` and `kc`. |
24
-
|`DE_CMC()`| - when not provided, these parameters default to 1. |
25
-
|`DE_BFD(wp::XYZ, kl::Float64, kc::Float64)`| Specify the color difference using the BFD equation, with weighting parameters `kl` and `kc`. Additionally, a white point can be specified, because the BFD equation must convert between `XYZ` and `LAB` during the computation.|
26
-
|`DE_BFD(kl::Float64, kc::Float64)`||
27
-
|`DE_BFD()`| - when not specified, the constants default to 1, and the white point defaults to CIED65. |
28
-
|`DE_AB()`| Specify the original, Euclidean color difference equation. |
29
-
|`DE_DIN99()`| Specify the Euclidean color difference equation applied in the `DIN99` uniform colorspace. |
30
-
|`DE_DIN99d()`| Specify the Euclidean color difference equation applied in the `DIN99d` uniform colorspace. |
31
-
|`DE_DIN99o()`| Specify the Euclidean color difference equation applied in the `DIN99o` uniform colorspace. |
0 commit comments