From point cloud to laser scan
Hi i can get the point cloud data from the OpenNI driver now, like to convert it into a laser scan.How do you do it? Any suggestions or directions that i can take?
ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange |
Hi i can get the point cloud data from the OpenNI driver now, like to convert it into a laser scan.How do you do it? Any suggestions or directions that i can take?
The pointcloud_to_laserscan package should do what you need.
<launch> <node pkg="nodelet" type="nodelet" name="pointcloud_throttle" args="load pointcloud_to_laserscan/CloudThrottle openni_manager" respawn="true"> <remap from="cloud_in" to="/laser_ReadOut/cloud_pcl"/> <remap from="cloud_out" to="cloud_throttled"/> </node>
<node pkg="nodelet" type="nodelet" name="laserOut" args="load pointcloud_to_laserscan/CloudToScan openni_manager" respawn="true"> <remap from="cloud" to="/cloud_throttled"/> </node>
<node pkg="nodelet" type="nodelet" name="kinect_laser_narrow" args="load pointcloud_to_laserscan/CloudToScan openni_manager" respawn="true"> <remap from="cloud" to="/cloud_throttled"/> <remap from="scan" to="/narrow_scan"/> </node> </launch>
Asked: 2011-07-11 14:24:44 -0600
Seen: 2,916 times
Last updated: Oct 29 '12
Convert point cloud data into laserscan in ROS Indigo
How to use laser_assembler correctly
How to add filter to pointcloud_to_laserscan package and depthimage_to_laserscan package
Building point cloud using input from position, orientation and laser scan data
Problem while converting PointCloud topic into LaserScan topic with roscpp [closed]