|
| 1 | +common: |
| 2 | + lid_topic: "/sensor/lidar/points" |
| 3 | + imu_topic: "/sensor/imu/imu_data" |
| 4 | + time_sync_en: false # ONLY turn on when external time synchronization is really not possible |
| 5 | + |
| 6 | +preprocess: |
| 7 | + lidar_type: 2 # 1 for Livox serials LiDAR, 2 for Velodyne LiDAR, 3 for ouster LiDAR, |
| 8 | + scan_line: 16 |
| 9 | + scan_rate: 10 # only need to be set for velodyne, unit: Hz, |
| 10 | + blind: 1 |
| 11 | + point_filter_num: 1 |
| 12 | + |
| 13 | +mapping: |
| 14 | + down_sample_size: 0.4 |
| 15 | + max_iteration: 4 |
| 16 | + voxel_size: 2.0 |
| 17 | + max_layer: 4 # 原始参数4 # 4 layer, 0, 1, 2, 3 |
| 18 | + layer_point_size: [ 5, 5, 5, 5, 5 ] |
| 19 | + plannar_threshold: 0.01 |
| 20 | + max_points_size: 1000 |
| 21 | + max_cov_points_size: 1000 |
| 22 | + |
| 23 | + fov_degree: 360 |
| 24 | + det_range: 100.0 |
| 25 | + extrinsic_est_en: true # true: enable the online estimation of IMU-LiDAR extrinsic, |
| 26 | + extrinsic_T: [-0.376489, -0.0505456, -0.109697 ] |
| 27 | + extrinsic_R: [ 1, 0, 0, |
| 28 | + 0, 1, 0, |
| 29 | + 0, 0, 1 ] |
| 30 | + |
| 31 | +noise_model: |
| 32 | + ranging_cov: 0.04 |
| 33 | + angle_cov: 0.1 |
| 34 | + acc_cov: 0.2 |
| 35 | + gyr_cov: 0.05 |
| 36 | + b_acc_cov: 0.0043 |
| 37 | + b_gyr_cov: 0.000266 |
| 38 | + |
| 39 | + |
| 40 | +publish: |
| 41 | + pub_voxel_map: false |
| 42 | + publish_max_voxel_layer: 1 # only publish 0,1,2 layer's plane |
| 43 | + path_en: true |
| 44 | + scan_publish_en: true # false: close all the point cloud output |
| 45 | + dense_publish_en: true # false: low down the points number in a global-frame point clouds scan. |
| 46 | + scan_bodyframe_pub_en: true # true: output the point cloud scans in IMU-body-frame |
| 47 | + |
| 48 | +pcd_save: |
| 49 | + pcd_save_en: false |
| 50 | + interval: -1 # how many LiDAR frames saved in each pcd file; |
| 51 | + # -1 : all frames will be saved in ONE pcd file, may lead to memory crash when having too much frames. |
0 commit comments