Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 03f3886

Browse files
committedJan 29, 2024·
update
Signed-off-by: kosuke55 <kosuke.tnp@gmail.com>
1 parent a9d8fde commit 03f3886

File tree

1 file changed

+13
-5
lines changed
  • planning/behavior_path_goal_planner_module

1 file changed

+13
-5
lines changed
 

‎planning/behavior_path_goal_planner_module/README.md

+13-5
Original file line numberDiff line numberDiff line change
@@ -82,12 +82,15 @@ GoalCandidates --o GoalSeacherBase
8282

8383
## start condition
8484

85-
Either one is activated when all conditions are met.
86-
8785
### fixed_goal_planner
8886

89-
- Route is set with `allow_goal_modification=false` by default.
90-
- ego-vehicle is in the same lane as the goal.
87+
This is a very simple function that draws a smooth path to a specified goal. This function does not require approval and always runs with the other modules.
88+
89+
Executed when both conditions are met.
90+
91+
- Route is set with `allow_goal_modification=false`. This is the default.
92+
- The goal is set in the normal lane. In other words, it is NOT `road_shoulder`.
93+
- Ego-vehicle exists in the same lane sequence as the goal.
9194

9295
If the target path contains a goal, modify the points of the path so that the path and the goal are connected smoothly. This process will change the shape of the path by the distance of `refine_goal_search_radius_range` from the goal. Note that this logic depends on the interpolation algorithm that will be executed in a later module (at the moment it uses spline interpolation), so it needs to be updated in the future.
9396

@@ -129,7 +132,9 @@ If the target path contains a goal, modify the points of the path so that the pa
129132
| th_stopped_time | [s] | double | time threshold for arrival of path termination | 2.0 |
130133
| center_line_path_interval | [m] | double | reference center line path point interval | 1.0 |
131134

132-
## **collision check**
135+
## **collision check for path generation**
136+
137+
To select a safe one from the path candidates, a collision check with obstacles is performed.
133138

134139
### **occupancy grid based collision check**
135140

@@ -148,6 +153,9 @@ Generate footprints from ego-vehicle path points and determine obstacle collisio
148153

149154
### **object recognition based collision check**
150155

156+
`object_recognition_collision_check_margin`
157+
`object_recognition_collision_check_max_extra_stopping_margin`
158+
151159
#### Parameters for object recognition based collision check
152160

153161
| Name | Unit | Type | Description | Default value |

0 commit comments

Comments
 (0)
Please sign in to comment.