기초 지식 2: PCL 중 pcl::PointCloud::Ptr와 Pcl::PointCloud 두 종류의 상호 전환

1213 단어 PCL
1: Ptr 유형 및 비 Ptr 유형 상호 변환
pcl::PointCloud<:pointxyz>::Ptr cloud_Ptr(new pcl::PointCloud<:pointxyz>);
pcl::PointCloud<:pointxyz> cloud;
cloud=*cloud_Ptr;
cloud_Ptr=cloud.makeShared;

2: 실제 사용: a) 비 Ptr
 
  
pcl::PointCloud<:pointxyz> cloud;
pcl::SACSegmentation<:pointxyz>seg;
****            (  )*****
seg.setInputCloud(cloud.makeShared());

b)Ptr

pcl::PointCloud<:pointxyz> cloud(new pcl::PointCloud<:pointxyz>);
pcl::SACSegmentation<:pointxyz>seg;
****            (  )*****
seg.setInputCloud(cloud);

좋은 웹페이지 즐겨찾기