-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlabel_map.py
More file actions
35 lines (35 loc) · 1.14 KB
/
label_map.py
File metadata and controls
35 lines (35 loc) · 1.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
LABEL_COLOR_MAP = {-1: 'gray',
0: 'red',
1: 'mediumblue',
2: 'green',
3: 'yellow',
4: 'magenta',
5: 'cyan',
6: 'wheat',
7: 'yellowgreen',
8: 'orchid',
9: 'tab:orange',
10: 'tab:brown',
11: 'tab:pink',
12: 'lime',
13: 'silver',
14: 'khaki',
15: 'lightgreen',
16: 'orangered',
17: 'salmon',
18: 'tab:purple',
19: 'turquoise',
20: 'royalblue',
21: 'beige',
22: 'crimson',
23: 'indigo',
24: 'darkblue',
25: 'gold',
26: 'ivory',
27: 'lavender',
28: 'lightblue',
29: 'olive',
30: 'sienna',
31: 'salmon',
32: 'turquoise',
}