colour.models.eotf_inverse_sRGB#

colour.models.eotf_inverse_sRGB(L: Annotated[_Buffer | _SupportsArray[dtype[Any]] | _NestedSequence[_SupportsArray[dtype[Any]]] | complex | bytes | str | _NestedSequence[complex | bytes | str], 1]) Annotated[ndarray[tuple[Any, ...], dtype[float16 | float32 | float64]], 1][source]#

Apply the IEC 61966-2-1:1999 sRGB inverse electro-optical transfer function (EOTF).

Parameters:

L (Annotated[_Buffer | _SupportsArray[dtype[Any]] | _NestedSequence[_SupportsArray[dtype[Any]]] | complex | bytes | str | _NestedSequence[complex | bytes | str], 1]) – Luminance \(L\) of the image.

Returns:

Electrical signal \(V\).

Return type:

numpy.ndarray

Notes

Domain

Scale - Reference

Scale - 1

L

1

1

Range

Scale - Reference

Scale - 1

V

1

1

References

[InternationalECommission99], [InternationalTUnion15b]

Examples

>>> eotf_inverse_sRGB(0.18)
0.4613561...