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.
- Is there a way to disable the collision checking on gripper?
- Where can I find the definition of the link group "arm" and "arm_with_torso"?
Thank you very much!