colour.corresponding.corresponding_chromaticities_prediction_Fairchild1990

colour.corresponding.corresponding_chromaticities_prediction_Fairchild1990(experiment=1)[source]

Returns the corresponding chromaticities prediction for Fairchild (1990) chromatic adaptation model.

Parameters:experiment (integer, optional) – {1, 2, 3, 4, 6, 8, 9, 11, 12} Breneman (1987) experiment number.
Returns:Corresponding chromaticities prediction.
Return type:tuple

References

Examples

>>> from pprint import pprint
>>> pr = corresponding_chromaticities_prediction_Fairchild1990(2)
>>> pr = [(p.uvp_m, p.uvp_p) for p in pr]
>>> pprint(pr)  
[((0.207, 0.486), (0.2089528..., 0.4724034...)),
 ((0.449, 0.511), (0.4375652..., 0.5121030...)),
 ((0.263, 0.505), (0.2621362..., 0.4972538...)),
 ((0.322, 0.545), (0.3235312..., 0.5475665...)),
 ((0.316, 0.537), (0.3151390..., 0.5398333...)),
 ((0.265, 0.553), (0.2634745..., 0.5544335...)),
 ((0.221, 0.538), (0.2211595..., 0.5324470...)),
 ((0.135, 0.532), (0.1396949..., 0.5207234...)),
 ((0.145, 0.472), (0.1512288..., 0.4533041...)),
 ((0.163, 0.331), (0.1715691..., 0.3026264...)),
 ((0.176, 0.431), (0.1825792..., 0.4077892...)),
 ((0.244, 0.349), (0.2418904..., 0.3413401...))]