colour.log_decoding#

colour.log_decoding(value: _SupportsArray[dtype[Any]] | _NestedSequence[_SupportsArray[dtype[Any]]] | bool | int | float | complex | str | bytes | _NestedSequence[bool | int | float | complex | str | bytes], function: Literal['ACEScc', 'ACEScct', 'ACESproxy', 'ARRI LogC3', 'ARRI LogC4', 'Apple Log Profile', 'Canon Log', 'Canon Log 2', 'Canon Log 3', 'Cineon', 'D-Log', 'ERIMM RGB', 'F-Log', 'F-Log2', 'Filmic Pro 6', 'L-Log', 'Log2', 'Log3G10', 'Log3G12', 'N-Log', 'PLog', 'Panalog', 'Protune', 'REDLog', 'REDLogFilm', 'S-Log', 'S-Log2', 'S-Log3', 'T-Log', 'V-Log', 'ViperLog'] | str = 'Cineon', **kwargs: Any) ndarray[Any, dtype[float16 | float32 | float64]][source]#

Decode \(R'G'B'\) video component signal value to scene-referred exposure values using given log decoding function.

Parameters:
Returns:

Scene-referred exposure values.

Return type:

numpy.ndarray

Examples

>>> log_decoding(0.457319613085418)  
0.1...
>>> log_decoding(0.413588402492442, function="ACEScc")
... 
0.1...
>>> log_decoding(0.391006842619746, function="PLog", log_reference=400)
... 
0.1...
>>> log_decoding(0.376512722254600, function="S-Log")
... 
0.1...