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

Revision history [back]

click to hide/show revision 1
initial version

The laser_assembler node publishes to the assembled_cloud topic. You can then subscribe to this topic to gain access to the data in a ROS node. The assembled_cloud message is of the type sensor_msgs/PointCloud. You could use something like:

cloud_sub_ = node_.subscribe<sensor_msgs::PointCloud> ("/assembled_cloud", 100, &MyNode::CloudCallback, this);