colour.Hunter_Lab_to_XYZ#

colour.Hunter_Lab_to_XYZ(Lab: Annotated[_Buffer | _SupportsArray[dtype[Any]] | _NestedSequence[_SupportsArray[dtype[Any]]] | complex | bytes | str | _NestedSequence[complex | bytes | str], 100], XYZ_n: TypeAliasForwardRef('ArrayLike') | None = None, K_ab: TypeAliasForwardRef('ArrayLike') | None = None) Annotated[ndarray[tuple[Any, ...], dtype[float16 | float32 | float64]], 100][source]#

Convert from Hunter L,a,b colour scale to CIE XYZ tristimulus values.

Parameters:
  • Lab (Annotated[_Buffer | _SupportsArray[dtype[Any]] | _NestedSequence[_SupportsArray[dtype[Any]]] | complex | bytes | str | _NestedSequence[complex | bytes | str], 100]) – Hunter L,a,b colour scale array.

  • XYZ_n (TypeAliasForwardRef('ArrayLike') | None) – Reference illuminant tristimulus values.

  • K_ab (TypeAliasForwardRef('ArrayLike') | None) – Reference illuminant chromaticity coefficients. If K_ab is set to None, it will be computed using colour.XYZ_to_K_ab_HunterLab1966().

Returns:

CIE XYZ tristimulus values.

Return type:

numpy.ndarray

Notes

Domain

Scale - Reference

Scale - 1

Lab

100

1

XYZ_n

100

1

Range

Scale - Reference

Scale - 1

XYZ

100

1

References

[HunterLab08a]

Examples

>>> Lab = np.array([34.92452577, 47.06189858, 14.38615107])
>>> D65 = TVS_ILLUMINANTS_HUNTERLAB["CIE 1931 2 Degree Standard Observer"]["D65"]
>>> Hunter_Lab_to_XYZ(Lab, D65.XYZ_n, D65.K_ab)
array([20.654008, 12.197225,  5.136952])