Skip to content

Commit

Permalink
refactor(autoware_planning_validator): add new parameters for traject…
Browse files Browse the repository at this point in the history
…ory and ego-object distance thresholds

Signed-off-by: kyoichi-sugahara <[email protected]>
  • Loading branch information
kyoichi-sugahara committed Nov 1, 2024
1 parent 2936bfd commit a0bf8b5
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,11 @@ void PlanningValidator::setupParameters()
declare_parameter<double>(ps + "forward_trajectory_length_acceleration");
p.forward_trajectory_length_margin =
declare_parameter<double>(ps + "forward_trajectory_length_margin");
p.trajectory_to_object_distance_threshold =
declare_parameter<double>(ps + "trajectory_to_object_distance_threshold");
p.ego_to_object_distance_threshold =
declare_parameter<double>(ps + "ego_to_object_distance_threshold");
p.time_tolerance_threshold = declare_parameter<double>(ps + "time_tolerance_threshold");
}

try {
Expand Down

0 comments on commit a0bf8b5

Please sign in to comment.