robocup_knowledge
robotics_testlabs/challenge_manipulation.py
Go to the documentation of this file.
1 # Entity where the shelves are part of
2 cabinet_slam = "bookcase"
3 cabinet_amcl = "bookcase"
4 
5 # Shelves where objects might be
6 # object_shelves = ["bookcase/shelf2", "bookcase/shelf3"]
7 object_shelves = ["shelf1", "shelf3", "shelf4"]
8 
9 # Shelf where we will actually try to grasp
10 # grasp_shelf = "bookcase/shelf2"
11 grasp_shelf = "shelf3"
12 
13 # Shelf where we will actually place stuff
14 place_shelf = "shelf2"
15 
16 # Room where everything will take place
17 room = "livingroom"
18 
19 # Object types that can be recognized
20 object_types = ['beer', 'bifrutas', 'coffee_pads', 'coke',
21  'deodorant', 'fanta', 'ice_tea', 'mentos',
22  'sprite', 'tea', 'teddy_bear', 'water',
23  'xylit24_spearmint', 'xylit24_white']
24 
25 # Minimum and maximum height from which to grab an object
26 min_grasp_height = 0.0 # ToDo
27 max_grasp_height = 1.5 # ToDo