ouster64.yaml 1.2 KB

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