
PCL
Abel_Liu_
you can be way more.
展开
-
基础知识2:PCL中pcl::PointCloud::Ptr 和Pcl::PointCloud两个类的相互转换
1:Ptr类型和非Ptr类型相互转换pcl::PointCloud<pcl::PointXYZ>::Ptr cloud_Ptr(new pcl::PointCloud<pcl::PointXYZ>);pcl::PointCloud<pcl::PointXYZ> cloud;cloud=*cloud_Ptr;cloud_Ptr=cloud.makeShare...原创 2018-07-10 17:05:08 · 12326 阅读 · 0 评论 -
基础知识 1:PCL连接两片点云
得到点云面片后经过一系列的处理(滤波、平滑、ICP等),往往涉及到点云的连接,这里简单测试两片点云的连接。1:非Ptr格式的点云a:直接连接 pcl::PointCloud<pcl::PointXYZ> cloud_a, cloud_b, cloud_c; cloud_a.width = 5; cloud_a.height = cloud_b.height = n...原创 2018-07-06 11:38:39 · 3017 阅读 · 3 评论 -
基础知识3:PCL中 copyPointCloud的使用
本文就自己在pcl中碰到过的copyPointCloud两种使用方法进行了总结:Part 1:完全拷贝到新的点云之中:pcl::copyPointCloud (const pcl::PointCloud &amp;cloud_in,pcl::PointCloud &amp;cloud_out)pcl::PointCloud&lt;pcl::PointXYZ&gt;::Ptr src(n...原创 2018-07-24 15:11:04 · 11299 阅读 · 3 评论