Skip to content

Commit

Permalink
fix(goal_planner_module): adjust object filtering to consider velocit…
Browse files Browse the repository at this point in the history
…y threshold (autowarefoundation#1736)

Signed-off-by: Kyoichi Sugahara <kyoichi.sugahara@tier4.jp>
  • Loading branch information
kyoichi-sugahara authored Dec 25, 2024
1 parent ef4ee99 commit da2d488
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -2225,7 +2225,7 @@ static std::vector<utils::path_safety_checker::ExtendedPredictedObject> filterOb
const auto & target_object_types = params->object_types_to_check;

PredictedObjects filtered_objects = utils::path_safety_checker::filterObjectsByVelocity(
*objects, ignore_object_velocity_threshold, true);
*objects, ignore_object_velocity_threshold, false);

utils::path_safety_checker::filterObjectsByClass(filtered_objects, target_object_types);

Expand Down

0 comments on commit da2d488

Please sign in to comment.