-
Notifications
You must be signed in to change notification settings - Fork 2
/
mmseg_labels.py
45 lines (43 loc) · 2.76 KB
/
mmseg_labels.py
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
36
37
38
39
40
41
42
43
44
45
labels_thigh_STANDARD = {
0: {'name': 'Clear Label', 'abbreviation': 'CLR'},
1: {'name': 'Right Rectus Femoris', 'abbreviation': 'RRF'},
2: {'name': 'Right Vastus Medialis', 'abbreviation': 'RVM'},
3: {'name': 'Right Vastus Intermedius', 'abbreviation': 'RVI'},
4: {'name': 'Right Vastus Lateralis', 'abbreviation': 'RVL'},
5: {'name': 'Right Semimembranosus', 'abbreviation': 'RSM'},
6: {'name': 'Right Semitendonosus', 'abbreviation': 'RST'},
7: {'name': 'Right Biceps Femoris', 'abbreviation': 'RBF'},
8: {'name': 'Right Adductor Magnus', 'abbreviation': 'RAM'},
9: {'name': 'Right Sartorius', 'abbreviation': 'RS'},
10: {'name': 'Right Gracilis', 'abbreviation': 'RG'},
11: {'name': 'Right Femur Marrow', 'abbreviation': 'RFM'},
21: {'name': 'Left Rectus Femoris', 'abbreviation': 'LRF'},
22: {'name': 'Left Vastus Medialis', 'abbreviation': 'LVM'},
23: {'name': 'Left Vastus Intermedius', 'abbreviation': 'LVI'},
24: {'name': 'Left Vastus Lateralis', 'abbreviation': 'LVL'},
25: {'name': 'Left Semimembranosus', 'abbreviation': 'LSM'},
26: {'name': 'Left Semitendinosus', 'abbreviation': 'LST'},
27: {'name': 'Left Biceps Femoris', 'abbreviation': 'LBF'},
28: {'name': 'Left Adductor Magnus', 'abbreviation': 'LAM'},
29: {'name': 'Left Sartorius', 'abbreviation': 'LS'},
30: {'name': 'Left Gracilis', 'abbreviation': 'LG'},
31: {'name': 'Left Femur Marrow', 'abbreviation': 'LFM'},
}
labels_calf_STANDARD = {
0: {'name': 'Clear Label', 'abbreviation': 'CLR'},
1: {'name': 'Right Anterior Compartment', 'abbreviation': 'RAC'},
2: {'name': 'Right Peroneus Longus', 'abbreviation': 'RPL'},
3: {'name': 'Right Lateral Gastroc', 'abbreviation': 'RLG'},
4: {'name': 'Right Medial Gastroc', 'abbreviation': 'RMG'},
5: {'name': 'Right Soleus', 'abbreviation': 'RS'},
6: {'name': 'Right Tibialis Posterior', 'abbreviation': 'RTP'},
7: {'name': 'Right Tibia Marrow', 'abbreviation': 'RTM'},
11: {'name': 'Left Anterior Compartment', 'abbreviation': 'LAC'},
12: {'name': 'Left Peroneus Longus', 'abbreviation': 'LPL'},
13: {'name': 'Left Lateral Gastroc', 'abbreviation': 'LLG'},
14: {'name': 'Left Medial Gastroc', 'abbreviation': 'LMG'},
15: {'name': 'Left Soleus', 'abbreviation': 'LS'},
16: {'name': 'Left Tibialis Posterior', 'abbreviation': 'LTP'},
17: {'name': 'Left Tibia Marrow', 'abbreviation': 'LTM'},
}
labels_STANDARD = {'calf': labels_calf_STANDARD, 'thigh': labels_thigh_STANDARD}