colour.colorimetry.lightness_Wyszecki1963#
- colour.colorimetry.lightness_Wyszecki1963(Y: 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 lightness \(W\) from the specified luminance \(Y\) using the Wyszecki (1963) method.
- Parameters:
Y (Annotated[_Buffer | _SupportsArray[dtype[Any]] | _NestedSequence[_SupportsArray[dtype[Any]]] | complex | bytes | str | _NestedSequence[complex | bytes | str], 100]) – Luminance \(Y\).
- Returns:
Lightness \(W\).
- Return type:
Notes
Domain
Scale - Reference
Scale - 1
Y100
1
Range
Scale - Reference
Scale - 1
W100
1
References
[Wys63]
Examples
>>> lightness_Wyszecki1963(12.19722535) 40.5475745...