mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-04-29 10:17:27 +02:00
In addition to COLORSPACES, add VERBOSE_LEVEL, DESCRIBER_TYPES, EXR_STORAGE_DATA_TYPE and RAW_COLOR_INTERPRETATION which are used across several nodes.
15 lines
1 KiB
Python
15 lines
1 KiB
Python
COLORSPACES = ["AUTO", "sRGB", "rec709", "Linear", "ACES2065-1", "ACEScg", "Linear ARRI Wide Gamut 3",
|
|
"ARRI LogC3 (EI800)", "Linear ARRI Wide Gamut 4", "ARRI LogC4", "Linear BMD WideGamut Gen5",
|
|
"BMDFilm WideGamut Gen5", "CanonLog2 CinemaGamut D55", "CanonLog3 CinemaGamut D55",
|
|
"Linear CinemaGamut D55", "Linear V-Gamut", "V-Log V-Gamut", "Linear REDWideGamutRGB",
|
|
"Log3G10 REDWideGamutRGB", "Linear Venice S-Gamut3.Cine", "S-Log3 Venice S-Gamut3.Cine", "no_conversion"]
|
|
|
|
DESCRIBER_TYPES = ["sift", "sift_float", "sift_upright", "dspsift", "akaze", "akaze_liop", "akaze_mldb", "cctag3",
|
|
"cctag4", "sift_ocv", "akaze_ocv", "tag16h5", "unknown"]
|
|
|
|
EXR_STORAGE_DATA_TYPE = ["float", "half", "halfFinite", "auto"]
|
|
|
|
RAW_COLOR_INTERPRETATION = ["None", "LibRawNoWhiteBalancing", "LibRawWhiteBalancing", "DCPLinearProcessing",
|
|
"DCPMetadata", "Auto"]
|
|
|
|
VERBOSE_LEVEL = ["fatal", "error", "warning", "info", "debug", "trace"]
|