lidarmerge.h 432 B

123456789101112131415161718192021
  1. #ifndef LIDARMERGE_H
  2. #define LIDARMERGE_H
  3. #include <pcl/io/io.h>
  4. #include <pcl/io/pcd_io.h>
  5. namespace iv {
  6. struct lidar_data
  7. {
  8. char strmemname[256];
  9. double foff_x = 0.0;
  10. double foff_y = 0.0;
  11. double foff_z = 0.0;
  12. bool bUpdate = false;
  13. pcl::PointCloud<pcl::PointXYZI>::Ptr mpoint_cloud;
  14. };
  15. }
  16. pcl::PointCloud<pcl::PointXYZI>::Ptr mergefunc(std::vector<iv::lidar_data> xvectorlidar);
  17. #endif // LIDARMERGE_H