Commit
·
1974c83
1
Parent(s):
ac9b7c9
Declare (255, 5, 153), (255, 0, 102) as garbage and (9, 7, 230) as water
Browse files
app.py
CHANGED
@@ -83,8 +83,8 @@ ade_palette = np.array([
|
|
83 |
], dtype=np.uint8)
|
84 |
|
85 |
custom_class_map = {
|
86 |
-
"Garbage": [(255, 8, 41), (235, 255, 7)],
|
87 |
-
"Water": [(0, 102, 200), (11, 102, 255), (31, 0, 255), (10, 0, 255)],
|
88 |
"Grass / Vegetation": [(10, 255, 71), (143, 255, 140)],
|
89 |
"Tree / Natural Obstacle": [(4, 200, 3), (235, 12, 255), (255, 6, 82), (255, 163, 0)],
|
90 |
"Sand / Soil / Ground": [(80, 50, 50), (230, 230, 230)],
|
|
|
83 |
], dtype=np.uint8)
|
84 |
|
85 |
custom_class_map = {
|
86 |
+
"Garbage": [(255, 8, 41), (235, 255, 7), (255, 5, 153), (255, 0, 102)],
|
87 |
+
"Water": [(0, 102, 200), (11, 102, 255), (31, 0, 255), (10, 0, 255), (9, 7, 230)],
|
88 |
"Grass / Vegetation": [(10, 255, 71), (143, 255, 140)],
|
89 |
"Tree / Natural Obstacle": [(4, 200, 3), (235, 12, 255), (255, 6, 82), (255, 163, 0)],
|
90 |
"Sand / Soil / Ground": [(80, 50, 50), (230, 230, 230)],
|