software:cram:tutorials:pick-and-place-primer
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
software:cram:tutorials:pick-and-place-primer [2013/03/26 10:29] – winkler | software:cram:tutorials:pick-and-place-primer [2016/05/19 09:19] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 11: | Line 11: | ||
==== Prerequisites ==== | ==== Prerequisites ==== | ||
- | It is assumed that you successfully completed the [[software: | + | It is assumed that you successfully completed the [[software: |
==== Getting the Code ==== | ==== Getting the Code ==== | ||
To download the lesson, in your ROS workspace, do the following: | To download the lesson, in your ROS workspace, do the following: | ||
- | < | + | < |
$ rosws set lesson01 --git https:// | $ rosws set lesson01 --git https:// | ||
$ rosws update lesson01 | $ rosws update lesson01 | ||
+ | $ source ~/.bashrc # To reread the available ROS packages in the package path | ||
</ | </ | ||
If you're not using rosws, although it is strongly recommended, | If you're not using rosws, although it is strongly recommended, | ||
Line 23: | Line 24: | ||
==== Preparation ==== | ==== Preparation ==== | ||
To make sure that all software modules are built correctly and all dependencies are met, do | To make sure that all software modules are built correctly and all dependencies are met, do | ||
- | < | + | < |
$ rosmake lesson01 | $ rosmake lesson01 | ||
</ | </ | ||
Line 30: | Line 31: | ||
==== Getting started ==== | ==== Getting started ==== | ||
First, start the Slime REPL. This is the command line from which you will execute Lisp code and control the CRAM system. If you get lost when using Emacs, [[http:// | First, start the Slime REPL. This is the command line from which you will execute Lisp code and control the CRAM system. If you get lost when using Emacs, [[http:// | ||
- | < | + | < |
$ rosrun roslisp_repl repl | $ rosrun roslisp_repl repl | ||
</ | </ | ||
- | Now, load the lesson code. In order to do so, press ',' | + | Now, load the lesson code. In order to do so, press '','' when the '' |
< | < | ||
Command: ros-load-system | Command: ros-load-system | ||
Line 46: | Line 47: | ||
ROS package `lesson01', | ROS package `lesson01', | ||
</ | </ | ||
- | by just pressing Return again. This will load the ASDF system | + | by just pressing Return again. This will load the ASDF system |
If everything went well, you should see something similar to the following: | If everything went well, you should see something similar to the following: | ||
{{ : | {{ : | ||
- | To get into the correct lesson package, press ',', | + | To get into the correct lesson package, press '','', enter ''!p'', press Return and enter: |
< | < | ||
Package: LESSON01 | Package: LESSON01 | ||
Line 57: | Line 58: | ||
From now on, you will have a prompt like | From now on, you will have a prompt like | ||
- | < | + | < |
LESSON01> | LESSON01> | ||
</ | </ | ||
Line 64: | Line 65: | ||
=== Starting the simulation environment === | === Starting the simulation environment === | ||
Now, back in the terminal, start | Now, back in the terminal, start | ||
- | < | + | < |
$ roslaunch lesson01 lesson01.launch | $ roslaunch lesson01 lesson01.launch | ||
- | </ | + | </ |
- | ((mug (object `((desig-props:name " | + | |
- | (cram-plan-library: | + | This will start Gazebo, spawn a PR2 robot and a table with two mugs on it. |
+ | {{ :software: | ||
+ | The PR2 and the mugs are dynamic objects while the table is fixed to the ground, i.e. you can't move it. (If you encounter problems with parts of the simulation not showing up correctly, see [[pick-and-place-primer# Pitfalls and known issues |here]].) | ||
- | This will start Gazebo, spawn a PR2 robot and a table with two mugs on it.{{ : | ||
- | The PR2 and the mugs are dynamic objects while the table is fixed to the ground, i.e. you can't move it. | ||
In yet another terminal, open rviz: | In yet another terminal, open rviz: | ||
- | < | + | < |
$ rosrun rviz rviz | $ rosrun rviz rviz | ||
</ | </ | ||
- | This will show you the PR2 model and the bottom map [[software: | + | This will show you the PR2 model and the bottom map [[software: |
{{ : | {{ : | ||
- | Together with Gazebo, an instance of the [[http:// | + | Together with Gazebo, an instance of the [[http:// |
- | < | + | < |
LESSON01> | LESSON01> | ||
</ | </ | ||
You will see output similar to this: | You will see output similar to this: | ||
- | < | + | < |
[(LESSON01) INFO] 1364288497.123: | [(LESSON01) INFO] 1364288497.123: | ||
[(ROSLISP TOP) INFO] 1364288497.331: | [(ROSLISP TOP) INFO] 1364288497.331: | ||
Line 103: | Line 104: | ||
[(ROSNODE) INFO] 445.747: ROS init #< | [(ROSNODE) INFO] 445.747: ROS init #< | ||
</ | </ | ||
- | The second line, starting with "Node name is" | + | The second line, starting with '' |
To try out whether the components are connected properly, you can use the Gazebo/CRAM interface to get the pose of one of the mugs: | To try out whether the components are connected properly, you can use the Gazebo/CRAM interface to get the pose of one of the mugs: | ||
- | < | + | < |
LESSON01> | LESSON01> | ||
</ | </ | ||
which should now yield the pose for the mug in question: | which should now yield the pose for the mug in question: | ||
- | < | + | < |
#< | #< | ||
| | ||
Line 119: | Line 120: | ||
==== The Semantic Environment ==== | ==== The Semantic Environment ==== | ||
- | The given lesson environment includes a simplistic semantic map for the scene. It includes the table which is placed in front of the PR2 robot. In terms of the semantic map, this table is called | + | The given lesson environment includes a simplistic semantic map for the scene. It includes the table which is placed in front of the PR2 robot. In terms of the semantic map, this table is called |
{{ : | {{ : | ||
- | This display type can visualize ROS messages of type "//visualization_msgs:: | + | This display type can visualize ROS messages of type '' |
{{ : | {{ : | ||
You can now visualize the semantic map using the following code from the REPL: | You can now visualize the semantic map using the following code from the REPL: | ||
- | < | + | < |
LESSON01> | LESSON01> | ||
</ | </ | ||
Line 132: | Line 133: | ||
{{ : | {{ : | ||
- | Adding another display entity of type "//CollisionMap//" | + | Adding another display entity of type '' |
- | < | + | < |
LESSON01> | LESSON01> | ||
(with-designators ((loc (location `((desig-props: | (with-designators ((loc (location `((desig-props: | ||
Line 142: | Line 143: | ||
{{ : | {{ : | ||
and a pose on the table which was drawn from the shown samples, i.e. | and a pose on the table which was drawn from the shown samples, i.e. | ||
- | < | + | < |
#< | #< | ||
| | ||
Line 155: | Line 156: | ||
* object-in-hand | * object-in-hand | ||
- | The function | + | The function |
- | < | + | < |
LESSON01> | LESSON01> | ||
+ | (move-away-arms) | ||
(with-process-modules | (with-process-modules | ||
(with-designators | (with-designators | ||
Line 164: | Line 166: | ||
</ | </ | ||
This results in an object designator description defining the object in question: | This results in an object designator description defining the object in question: | ||
- | < | + | < |
#< | #< | ||
#< | #< | ||
Line 176: | Line 178: | ||
</ | </ | ||
- | The //object-in-hand// function is actually a goal the robot tries to achieve. It is called using | + | The '' |
- | < | + | < |
LESSON01> | LESSON01> | ||
+ | (move-away-arms) | ||
(with-process-modules | (with-process-modules | ||
(with-designators | (with-designators | ||
Line 188: | Line 191: | ||
Either function relies on whether the robot stands at a position from where it probably can see or reach the location on the table. A location costmap is generated for locations to stand at and a random weighted sample is drawn from this probability distribution: | Either function relies on whether the robot stands at a position from where it probably can see or reach the location on the table. A location costmap is generated for locations to stand at and a random weighted sample is drawn from this probability distribution: | ||
{{ : | {{ : | ||
+ | |||
+ | In the lesson code (specifically in '' | ||
+ | <code lisp> | ||
+ | (defun get-mug-1 () | ||
+ | ...) | ||
+ | </ | ||
+ | |||
+ | You can call this function by simply starting it from the REPL: | ||
+ | <code lisp> | ||
+ | LESSON01> | ||
+ | </ | ||
+ | It will also take care of functions like moving the robot' | ||
+ | The PR2 will drive around and will try to get into a suitable position for grasping. It then will try to grasp the object. | ||
+ | |||
+ | Once the object is being grasped, the robot will execute a motion to achieve the following grasp and carrying pose: | ||
+ | |||
+ | {{ : | ||
+ | {{ : | ||
+ | |||
+ | === Handle-based grasping === | ||
+ | The fact that the PR2 grasps the mug on it's handle results from two things: | ||
+ | * An extensive reasoning machinery that checks for the existance of handles on an object to grasp, plus an algorithm that calculates the respective grasp poses | ||
+ | * The definition of the object handle in the source code | ||
+ | |||
+ | The system relies on information given to it about handles. This information if thought to be stored in an external knowledge source such as [[software: | ||
+ | |||
+ | The important part in the source code for handle definition is found here: | ||
+ | <code lisp> | ||
+ | (with-designators | ||
+ | ((handle-loc (location | ||
+ | `((desig-props: | ||
+ | , | ||
+ | | ||
+ | -0.12 0.0 0.07) | ||
+ | | ||
+ | :ax (/ pi 2))))))) | ||
+ | | ||
+ | `((desig-props: | ||
+ | (desig-props: | ||
+ | (mug (object `((desig-props: | ||
+ | (desig-props: | ||
+ | </ | ||
+ | |||
+ | The variable '' | ||
+ | |||
+ | '' | ||
+ | |||
+ | |||
+ | ==== Completing the Pick and Place Task ==== | ||
+ | To make the robot execute the task at hand, the function '' | ||
+ | <code lisp> | ||
+ | LESSON01> | ||
+ | </ | ||
+ | |||
+ | During the runtime of this function, the robot will try to get hold of the object (i.e., pick it up) and then put it down on a different spot of the table. | ||
+ | |||
+ | Since finding a good spot to put the object down on the table isn't that easy, it is possible that the PR2 will drive around a bit and try different spots before it finds a suitable location. | ||
+ | |||
+ | For putting down the object, the same techniques with respect to location costmaps are used as in the pick-up part of this tutorial. | ||
+ | |||
+ | ==== Pitfalls and known issues ==== | ||
+ | In case the table doesn' | ||
+ | |||
+ | {{ : | ||
+ | |||
+ | Just close the Gazebo window and restart the client, using: | ||
+ | <code bash> | ||
+ | $ `rospack find gazebo`/ | ||
+ | </ | ||
+ | The (simulated) table is physically there, but the visual is missing. The simulation could go on without it, but for the scenery' | ||
+ | |||
+ | --- // |
software/cram/tutorials/pick-and-place-primer.1364293742.txt.gz · Last modified: 2016/05/19 09:18 (external edit)