|
12 | 12 |
|
13 | 13 | hold_stop_velocity_threshold: 0.01 # The maximum ego velocity to hold stopping [m/s]
|
14 | 14 | hold_stop_distance_threshold: 0.3 # The ego keeps stopping if the distance to stop changes within the threshold [m]
|
| 15 | + pointcloud_suppresion_distance_margin: 0.2 |
15 | 16 |
|
16 | 17 | stop_on_curve:
|
17 | 18 | enable_approaching: true
|
|
35 | 36 | two_wheel_objects_deceleration: -3.0 # for BICYCLE, MOTORCYCLE
|
36 | 37 | other_vehicle_objects_deceleration: -1.2 # for car, truck, etc
|
37 | 38 | # the_other_object_deceleration: -inf, for PEDESTRIAN, UNKNOWN
|
| 39 | + pointclound_deceleration: -1.0 # for pointcloud |
38 | 40 | velocity_offset: -1.0
|
39 | 41 |
|
40 | 42 | obstacle_filtering:
|
41 | 43 | object_type:
|
42 |
| - pointcloud: false |
| 44 | + pointcloud: true |
43 | 45 |
|
44 | 46 | inside:
|
45 | 47 | unknown: true
|
|
62 | 64 | pedestrian: true
|
63 | 65 |
|
64 | 66 | pointcloud:
|
65 |
| - pointcloud_voxel_grid_x: 0.05 |
66 |
| - pointcloud_voxel_grid_y: 0.05 |
67 |
| - pointcloud_voxel_grid_z: 100000.0 |
68 |
| - pointcloud_cluster_tolerance: 1.0 |
69 |
| - pointcloud_min_cluster_size: 1 |
70 |
| - pointcloud_max_cluster_size: 100000 |
| 67 | + pointcloud_voxel_grid_x: 0.1 |
| 68 | + pointcloud_voxel_grid_y: 0.1 |
| 69 | + pointcloud_voxel_grid_z: 0.5 |
| 70 | + time_series_association: |
| 71 | + max_time_diff: 0.35 |
| 72 | + min_velocity: -5.0 |
| 73 | + max_velocity: 30.0 |
| 74 | + position_diff: 1.0 |
| 75 | + velocity_estimation: |
| 76 | + min_clamp_velocity: 0.0 |
| 77 | + max_clamp_velocity: 20.0 |
| 78 | + required_velocity_count: 5 |
| 79 | + lpf_gain: 0.9 |
71 | 80 |
|
72 | 81 | # hysteresis for velocity
|
73 | 82 | obstacle_velocity_threshold_to_stop : 30.0 # stop planning is executed to the obstacle whose velocity is less than this value [m/s]
|
74 | 83 | obstacle_velocity_threshold_from_stop : 30.5 # stop planning is executed to the obstacle whose velocity is less than this value [m/s]
|
75 | 84 |
|
76 | 85 | max_lat_margin: 0.3 # lateral margin between the obstacles except for unknown and ego's footprint
|
77 | 86 | max_lat_margin_against_predicted_object_unknown: 0.3 # lateral margin between the unknown obstacles and ego's footprint
|
| 87 | + max_lat_margin_against_pointcloud: 0.3 # lateral margin between the unknown obstacles and ego's footprint |
78 | 88 |
|
79 | 89 | min_velocity_to_reach_collision_point: 2.0 # minimum velocity margin to calculate time to reach collision [m/s]
|
80 | 90 | stop_obstacle_hold_time_threshold : 1.0 # maximum time for holding closest stop obstacle
|
|
0 commit comments