-
Notifications
You must be signed in to change notification settings - Fork 150
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
How disable moveit collision checking on fetch's gripper? #127
Comments
I guess I'll need to make a github issue template for questions... Please let me know the basics:
|
@moriarty Hi Alex, I am using
I am working on robot grasping. What I want to achieve is that, under moveit active sensing,
Is this possible in python script? Besides, I was also wondering how to give a namespace to the real fetch robot. The robot automatically publishes topics when it boots, so it doesn't work that just setting namespace variable in '.bashrc' file. Thank you! |
Okay, sorry for the delayed response.
What you'll want is to allow collisions between the gripper and the object which has been grasped, and move the object which has been grasped from a collision object to a attached object. the 'touch_links' argument is what you'll want to set this will allow some links to touch but not to completely disable collision checking. There is also a moveit_python package which has wrapper functions for this. I recommend searching for We recently had an intern make a demo, but her internship time finished before the code was completely documented |
Hi all,
I would like to use moveit group to do motion planning for fetch's arm without considering the collision on its gripper.
I first enable the moveit active sensing, and then create the move_group by either:
move_group = MoveGroupInterface("arm", "base_link")
or
move_group = moveit_commander.MoveGroupCommander("arm")
However, the motion planner will always consider the collision between the gripper and the environment.
Thank you very much!
The text was updated successfully, but these errors were encountered: