RavindranadhM's picture
Add steel surface gate before defect segmentation
fb4ca0a verified
Raw
History Blame Contribute Delete
255 Bytes
"""
Project-wide constants (no logic here).
"""
SEVERITY_SCORE = {
"Minor": 1,
"Moderate": 2,
"Critical": 3
}
DECISION_COLOR = {
"PASS": (0, 255, 0),
"REVIEW": (0, 165, 255),
"FAIL": (0, 0, 255),
"SKIPPED": (255, 191, 0),
}