Defines the CIE U*V*W* colourspace transformations:
See also
References
[1] | Wikipedia. (n.d.). CIE 1964 color space. Retrieved June 10, 2014, from http://en.wikipedia.org/wiki/CIE_1964_color_space |
Converts from CIE XYZ tristimulus values to CIE 1964 U*V*W* colourspace.
Parameters: |
|
---|---|
Returns: | CIE 1964 U*V*W* colourspace array. |
Return type: | ndarray |
Notes
Warning
The input / output domains of that definition are non standard!
Examples
>>> import numpy as np
>>> XYZ = np.array([0.07049534, 0.10080000, 0.09558313]) * 100
>>> XYZ_to_UVW(XYZ)
array([-28.0483277..., -0.8805242..., 37.0041149...])