PCL.h 281 B

12345678910111213141516171819
  1. #pragma once
  2. using namespace std;
  3. #include <pcl/io/pcd_io.h>
  4. #include <pcl/features/normal_3d.h> // 法向量估计
  5. #include <pcl/segmentation/sac_segmentation.h> // 模型分割
  6. #include <pcl/filters/extract_indices.h> // 索引提取
  7. typedef pcl::PointXYZ PointT;
  8. class PCL
  9. {
  10. };