How to transform PointCloud2 with TF?
Hi,
I'm writing a small node aggregating data from a Kinect sensor (PointCloud2) taken from different angle of view. I therefore use the tf library to transform all images in the /world frame before aggregating them with the pcl lib.
After looking through tf API doc, I found the TransformListener::transformPointCloud function to tranform PointCloud messages but nothing to transform PointCloud2 messages. I am therefore using a code like this:
sensor_msgs::convertPointCloud2ToPointCloud(pc2SensorFrame,pcSensorFrame)
TfListener.transformPointCloud("/world", pcSensorFrame, pcWorldFrame);
sensor_msgs::convertPointCloudToPointCloud2(pcWorldFrame,pc2WorldFrame)
pcl::fromROSMsg(pc2WorldFrame,pclCloud);
It seems to work but I was wondering if there was a more direct way to transform PointCloud2 with tf avoiding the conversion in PointCloud.
Thanks