ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange
Ask Your Question
5

MoveIt! tutorial: Sensor integration

asked 2013-05-17 10:18:42 -0500

t.pimentel gravatar image

updated 2014-01-28 17:16:33 -0500

ngrennan gravatar image

Hi,

I'm having a problem in integrating the rgbd sensor to run in MoveIt!/Gazebo.

I followed the MoveIt! Quick Start tutorials and when I try to execute:
roslaunch pr2_moveit_generated moveit_planning_execution.launch
The code runs, but it gives me an error saying:

[ERROR] [1368820859.153297045, 992.717000000]: No sensor plugin specified for octomap updater 0; ignoring.

The entire initial output about the scene monitor is:

[ INFO] [1368820859.137703184, 992.713000000]: Starting scene monitor
[ INFO] [1368820859.140261001, 992.713000000]: Listening to 'planning_scene'
[ INFO] [1368820859.140364044, 992.713000000]: Starting world geometry monitor
[ INFO] [1368820859.142811100, 992.715000000]: Listening to 'collision_object' using message notifier with target frame '/odom_combined '
[ INFO] [1368820859.144858709, 992.715000000]: Listening to 'collision_map' using message notifier with target frame '/odom_combined '
[ INFO] [1368820859.146865334, 992.715000000]: Listening to 'planning_scene_world' for planning scene world geometry
[ERROR] [1368820859.15
3297045, 992.717000000]: No sensor plugin specified for octomap updater 0; ignoring. [ INFO] [1368820859.501966978, 992.790000000]: Listening to 'attached_collision_object' for attached collision objects [ INFO] [1368820859.502099335, 992.790000000]: MoveGroup context using planning plugin ompl_interface/OMPLPlanner [ INFO] [1368820859.502171944, 992.790000000]: MoveGroup context initialization complete


After I change the 'Planning Scene Topic' field to '/move_group/monitored_planning_scene' it outputs:

[ INFO] [1368821318.083208203, 1130.849000000]: Starting scene monitor
[ INFO] [1368821318.083369548, 1130.849000000]: Listening to '/move_group/monitored_planning_scene'

But nothing happens, no data is shown in the RViz window. Anyone know how can I fix this? There were no problems until this part in the tutorial.

Thanks!

edit retag flag offensive close merge delete

Comments

I have the same issue

curious andrew gravatar image curious andrew  ( 2013-05-21 12:53:43 -0500 )edit

1 Answer

Sort by » oldest newest most voted
9

answered 2013-05-22 01:59:54 -0500

fivef gravatar image

updated 2013-05-22 02:11:15 -0500

In config/sensors_rgbd.yaml (file specified in launch/<robot>_moveit_sensor_manager.launch) replace

- sensor_type: point_cloud_sensor with

- sensor_plugin: occupancy_map_monitor/PointCloudOctomapUpdater

Hint from MoveIt Google Group (sorry not enough karma to publish links...)

Here my working sensors_rgbd.yaml

 sensors:
  - sensor_plugin: occupancy_map_monitor/PointCloudOctomapUpdater
    point_cloud_topic: /kinect/depth_registered/points
    max_range: 5.0
    frame_subsample: 1
    point_subsample: 1
    self_mask:
        min_sensor_dist: .8
        self_see_default_padding: .04
        self_see_default_scale: 1.0
        self_see_links:
            - name: katana_internal_controlbox_link 
            - name: katana_base_link
            - name: katana_motor1_pan_link
            - name: katana_motor2_lift_link
              padding: 0.06
            - name: katana_motor3_lift_link
              padding: 0.06
            - name: katana_motor4_lift_link
              padding: 0.06
            - name: katana_motor5_wrist_roll_link
              padding: 0.04
            - name: katana_gripper_link
              padding: 0.02
            - name: katana_l_finger_link
              padding: 0.02
            - name: katana_r_finger_link
              padding: 0.02
            - name: kurtana_baseplate_link
            - name: laser
            - name: kurtana_pole_link
            - name: kurtana_innerpole_stretch_link
edit flag offensive delete link more

Question Tools

4 followers

Stats

Asked: 2013-05-17 10:18:42 -0500

Seen: 4,893 times

Last updated: May 22 '13