forked from autowarefoundation/autoware.universe
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(autoware_launch): dynamic obstacle avoidance (autowarefoundation…
…#299) * add param Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com> * update launch Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com> * update for dynamic avoidance Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com> * update Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com> * update Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com> * disable dynamic avoidance module Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com> * pre-commit Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com> --------- Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>
- Loading branch information
1 parent
1f8ec70
commit db6ed31
Showing
3 changed files
with
31 additions
and
0 deletions.
There are no files selected for viewing
20 changes: 20 additions & 0 deletions
20
...ng/behavior_planning/behavior_path_planner/dynamic_avoidance/dynamic_avoidance.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 |
---|---|---|
@@ -0,0 +1,20 @@ | ||
/**: | ||
ros__parameters: | ||
dynamic_avoidance: | ||
# avoidance is performed for the object type with true | ||
target_object: | ||
car: true | ||
truck: true | ||
bus: true | ||
trailer: true | ||
unknown: false | ||
bicycle: false | ||
motorcycle: true | ||
pedestrian: false | ||
|
||
min_obstacle_vel: 1.0 # [m/s] | ||
|
||
drivable_area_generation: | ||
lat_offset_from_obstacle: 0.8 # [m] | ||
time_to_avoid: 5.0 # [s] | ||
max_lat_offset_to_avoid: 0.5 # [m] |
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