pcl::PointCloud和pcl::PontCloud::Ptr之間的關係和轉換方式
pcl::PointCloud和pcl::PontCloud::Ptr之間的關係和轉換方式
關係
pcl::PointCloud::Ptr是pcl::PointCloud的指標型別
轉換方式
pcl::PointCloud轉換成pcl::PointCloud::Ptr
pcl::PointCloud<pcl:PointXYZ>::Ptr cloud_ptr(new pcl::PointCloud<pcl::PointXYZ>);
pcl::PointCloud<pcl::PointXYZ> cloud;
cloud_ptr=cloud.makeShared();
pcl::PointCloud::Ptr轉換成pcl::PointCloud
pcl::PointCloud<pcl::PointXYZ> cloud;
pcl::PointCloud<pcl::PointXYZ>::Ptr cloud_ptr(new pcl::PointCloud<pcl::PointXYZ>);
cloud=*cloud_ptr;
不想定義新的型別那麼可以採用以下的方式轉換:
pcl::PointCloud<pcl::PointXYZ> cloud;
pcl::octree::OctreePointCloudSearch<pcl::PointXYZ> octree(resolution);
octree.setInputCloud(cloudA.makeShared());
pcl::PointCloud<pcl::PointXYZ>::Ptr cloud_ptr(new pcl::PointCloud<pcl::PointXYZ>);
pcl::octree::OctreePointCloudSearch<pcl::PointXYZ> octree(resolution);
octree.setInputCloud(cloud_ptr);
相關文章
- 關於pcl索引的使用索引
- PCL之ICP演算法演算法
- PCL 計算點雲的面積和體積
- Window, WindowManager和WindowManagerService之間的關係
- 角度和弧度之間的轉換
- PCL(9)PLC庫和OpenCV庫中的FLANN衝突OpenCV
- 【點雲PCL入門】PCL+QT+VTK顯示點雲QT
- String和Date、Timestamp之間的轉換
- pcl常用小知識
- Kubernetes和Docker之間的關係是什麼?Docker
- 網站和伺服器之間的關係網站伺服器
- Web3和元宇宙之間的關係Web元宇宙
- Java 中 CLOB 和字串之間的轉換Java字串
- Map和String型別之間的轉換型別
- 備份集和備份片之間的關係
- SDK、API 和 app 之間的關係和聯絡是什麼?APIAPP
- PCL(19)點雲顯示
- java基本型別和物件之間的轉換Java型別物件
- 前端之DOM解析和渲染與CSS、JS之間的關係前端CSSJS
- 尤拉角和旋轉矩陣之間的轉換矩陣
- TPS和響應時間之間是什麼關係
- repo和Git的關係 [轉載]Git
- Python和人工智慧之間存在怎樣的關係?Python人工智慧
- 卷積層和全連線層之間的關係卷積
- VMX - block by NMI和 NMI unblockinig due to IRET 之間的關係BloC
- ubuntu編譯安裝pcl教程。Ubuntu編譯
- 在Linux中,Unix和Linux之間的關係是什麼?Linux
- 【轉】QPS和併發數的關係
- Java 將PDF/XPS轉為Word/html /SVG/PS/PCL/PNG、PDF和XPS互轉(基於Spire.Cloud.SDK for Java)JavaHTMLSVGCloud
- Golang 陣列和字串之間的相互轉換[]byte/stringGolang陣列字串
- android中String與InputStream之間的相互轉換方式Android
- ubuntu18.04安裝python-pclUbuntuPython
- 品牌生命週期和產品生命週期之間的關係
- 效能測試中,TPS和RT之間的關係,你知道嗎?
- 時間相減和時間轉換
- 【java】類之間的關係Java
- 一文了解進位制之間的原理和轉換
- Python 實現Excel和TXT文字格式之間的相互轉換PythonExcel