pcl::PointCloud vs. sensor_msgs::PointCloud
Obviously they are not the same. Which one should a developer be using?
ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange |
Obviously they are not the same. Which one should a developer be using?
pcl::PointCloud for "working".
sensor_msgs::PointCloud is a message for sending. You can create a pcl::PointCloud publisher that will automatically send out the right data.
So you wonna use sensor_msgs::PointCloud2 (not sensor_msgs::PointCloud as it is deprecated) if you are passing messages between nodes in ROS (e.g. between kinect driver node and your pointcloud processing node). Once your pointcloud node receives the sensor_msgs::PointCloud2 msg you use pcl::fromROSMsg function to convert it to pcl::PointCloud<pointt> (note that it has to be templated) and that can then be used as input to all pcl algorithms. D.
Asked: 2011-07-20 13:50:39 -0600
Seen: 3,143 times
Last updated: Jul 21 '11
Function for unpacking RGB point field from point in point cloud?
How to know which points pcl::PassThrough and pcl::StatisticalOutlierRemoval removes?
How to change the Kinect point cloud resolution
How to display the Kinect point cloud using image colours?
pointcloud_to_laserscan height range
template instantiation problems with new point types
How to transform a point cloud from camera coordinates to world coordinates