colour.ProLab_to_XYZ#
- colour.ProLab_to_XYZ(ProLab: Annotated[_Buffer | _SupportsArray[dtype[Any]] | _NestedSequence[_SupportsArray[dtype[Any]]] | complex | bytes | str | _NestedSequence[complex | bytes | str], 1], illuminant: ArrayLike = CCS_ILLUMINANTS['CIE 1931 2 Degree Standard Observer']['D65']) Annotated[ndarray[tuple[Any, ...], dtype[float16 | float32 | float64]], 1][source]#
Convert from ProLab colourspace to CIE XYZ tristimulus values.
- Parameters:
ProLab (Annotated[_Buffer | _SupportsArray[dtype[Any]] | _NestedSequence[_SupportsArray[dtype[Any]]] | complex | bytes | str | _NestedSequence[complex | bytes | str], 1]) – ProLab colourspace array.
illuminant (ArrayLike) – Reference illuminant CIE xy chromaticity coordinates or CIE xyY colourspace array.
- Returns:
CIE XYZ tristimulus values.
- Return type:
Notes
Domain
Scale - Reference
Scale - 1
ProLab1
1
Range
Scale - Reference
Scale - 1
XYZ1
1
References
[KSNN21]
Examples
>>> ProLab = np.array([59.8466286, 115.0396354, 20.12510352]) >>> ProLab_to_XYZ(ProLab) array([ 0.5163401..., 0.154695 ..., 0.0628957...])