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

feat(safety_check): add option to use polygon along path in safety check #6336

Merged
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
feat(avoidance): use free steer policy for safety check
Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>
satoshi-ota committed Feb 15, 2024
commit 10a68ec897a479888855f69e392d2592a2de1627
Original file line number Diff line number Diff line change
@@ -187,6 +187,7 @@
time_horizon_for_rear_object: 10.0 # [s]
delay_until_departure: 0.0 # [s]
# rss parameters
steering: "free" # [-] select "fixed" or "free"
expected_front_deceleration: -1.0 # [m/ss]
expected_rear_deceleration: -1.0 # [m/ss]
rear_vehicle_reaction_time: 2.0 # [s]
Original file line number Diff line number Diff line change
@@ -223,6 +223,7 @@ AvoidanceParameters getParameter(rclcpp::Node * node)
// safety check rss params
{
const std::string ns = "avoidance.safety_check.";
p.rss_params.steering = getOrDeclareParameter<std::string>(*node, ns + "steering");
p.rss_params.longitudinal_distance_min_threshold =
getOrDeclareParameter<double>(*node, ns + "longitudinal_distance_min_threshold");
p.rss_params.longitudinal_velocity_delta_time =