colour.models.sUCS_chroma#

colour.models.sUCS_chroma(Iab: Annotated[_Buffer | _SupportsArray[dtype[Any]] | _NestedSequence[_SupportsArray[dtype[Any]]] | complex | bytes | str | _NestedSequence[complex | bytes | str], 100]) Annotated[ndarray[tuple[Any, ...], dtype[float16 | float32 | float64]], 100][source]#

Compute the chroma component from the sUCS colourspace.

Parameters:

Iab (Annotated[_Buffer | _SupportsArray[dtype[Any]] | _NestedSequence[_SupportsArray[dtype[Any]]] | complex | bytes | str | _NestedSequence[complex | bytes | str], 100]) – sUCS \(Iab\) colourspace array.

Returns:

Chroma component.

Return type:

numpy.ndarray

Notes

Domain

Scale - Reference

Scale - 1

Iab

100

1

Range

Scale - Reference

Scale - 1

C

100

1

References

[LL24]

Examples

>>> Iab = np.array([42.62923653, 36.97646831, 14.12301358])
>>> sUCS_chroma(Iab)
40.4205110...