colour.ootf_inverse#
- colour.ootf_inverse(value: ArrayLike, function: LiteralOOTFInverse | str = 'ITU-R BT.2100 PQ', **kwargs: Any) NDArrayFloat[source]#
Apply the specified inverse opto-optical transfer function (OOTF).
- Parameters:
value (ArrayLike) – Display-linear value.
function (LiteralOOTFInverse | str) – Inverse opto-optical transfer function (OOTF).
kwargs (Any) – {
colour.models.ootf_inverse_BT2100_HLG(),colour.models.ootf_inverse_BT2100_PQ()}, See the documentation of the previously listed definitions.
- Returns:
Scene-linear value.
- Return type:
Examples
>>> ootf_inverse(779.988360834115840) 0.1000000... >>> ootf_inverse( ... 63.095734448019336, function="ITU-R BT.2100 HLG" ... ) 0.1000000...