colour.UCS_to_uv#

colour.UCS_to_uv(UVW: Annotated[_Buffer | _SupportsArray[dtype[Any]] | _NestedSequence[_SupportsArray[dtype[Any]]] | complex | bytes | str | _NestedSequence[complex | bytes | str], 1]) NDArrayFloat[source]#

Convert from CIE 1960 UCS colourspace to uv chromaticity coordinates.

Parameters:

UVW (Annotated[_Buffer | _SupportsArray[dtype[Any]] | _NestedSequence[_SupportsArray[dtype[Any]]] | complex | bytes | str | _NestedSequence[complex | bytes | str], 1]) – CIE 1960 UCS \(UVW\) colourspace array.

Returns:

CIE UCS uv chromaticity coordinates.

Return type:

numpy.ndarray

Notes

Domain

Scale - Reference

Scale - 1

UVW

1

1

References

[Wikipedia08b]

Examples

>>> import numpy as np
>>> UVW = np.array([0.13769339, 0.12197225, 0.10537310])
>>> UCS_to_uv(UVW)
array([0.3772021..., 0.3341350...])