robocup_knowledge
rwc2015/challenge_manipulation.py
Go to the documentation of this file.
1 ''' Cabinet used for the challenge '''
2 cabinet = "bookcase"
3 
4 ''' Shelves where objects might be '''
5 object_shelves =[cabinet + "/shelf6", cabinet + "/shelf7", cabinet + "/shelf8"]
6 
7 ''' Shelf where we will actually try to grasp '''
8 grasp_shelf = cabinet + "/shelf6"
9 
10 ''' Shelf where we will actually place stuff '''
11 place_shelf = cabinet + "/shelf5"
12 
13 ''' Room where everything will take place '''
14 room = "hallway"
15 
16 '''Object types that can be recognized'''
17 object_types = ['pure_milk', 'orange_juice', 'sponge', 'papaya_milk', 'apple', 'tomato_chips', 'lemon', 'toothpaste',
18  'chocolates', 'bowl', 'beer', 'toilet_paper', 'soap', 'plate', 'pear', 'lotion', 'water', 'cloth',
19  'green_tea', 'gram_soup', 'bubble_gum', 'bean_sauce', 'barbecue_chips', 'tray', 'coconut_cereals',
20  'egg_stars', 'honey_chips', 'coco_balls', 'biscuits']