Skip to content

Commit

Permalink
docs(autonomous_emergency_braking): add missing params to README (aut…
Browse files Browse the repository at this point in the history
…owarefoundation#8950)

add missing params

Signed-off-by: Daniel Sanchez <[email protected]>
  • Loading branch information
danielsanchezaran committed Sep 25, 2024
1 parent 93c4240 commit 47e39f4
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion control/autoware_autonomous_emergency_braking/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ We do not activate AEB module if it satisfies the following conditions.

- Ego vehicle is not in autonomous driving state

- When the ego vehicle is not moving (Current Velocity is very low)
- When the ego vehicle is not moving (Current Velocity is below a 0.1 m/s threshold)

### 2. Generate a predicted path of the ego vehicle

Expand Down Expand Up @@ -202,6 +202,10 @@ When vehicle odometry information is faulty, it is possible that the MPC fails t
| voxel_grid_x | [m] | double | down sampling parameters of x-axis for voxel grid filter | 0.05 |
| voxel_grid_y | [m] | double | down sampling parameters of y-axis for voxel grid filter | 0.05 |
| voxel_grid_z | [m] | double | down sampling parameters of z-axis for voxel grid filter | 100000.0 |
| cluster tolerance | [m] | double | maximum allowable distance between any two points to be considered part of the same cluster | 0.15 |
| cluster_minimum_height | [m] | double | at least one point in a cluster must be higher than this value for the cluster to be included in the set of possible collision targets | 0.1 |
| minimum_cluster_size | [-] | int | minimum required amount of points contained by a cluster for it to be considered as a possible target obstacle | 10 |
| maximum_cluster_size | [-] | int | maximum amount of points contained by a cluster for it to be considered as a possible target obstacle | 10000 |
| min_generated_path_length | [m] | double | minimum distance for a predicted path generated by sensors | 0.5 |
| expand_width | [m] | double | expansion width of the ego vehicle for the collision check | 0.1 |
| longitudinal_offset | [m] | double | longitudinal offset distance for collision check | 2.0 |
Expand Down

0 comments on commit 47e39f4

Please sign in to comment.