forked from autowarefoundation/autoware.universe
-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(surround_obstacle_checker): make parameters more tunable (autowa…
…refoundation#4925) * feat(surround_obstacle_checker): make parameters more tunable Signed-off-by: Takayuki Murooka <[email protected]> * update Signed-off-by: Takayuki Murooka <[email protected]> * update param Signed-off-by: Takayuki Murooka <[email protected]> * update Signed-off-by: Takayuki Murooka <[email protected]> --------- Signed-off-by: Takayuki Murooka <[email protected]>
- Loading branch information
1 parent
a75e30d
commit c9e94d7
Showing
5 changed files
with
282 additions
and
92 deletions.
There are no files selected for viewing
59 changes: 54 additions & 5 deletions
59
planning/surround_obstacle_checker/config/surround_obstacle_checker.param.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,61 @@ | ||
/**: | ||
ros__parameters: | ||
|
||
# obstacle check | ||
use_pointcloud: true # use pointcloud as obstacle check | ||
use_dynamic_object: true # use dynamic object as obstacle check | ||
surround_check_distance: 0.5 # if objects exist in this distance, transit to "exist-surrounding-obstacle" status [m] | ||
surround_check_recover_distance: 0.8 # if no object exists in this distance, transit to "non-surrounding-obstacle" status [m] | ||
# surround_check_*_distance: if objects exist in this distance, transit to "exist-surrounding-obstacle" status [m] | ||
# surround_check_hysteresis_distance: if no object exists in this hysteresis distance added to the above distance, transit to "non-surrounding-obstacle" status [m] | ||
pointcloud: | ||
enable_check: false | ||
surround_check_front_distance: 0.5 | ||
surround_check_side_distance: 0.5 | ||
surround_check_back_distance: 0.5 | ||
unknown: | ||
enable_check: true | ||
surround_check_front_distance: 0.5 | ||
surround_check_side_distance: 0.5 | ||
surround_check_back_distance: 0.5 | ||
car: | ||
enable_check: true | ||
surround_check_front_distance: 0.5 | ||
surround_check_side_distance: 0.0 | ||
surround_check_back_distance: 0.5 | ||
truck: | ||
enable_check: true | ||
surround_check_front_distance: 0.5 | ||
surround_check_side_distance: 0.0 | ||
surround_check_back_distance: 0.5 | ||
bus: | ||
enable_check: true | ||
surround_check_front_distance: 0.5 | ||
surround_check_side_distance: 0.0 | ||
surround_check_back_distance: 0.5 | ||
trailer: | ||
enable_check: true | ||
surround_check_front_distance: 0.5 | ||
surround_check_side_distance: 0.0 | ||
surround_check_back_distance: 0.5 | ||
motorcycle: | ||
enable_check: true | ||
surround_check_front_distance: 0.5 | ||
surround_check_side_distance: 0.0 | ||
surround_check_back_distance: 0.5 | ||
bicycle: | ||
enable_check: true | ||
surround_check_front_distance: 0.5 | ||
surround_check_side_distance: 0.5 | ||
surround_check_back_distance: 0.5 | ||
pedestrian: | ||
enable_check: true | ||
surround_check_front_distance: 0.5 | ||
surround_check_side_distance: 0.5 | ||
surround_check_back_distance: 0.5 | ||
|
||
surround_check_hysteresis_distance: 0.3 | ||
|
||
state_clear_time: 2.0 | ||
|
||
# ego stop state | ||
stop_state_ego_speed: 0.1 #[m/s] | ||
|
||
# debug | ||
publish_debug_footprints: true # publish vehicle footprint & footprints with surround_check_distance and surround_check_recover_distance offsets | ||
debug_footprint_label: "car" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.