class Config: DISPLAY_MAX = 480 FPS_FALLBACK = 25 MAX_FRAMES = 100 QUESTIONS = [ ( "River", [ ("flow", "Flow Regime", ["Turbulent", "Laminar", "Uncertain"]), ("shadows", "Strong Shadows", ["Yes", "No", "Uncertain"]), ("artifacts", "Artifacts on River", ["Yes", "No", "Uncertain"]), ], ), ( "Scene", [ ("lighting", "Lighting", ["Day", "Night", "Uncertain"]), ( "exposure", "Exposure", ["Overexposed", "Underexposed", "Both", "Normal", "Uncertain"], ), ], ), ( "Weather", [ ("snowing", "Snowing", ["Yes", "No", "Uncertain"]), ("snow_on_ground", "Snow on Ground", ["Yes", "No", "Uncertain"]), ], ), ] DEFAULTS = { "flow": "Laminar", "shadows": "No", "artifacts": "No", "lighting": "Day", "exposure": "Normal", "snowing": "No", "snow_on_ground": "No", }