unexpected output from laser assembler
Hi everyone,
I have a topic that publishes sensor_msgs/Pointcloud2 and my intention was to merge every 2 pointclouds of these messages. In order to do that I used point_cloud_assembler with this launch file. Expecting to have as a result a topic that contains half of the messages of the original topic.
<launch>
<node type="point_cloud2_assembler" pkg="laser_assembler" name="test_client">
<remap from="cloud" to="/velodyne_points"/>
<param name="max_clouds" type="int" value="2" />
<param name="fixed_frame" type="string" value="velodyne" />
</node>
</launch>
But that did not work as expected and I got back a lot less from it. Does anybody know why this happened?