colour.Hunter_Rdab_to_XYZ#

colour.Hunter_Rdab_to_XYZ(R_d_ab: 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 Rd,a,b colour scale to CIE XYZ tristimulus values.

Parameters:
  • R_d_ab (Annotated[_Buffer | _SupportsArray[dtype[Any]] | _NestedSequence[_SupportsArray[dtype[Any]]] | complex | bytes | str | _NestedSequence[complex | bytes | str], 100]) – Hunter Rd,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

R_d_ab

100

1

XYZ_n

100

1

Range

Scale - Reference

Scale - 1

XYZ

100

1

References

[HunterLab12]

Examples

>>> import numpy as np
>>> R_d_ab = np.array([12.19722500, 57.12537874, 17.46241341])
>>> D65 = TVS_ILLUMINANTS_HUNTERLAB["CIE 1931 2 Degree Standard Observer"]["D65"]
>>> Hunter_Rdab_to_XYZ(R_d_ab, D65.XYZ_n, D65.K_ab)
array([20.654008, 12.197225,  5.136952])