colour.models.cctf_decoding_RIMMRGB#
- colour.models.cctf_decoding_RIMMRGB(X_p: Annotated[_Buffer | _SupportsArray[dtype[Any]] | _NestedSequence[_SupportsArray[dtype[Any]]] | complex | bytes | str | _NestedSequence[complex | bytes | str], 1], bit_depth: int = 8, in_int: bool = False, E_clip: float = 2.0) Annotated[ndarray[tuple[Any, ...], dtype[float16 | float32 | float64]], 1][source]#
Apply the RIMM RGB decoding colour component transfer function (Decoding CCTF).
- Parameters:
X_p (Annotated[_Buffer | _SupportsArray[dtype[Any]] | _NestedSequence[_SupportsArray[dtype[Any]]] | complex | bytes | str | _NestedSequence[complex | bytes | str], 1]) – Non-linear encoded data \(X'_{RIMM}\).
bit_depth (int) – Bit-depth used for conversion.
in_int (bool) – Whether to treat the input value as integer code value or floating point equivalent of a code value at a specified bit-depth.
E_clip (float) – Maximum exposure limit.
- Returns:
Linear data \(X_{RIMM}\).
- Return type:
Notes
Domain
Scale - Reference
Scale - 1
X_p1
1
Range
Scale - Reference
Scale - 1
X1
1
This definition has an input int switch, thus the domain-range scale information is only specified for the floating point mode.
References
[SWG00]
Examples
>>> cctf_decoding_RIMMRGB(0.291673732475746) 0.1... >>> cctf_decoding_RIMMRGB(74, in_int=True) 0.1...