Splittend in several files
This commit is contained in:
44
src/river_annotation_tool/config.py
Normal file
44
src/river_annotation_tool/config.py
Normal file
@@ -0,0 +1,44 @@
|
||||
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",
|
||||
}
|
||||
Reference in New Issue
Block a user