colour.models.sUCS_hue_angle#

colour.models.sUCS_hue_angle(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]], 360][source]#

Compute the hue angle in degrees 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:

Hue angle in degrees.

Return type:

numpy.ndarray

Notes

Domain

Scale - Reference

Scale - 1

Iab

100

1

Range

Scale - Reference

Scale - 1

hue

360

1

References

[LL24]

Examples

>>> Iab = np.array([42.62923653, 36.97646831, 14.12301358])
>>> sUCS_hue_angle(Iab)
20.9041560...