ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange |
1 | initial version |
which is the scanner you are using? The output is usually ideally laserscan msg under /scan topic. If you get pointcloud msg you can do somethinglike this. This is example for using kinect as a fake laser scanner source.
<node pkg="depthimage_to_laserscan" type="depthimage_to_laserscan" name="depthimage_to_laserscan">
<remap from="image" to="/camera/depth/depth_registered"/>
<remap from="camera_info" to="/camera/depth/camera_info"/>
<remap from="scan" to="/scan"/>
</node>
2 | No.2 Revision |
which is the scanner you are using? The output is usually ideally laserscan msg under /scan topic. If you get pointcloud msg you can do somethinglike something like this. This is example for using kinect as a fake laser scanner source.
<node pkg="depthimage_to_laserscan" type="depthimage_to_laserscan" name="depthimage_to_laserscan">
<remap from="image" to="/camera/depth/depth_registered"/>
<remap from="camera_info" to="/camera/depth/camera_info"/>
<remap from="scan" to="/scan"/>
</node>