colour.models.sUCS_Iab_to_sUCS_ICh#
- colour.models.sUCS_Iab_to_sUCS_ICh(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, 100, 360][source]#
Convert from sUCS \(Iab\) rectangular coordinates to sUCS \(ICh\) cylindrical coordinates.
- Parameters:
Iab (Annotated[_Buffer | _SupportsArray[dtype[Any]] | _NestedSequence[_SupportsArray[dtype[Any]]] | complex | bytes | str | _NestedSequence[complex | bytes | str], 100]) – sUCS \(Iab\) rectangular coordinates array.
- Returns:
sUCS \(ICh\) cylindrical coordinates array.
- Return type:
Notes
Domain
Scale - Reference
Scale - 1
Iab100
1
Range
Scale - Reference
Scale - 1
IChI: 100C: 100h: 360I: 1C: 1h: 1References
[LL24]
Examples
>>> Iab = np.array([42.62923653, 36.97646831, 14.12301358]) >>> sUCS_Iab_to_sUCS_ICh(Iab) array([ 42.6292365..., 40.4205110..., 20.9041560...])