|
1 | 1 | /**:
|
2 | 2 | ros__parameters:
|
3 |
| - |
4 | 3 | # obstacle check
|
5 |
| - use_pointcloud: true # use pointcloud as obstacle check |
6 |
| - use_dynamic_object: true # use dynamic object as obstacle check |
7 |
| - surround_check_distance: 0.5 # if objects exist in this distance, transit to "exist-surrounding-obstacle" status [m] |
8 |
| - surround_check_recover_distance: 0.8 # if no object exists in this distance, transit to "non-surrounding-obstacle" status [m] |
| 4 | + # surround_check_*_distance: if objects exist in this distance, transit to "exist-surrounding-obstacle" status [m] |
| 5 | + # surround_check_hysteresis_distance: if no object exists in this hysteresis distance added to the above distance, transit to "non-surrounding-obstacle" status [m] |
| 6 | + pointcloud: |
| 7 | + enable_check: false |
| 8 | + surround_check_front_distance: 0.5 |
| 9 | + surround_check_side_distance: 0.5 |
| 10 | + surround_check_back_distance: 0.5 |
| 11 | + unknown: |
| 12 | + enable_check: true |
| 13 | + surround_check_front_distance: 0.5 |
| 14 | + surround_check_side_distance: 0.5 |
| 15 | + surround_check_back_distance: 0.5 |
| 16 | + car: |
| 17 | + enable_check: true |
| 18 | + surround_check_front_distance: 0.5 |
| 19 | + surround_check_side_distance: 0.0 |
| 20 | + surround_check_back_distance: 0.5 |
| 21 | + truck: |
| 22 | + enable_check: true |
| 23 | + surround_check_front_distance: 0.5 |
| 24 | + surround_check_side_distance: 0.0 |
| 25 | + surround_check_back_distance: 0.5 |
| 26 | + bus: |
| 27 | + enable_check: true |
| 28 | + surround_check_front_distance: 0.5 |
| 29 | + surround_check_side_distance: 0.0 |
| 30 | + surround_check_back_distance: 0.5 |
| 31 | + trailer: |
| 32 | + enable_check: true |
| 33 | + surround_check_front_distance: 0.5 |
| 34 | + surround_check_side_distance: 0.0 |
| 35 | + surround_check_back_distance: 0.5 |
| 36 | + motorcycle: |
| 37 | + enable_check: true |
| 38 | + surround_check_front_distance: 0.5 |
| 39 | + surround_check_side_distance: 0.0 |
| 40 | + surround_check_back_distance: 0.5 |
| 41 | + bicycle: |
| 42 | + enable_check: true |
| 43 | + surround_check_front_distance: 0.5 |
| 44 | + surround_check_side_distance: 0.5 |
| 45 | + surround_check_back_distance: 0.5 |
| 46 | + pedestrian: |
| 47 | + enable_check: true |
| 48 | + surround_check_front_distance: 0.5 |
| 49 | + surround_check_side_distance: 0.5 |
| 50 | + surround_check_back_distance: 0.5 |
| 51 | + |
| 52 | + surround_check_hysteresis_distance: 0.3 |
| 53 | + |
9 | 54 | state_clear_time: 2.0
|
10 | 55 |
|
11 | 56 | # ego stop state
|
12 | 57 | stop_state_ego_speed: 0.1 #[m/s]
|
13 | 58 |
|
14 | 59 | # debug
|
15 | 60 | publish_debug_footprints: true # publish vehicle footprint & footprints with surround_check_distance and surround_check_recover_distance offsets
|
| 61 | + debug_footprint_label: "car" |
0 commit comments