-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathglobal_var.py
98 lines (90 loc) · 5.1 KB
/
global_var.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
# These are not used anymore here, just leave it as it is
SHAPENETV2_ROOT=""
SHAPENETV1_ROOT=""
ModelNet40_ROOT=""
CLASSES_ModelNet10 = {
0: 'bathtub',
1: 'chair',
2: 'dresser',
3: 'night_stand',
4: 'sofa',
5: 'toilet',
6: 'bed',
7: 'desk',
8: 'monitor',
9: 'table'
}
CLASSES_ModelNet40 = {
0:'airplane', 1:'bathtub', 2:'bed', 3:'bench',
4:'bookshelf', 5:'bottle', 6:'bowl', 7:'car',
8:'chair', 9:'cone', 10:'cup', 11:'curtain',
12:'desk', 13:'door', 14:'dresser', 15:'flower_pot',
16:'glass_box', 17:'guitar', 18:'keyboard', 19:'lamp',
20:'laptop', 21:'mantel', 22:'monitor', 23:'night_stand',
24:'person', 25:'piano', 26:'plant', 27:'radio',
28:'range_hood', 29:'sink', 30:'sofa', 31:'stairs',
32:'stool', 33:'table', 34:'tent', 35:'toilet',
36:'tv_stand', 37:'vase', 38:'wardrobe', 39:'xbox'
}
CLASSES_SHAPENET = {0: '02691156', 1: '02747177', 2: '02773838', 3: '02801938',
4: '02808440', 5: '02818832', 6: '02828884', 7: '02843684',
8: '02871439', 9: '02876657',10: '02880940',11: '02924116',
12:'02933112',13: '02942699',14: '02946921',15: '02954340',
16:'02958343',17: '02992529',18: '03001627',19: '03046257',
20:'03085013',21: '03207941',22: '03211117',23: '03261776',
24:'03325088',25: '03337140',26: '03467517',27: '03513137',
28:'03593526',29: '03624134',30: '03636649',31: '03642806',
32:'03691459',33: '03710193',34: '03759954',35: '03761084',
36:'03790512',37:'03797390',38:'03928116',39:'03938244',
40:'03948459',41:'03991062',42:'04004475',43:'04074963',
44:'04090263',45:'04099429',46:'04225987',47:'04256520',
48:'04330267',49:'04379243',50:'04401088',51:'04460130',
52:'04468005',53:'04530566',54:'04554684'
}
CLASSES_SHAPENET_NUMBER = {'02691156':0, '02747177':1, '02773838':2, '02801938':3,
'02808440':4, '02818832':5, '02828884':6, '02843684':7,
'02871439':8, '02876657':9, '02880940':10, '02924116':11,
'02933112':12, '02942699':13, '02946921':14, '02954340':15,
'02958343':16, '02992529':17, '03001627':18, '03046257':19,
'03085013':20, '03207941':21, '03211117':22, '03261776':23,
'03325088':24, '03337140':25, '03467517':26, '03513137':27,
'03593526':28, '03624134':29, '03636649':30, '03642806':31,
'03691459':32, '03710193':33, '03759954':34, '03761084':35,
'03790512':36, '03797390':37, '03928116':38, '03938244':39,
'03948459':40, '03991062':41, '04004475':42, '04074963':43,
'04090263':44, '04099429':45, '04225987':46, '04256520':47,
'04330267':48, '04379243':49, '04401088':50, '04460130':51,
'04468005':52, '04530566':53, '04554684':54
}
CLASSES_SHAPENET_V1 = {0: '02691156', 1: '02747177', 2: '02773838', 3: '02801938',
4: '02808440', 5: '02818832', 6: '02828884', 7: '02843684',
8: '02871439', 9: '02876657',10: '02880940',11: '02924116',
12:'02933112',13: '02942699',14: '02946921',15: '02954340',
16:'02958343',17: '02992529',18: '03001627',19: '03046257',
20:'03085013',21: '03207941',22: '03211117',23: '03261776',
24:'03325088',25: '03337140',26: '03467517',27: '03513137',
28:'03593526',29: '03624134',30: '03636649',31: '03642806',
32:'03691459',33: '03710193',34: '03759954',35: '03761084',
36:'03790512',37:'03797390',38:'03928116',39:'03938244',
40:'03948459',41:'03991062',42:'04004475',43:'04074963',
44:'04090263',45:'04099429',46:'04225987',47:'04256520',
48:'04330267',49:'04379243',50:'04401088',51:'04460130',
52:'04468005',53:'04530566',54:'04554684',55:'02834778',
56:'02858304'
}
CLASSES_SHAPENET_NUMBER_V1 = {'02691156':0, '02747177':1, '02773838':2, '02801938':3,
'02808440':4, '02818832':5, '02828884':6, '02843684':7,
'02871439':8, '02876657':9, '02880940':10, '02924116':11,
'02933112':12, '02942699':13, '02946921':14, '02954340':15,
'02958343':16, '02992529':17, '03001627':18, '03046257':19,
'03085013':20, '03207941':21, '03211117':22, '03261776':23,
'03325088':24, '03337140':25, '03467517':26, '03513137':27,
'03593526':28, '03624134':29, '03636649':30, '03642806':31,
'03691459':32, '03710193':33, '03759954':34, '03761084':35,
'03790512':36, '03797390':37, '03928116':38, '03938244':39,
'03948459':40, '03991062':41, '04004475':42, '04074963':43,
'04090263':44, '04099429':45, '04225987':46, '04256520':47,
'04330267':48, '04379243':49, '04401088':50, '04460130':51,
'04468005':52, '04530566':53, '04554684':54, '02834778':55,
'02858304':56
}