Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(obstacle_avoidance_planner): add description of max_plan_from_ego_length #1223

Merged
merged 2 commits into from
Jul 4, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,8 @@
option:
steer_limit_constraint: true
fix_points_around_ego: true
# plan_from_ego: false
plan_from_ego: false
max_plan_from_ego_length: 10.0
visualize_sampling_num: 1
enable_manual_warm_start: true
enable_warm_start: true # false
Expand Down
1 change: 1 addition & 0 deletions planning/obstacle_avoidance_planner/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -776,6 +776,7 @@ $N_{circle}$ is the number of circles to check collision.
- `option.is_showing_calculation_time` enables showing each calculation time for functions and total calculation time on the terminal.
- `option.is_stopping_if_outside_drivable_area` enables stopping just before the generated trajectory point will be outside the drivable area.
- `mpt.option.plan_from_ego` enables planning from the ego pose when the ego's velocity is zero.
- `mpt.option.max_plan_from_ego_length` maximum length threshold to plan from ego. it is enabled when the length of trajectory is shorter than this value.
- `mpt.option.two_step_soft_constraint` enables two step of soft constraints for collision free
- `mpt.option.soft_clearance_from_road` and `mpt.option.soft_second_clearance_from_road` are the weight.

Expand Down