在使用PCL库的时候,经常需要显示点云,可以用下面这段代码:
#include <pcl/visualization/cloud_viewer.h> pcl::PointCloud<pcl::PointXYZRGB>::Ptr cloud; pcl::visualization::CloudViewer viewer ("Viewer"); viewer.showCloud (cloud); while (!viewer.wasStopped ()) { }
本文转自博客园Grandyang的博客,原文链接:显示点云PCL Show Point Cloud ,如需转载请自行联系原博主。