mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-05-14 01:26:55 +02:00
[core] utils.py
: Add new utilitary constants for ChoiceParams
In addition to COLORSPACES, add VERBOSE_LEVEL, DESCRIBER_TYPES, EXR_STORAGE_DATA_TYPE and RAW_COLOR_INTERPRETATION which are used across several nodes.
This commit is contained in:
parent
f970ff89f9
commit
b8d14fe6be
1 changed files with 10 additions and 0 deletions
|
@ -3,3 +3,13 @@ COLORSPACES = ["AUTO", "sRGB", "rec709", "Linear", "ACES2065-1", "ACEScg", "Line
|
|||
"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"]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue