sbgisen / moveit

:robot: The MoveIt motion planning framework
http://moveit.ros.org/
BSD 3-Clause "New" or "Revised" License
0 stars 1 forks source link

visualize URDF with padded/scaled collision #13

Closed jsupratman13 closed 9 months ago

jsupratman13 commented 9 months ago

Description

To scale/padd the robot's collision you can create a padding.yaml file with the following parameters

default_padding: 0.0
default_robot_scale: 0.5

default_robot_link_padding:
  head_pan_link: 0.02
  head_tilt_link: 0.01

default_robot_link_scale:
  head_pan_link: 1.1
  head_tilt_link: 0.9

Then load the configuration file via rosparam

<group ns="$(arg robot_description)_planning">
  (...)
  <rosparam command="load" file="$(find xxx_moveit_config)/config/paddings.yaml"/>
</group>

Checklist