-
Notifications
You must be signed in to change notification settings - Fork 704
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
moveit_grasps tutorial #302
Merged
mlautman
merged 12 commits into
moveit:master
from
henningkayser:pr-moveit_grasps_kinetic
Apr 22, 2019
+172
−0
Merged
Changes from 7 commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
f217aaf
Create moveit_grasps tutorial from README
henningkayser ff58b7c
Rewordings in moveit_grasps tutorial
davetcoleman 6137467
Update links and references
henningkayser 95f9e44
Fix load_panda.launch reference
henningkayser 7af4e34
Upload moveit_grasps.png
henningkayser 48d1b74
Update moveit_grasps main image
henningkayser 80affdd
Remove MoveIt exclamation mark
henningkayser 30c9b1e
Describe grasp components
henningkayser b5c65f3
Fix launch code snippet
henningkayser 3cd5b30
Pr fixup
379fa86
more fixup and added images
745770a
Add moveit_grasps_poses.jpg to repo
henningkayser File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,121 @@ | ||
MoveIt Grasps | ||
======================= | ||
|
||
MoveIt Grasps is a grasp generator for objects such as blocks or cylinders for use with the MoveIt pick and place pipeline. It also contains its own components for filtering grasps based on reachability and approach/retreat motions. | ||
The grasp generation algorithm is based on simple cuboid shapes and does not consider friction cones or other grasp dynamics. | ||
|
||
Its current implementation takes as input a pose of a cuboid, and the cuboid's size, and generates a large number of potential grasp approaches and directions. | ||
Also included is a grasp filter for removing kinematically infeasible grasps via threaded IK solvers. | ||
|
||
.. image:: moveit_grasps.png | ||
:width: 500pt | ||
|
||
Installing MoveIt Grasps | ||
^^^^^^^^^^^^^^^^^^^^^^^^ | ||
|
||
Install From Source | ||
-------------------- | ||
|
||
Clone the `moveit_grasps <https://github.com/ros-planning/moveit_grasps>`_ repository into a `catkin workspace <https://ros-planning.github.io/moveit_tutorials/doc/getting_started/getting_started.html#create-a-catkin-workspace>`_. For this tutorial we use Franka Emika's Panda robot setup from `panda_moveit_config <https://github.com/ros-planning/panda_moveit_config>`_:: | ||
|
||
git clone https://github.com/ros-planning/moveit_grasps | ||
|
||
Use the rosdep tool to automatically install its dependencies:: | ||
|
||
rosdep install --from-paths src --ignore-src --rosdistro kinetic | ||
|
||
Build the workspace:: | ||
|
||
catkin build | ||
|
||
Setup | ||
^^^^^^^^^^^^^^^^ | ||
|
||
Robot-Agnostic Configuration | ||
---------------------------- | ||
|
||
You will first need a configuration file that described your robot's end effector geometry. | ||
Currently an example format can be seen in this repository at `config_robot/panda_grasp_data.yaml <https://github.com/ros-planning/moveit_grasps/blob/kinetic-devel/config_robot/panda_grasp_data.yaml>`_. | ||
See the comments within that file for explanations. | ||
|
||
To load that file at launch, you copy the example in the file `launch/load_panda.launch <https://github.com/ros-planning/moveit_grasps/blob/kinetic-devel/launch/load_panda.launch>`_ where you should see the line:: | ||
|
||
... | ||
|
||
<rosparam command="load" file="$(find moveit_grasps)/config_robot/panda_grasp_data.yaml"/> | ||
|
||
... | ||
|
||
Within that file you will find all of the gripper specific parameters necessary for customizing MoveIt Grasps with any suction or finger gripper. | ||
|
||
These values can be visualized by launching ``grasp_generator_demo.launch``, ``grasp_poses_visualizer_demo.launch``, and ``grasp_pipeline_demo.launch``. | ||
The result should look like the following: | ||
|
||
.. image:: https://raw.githubusercontent.com/ros-planning/moveit_grasps/kinetic-devel/resources/moveit_grasps_poses.jpeg | ||
:width: 500pt | ||
|
||
Some Important Parameters: | ||
--------------------------- | ||
|
||
**grasp_pose_to_eef_transform** | ||
|
||
The ``grasp_pose_to_eef_transform`` represents the transform from the wrist to the end-effector. | ||
This parameter is provided to allow different URDF end effectors to all work together without recompiling code. | ||
In MoveIt the EE always has a parent link, typically the wrist link or palm link. | ||
That parent link should have its Z-axis pointing towards the object you want to grasp i.e. where your pointer finger is pointing. | ||
This is the convention laid out in "Robotics" by John Craig in 1955. | ||
However, a lot of URDFs do not follow this convention, so this transform allows you to fix it. | ||
|
||
Additionally, the x-axis should be pointing up along the grasped object, i.e. the circular axis of a (beer) bottle if you were holding it. | ||
The y-axis should be point towards one of the fingers. | ||
|
||
**Switch from Bin to Shelf Picking** | ||
|
||
The ``setIdealGraspPoseRPY()`` and ``setIdealGraspPose()`` methods in GraspGenerator can be used to select an ideal grasp orientation for picking. | ||
These methods is used to score grasp candidates favoring grasps that are closer to the desired orientation. | ||
This is useful in applications such as bin and shelf picking where you would want to pick the objects from a bin with a grasp that is vertically alligned and you would want to pick obejects from a shelf with a grasp that is horozontally alligned. | ||
|
||
Demo Scripts | ||
^^^^^^^^^^^^ | ||
|
||
There are four demo scripts in this package. To view the tests, first start Rviz with:: | ||
|
||
roslaunch moveit_grasps rviz.launch | ||
|
||
To see the entire MoveIt Grasps pipeline in action:: | ||
|
||
roslaunch moveit_grasps grasp_pipeline_demo.launch | ||
|
||
To visualize gripper specific parameters:: | ||
|
||
roslaunch moveit_grasps grasp_poses_visualizer_demo.launch | ||
|
||
To test just grasp generation for randomly placed blocks:: | ||
|
||
roslaunch moveit_grasps demo_grasp_generator.launch | ||
|
||
To test the grasp filtering:: | ||
|
||
roslaunch moveit_grasps demo_filter.launch | ||
|
||
Grasp Filter | ||
------------ | ||
|
||
When filtered, the colors represent the following: | ||
|
||
* RED - grasp filtered by ik | ||
* PINK - grasp filtered by collision | ||
* MAGENTA - grasp filtered by cutting plane | ||
* YELLOW - grasp filtered by orientation | ||
* BLUE - pregrasp filtered by ik | ||
* CYAN - pregrasp filtered by collision | ||
* GREEN - valid | ||
|
||
Tested Robots | ||
------------- | ||
|
||
* UR5 | ||
* Jaco2 | ||
* Baxter | ||
* `REEM <http://wiki.ros.org/Robots/REEM>`_ | ||
* Panda |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
From looking at the parameter file, the meaning of all those parameters doesn't yet become clear.
I guess the code is limited to parallel-jaw grippers, right? Why, for example, is it required to define the finger width?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I added further parameter description to the example config moveit/moveit_grasps#36. I agree that some of the parameters seem a bit confusing at first but I think the comments should clarify all of them.