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

You cannot create a message_filters::subscriber like

message_filters::Subscriber<pcl::PointCloud<pcl::PointXYZRGB> >

because pcl::PointCloud<pcl::PointXYZRGB> itself is not a message type. Try using

message_filters::Subscriber<sensor_msgs::PointCloud2>

and convert to pcl::PointCloud<pcl::PointXYZRGB> in your callback....