ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange |
![]() | 1 | initial version |
Need to add true
in these two publishers:
map_pub = nh.advertise<sensor_msgs::PointCloud2>("/map", 100, true);
scene_pub = nh.advertise<sensor_msgs::PointCloud2>("/scene", 100, true);
Since the default is false
and it will not store data in a latch.