-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathifl_labels.py
102 lines (100 loc) · 2.53 KB
/
ifl_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
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
99
100
101
102
#!/usr/bin/env python
IFL_SCENE_RECORDING = {
"cracker_box" : "097",
"sugar_box" : "001",
"tomato_soup_can" : "002",
"mustard_bottle" : "003",
"potted_meat_can" : "004",
"banana" :"005",
"bowl" : "006",
"mug" :"007",
"power_drill" : "008",
"scissor" : "009",
"chips_can" :"010",
"strawberry" :"011",
"apple" : "012",
"lemon" : "013",
"peach" : "014",
"pear" : "015",
"orange" : "016",
"plum" : "017",
"knife" : "018",
"phillips_screwdriver" : "019",
"flat_screwdriver" : "020",
"racquetball" :"021",
"b_cups" : "022",
"d_cups" : "023",
"a_toy_airplane" : "024",
"c_toy_airplane" : "025",
"d_toy_airplane" : "026",
"f_toy_airplane" : "027",
"h_toy_airplane" : "028",
"i_toy_airplane" : "029",
"j_toy_airplane" : "030",
"k_toy_airplane" : "031",
"light_bulb" : "032",
"kitchen_knife" : "034",
"screw_valve" : "035",
"plastic_pipes" :"036",
"cables_in_transparent_bag" : "037",
"cables" : "038",
"wire_cutter" : "039",
"desinfection" : "040",
"hairspray" : "041",
"handcream" : "042",
"toothpaste" : "043",
"toydog" : "044",
"sponge" : "045",
"pneumatic_cylinder" : "046",
"airfilter" : "047",
"coffeefilter" : "048",
"wash_glove" : "049",
"wash_sponge" : "050",
"garbage_bags" : "051",
"deo" : "052",
"cat_milk" : "053",
"bottle_glass" : "054",
"bottle_press_head" : "055",
"shaving_cream" : "056",
"chewing_gum_with_spray" : "057",
"lighters" : "058",
"cream_soap" : "059",
"box_1" : "060",
"box_2" : "061",
"box_3" : "062",
"box_4" : "063",
"box_5" : "064",
"box_6" : "065",
"box_7" : "066",
"box_8" : "067",
"glass_cup" : "068",
"tennis_ball" : "069",
"cup" : "070",
"wineglass" : "071",
"handsaw" : "072",
"lipcare" : "073",
"woodcube_a" : "074",
"lipstick" : "075",
"nosespray" : "076",
"tape" : "077",
"bookholder" : "078",
"clamp" : "079",
"glue" : "080",
"stapler" : "081",
"calculator" : "082",
"clamp_small" : "083",
"clamp_big" : "084",
"glasses" : "085",
"crayons" : "086",
"marker_big" : "087",
"marker_small" : "088",
"greek_busts" : "089",
"object_wrapped_in_foil" : "090",
"water_bottle_deformed" : "091",
"bubble_wrap" : "092",
"woodblock_a" : "093",
"woodblock_b" : "094",
"woodblock_c" : "095",
"mannequin" : "096"
}
IFL_SYNSET_TO_LABEL = {v: k for k, v in IFL_SCENE_RECORDING.items()}