Skip to content

Commit

Permalink
feat(freespace_planning_algorithms): add new parameters for astar pla…
Browse files Browse the repository at this point in the history
…nning algorithm (autowarefoundation#1120)

* add new astar planner parameters

Signed-off-by: mohammad alqudah <alqudah.mohammad@tier4.jp>

* add flag for obstacle confidence check

Signed-off-by: mohammad alqudah <alqudah.mohammad@tier4.jp>

* reduce freespace planner th_arrived_distance_m param value

Signed-off-by: mohammad alqudah <alqudah.mohammad@tier4.jp>

* reduce object polygon expand size in costmap generator

Signed-off-by: mohammad alqudah <alqudah.mohammad@tier4.jp>

* reduce vehicle shape margin in freespace planner

Signed-off-by: mohammad alqudah <alqudah.mohammad@tier4.jp>

* replace flag param by time threshold param

Signed-off-by: mohammad alqudah <alqudah.mohammad@tier4.jp>

---------

Signed-off-by: mohammad alqudah <alqudah.mohammad@tier4.jp>
  • Loading branch information
mkquda authored and kyoichi-sugahara committed Aug 27, 2024
1 parent 7cc746e commit 0309fc5
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,5 @@
use_parkinglot: true
use_objects: true
use_points: true
expand_polygon_size: 1.0
expand_polygon_size: 0.5
size_of_expansion_kernel: 9
Original file line number Diff line number Diff line change
Expand Up @@ -113,9 +113,11 @@
use_back: true
adapt_expansion_distance: true
expansion_distance: 0.5
near_goal_distance: 3.0
distance_heuristic_weight: 2.0
smoothness_weight: 0.5
obstacle_distance_weight: 1.75
goal_lat_distance_weight: 5.0
# -- RRT* search Configurations --
rrtstar:
enable_update: true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -83,9 +83,11 @@
use_back: true
adapt_expansion_distance: true
expansion_distance: 0.5
near_goal_distance: 3.0
distance_heuristic_weight: 2.0
smoothness_weight: 0.5
obstacle_distance_weight: 1.75
goal_lat_distance_weight: 5.0
# -- RRT* search Configurations --
rrtstar:
enable_update: true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,12 @@
planning_algorithm: "astar"
waypoints_velocity: 5.0
update_rate: 10.0
th_arrived_distance_m: 1.0
th_arrived_distance_m: 0.5
th_stopped_time_sec: 1.0
th_stopped_velocity_mps: 0.01
th_course_out_distance_m: 1.0
vehicle_shape_margin_m: 1.0
th_obstacle_time_sec: 1.0
vehicle_shape_margin_m: 0.5
replan_when_obstacle_found: true
replan_when_course_out: true

Expand Down Expand Up @@ -36,9 +37,11 @@
use_back: true
adapt_expansion_distance: true
expansion_distance: 0.5
near_goal_distance: 3.0
distance_heuristic_weight: 2.0
smoothness_weight: 0.5
obstacle_distance_weight: 1.75
goal_lat_distance_weight: 5.0

# -- RRT* search Configurations --
rrtstar:
Expand Down

0 comments on commit 0309fc5

Please sign in to comment.