Hi,
To have online outputs, it would require to define a TCP/IP protocol (e.g., subscribing to a port and receiving binary stream). There is no plan to integrate such outputs to standalone as it is exactly what ROS already does. However, there are some
basic C++ examples using the library for mapping (with and without events-based communication). For example, you could assemble the point cloud in MapBuilder::processStatistics() to a global point cloud kept in cache in MapBuilder class. You could then use web sockets to publish the map over TCP/IP in your defined format. Note that you can also use all
PCL functions to filter the resulting point cloud before publishing it.
cheers