velodyne.yaml 1.3 KB

12345678910111213141516171819202122232425262728293031323334
  1. common:
  2. lid_topic: "/velodyne_points"
  3. imu_topic: "/imu/data"
  4. time_sync_en: false # ONLY turn on when external time synchronization is really not possible
  5. preprocess:
  6. lidar_type: 2 # 1 for Livox serials LiDAR, 2 for Velodyne LiDAR, 3 for ouster LiDAR,
  7. scan_line: 32
  8. scan_rate: 10 # only need to be set for velodyne, unit: Hz,
  9. blind: 4
  10. mapping:
  11. acc_cov: 0.1
  12. gyr_cov: 0.1
  13. b_acc_cov: 0.0001
  14. b_gyr_cov: 0.0001
  15. fov_degree: 180
  16. det_range: 100.0
  17. extrinsic_est_en: true # true: enable the online estimation of IMU-LiDAR extrinsic,
  18. extrinsic_T: [ 0, 0, 0.28]
  19. extrinsic_R: [ 1, 0, 0,
  20. 0, 1, 0,
  21. 0, 0, 1]
  22. publish:
  23. path_en: false
  24. scan_publish_en: true # false: close all the point cloud output
  25. dense_publish_en: true # false: low down the points number in a global-frame point clouds scan.
  26. scan_bodyframe_pub_en: true # true: output the point cloud scans in IMU-body-frame
  27. pcd_save:
  28. pcd_save_en: true
  29. interval: -1 # how many LiDAR frames saved in each pcd file;
  30. # -1 : all frames will be saved in ONE pcd file, may lead to memory crash when having too much frames.