Realistic-Occlusion-Dataset / classes_rod.py
Ariel Lee
Upload 3 files
32c59c6
raw
history blame contribute delete
No virus
432 Bytes
from collections import OrderedDict
ROD_CLASSES = OrderedDict(
{
1: "banana",
2: "baseball",
3: "cowboy hat",
4: "cup",
5: "dumbbell",
6: "hammer",
7: "laptop",
8: "microwave",
9: "mouse",
10: "orange",
11: "pillow",
12: "plate",
13: "screwdriver",
14: "skillet",
15: "spatula",
16: "vase",
}
)