Defines the CIE UVW colourspace transformations:
See also
References
[1] | http://en.wikipedia.org/wiki/CIE_1964_color_space (Last accessed 10 June 2014) |
Converts from CIE XYZ colourspace to CIE 1964 U*VW** colourspace.
Parameters: |
|
---|---|
Returns: | CIE 1964 U*VW** colourspace matrix. |
Return type: | ndarray, (3,) |
Notes
Warning
The input / output domains of that definition are non standard!
Examples
>>> XYZ = np.array([11.80583421, 10.34, 5.15089229])
>>> XYZ_to_UVW(XYZ)
array([ 24.2543371..., 7.2205484..., 37.4645000...])