Skip to content

Commit 18b4e10

Browse files
fix(goal_planner_module): adjust object filtering to consider velocity threshold
Signed-off-by: Kyoichi Sugahara <kyoichi.sugahara@tier4.jp>
1 parent ef4ee99 commit 18b4e10

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

planning/behavior_path_planner/autoware_behavior_path_goal_planner_module/src/goal_planner_module.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2225,7 +2225,7 @@ static std::vector<utils::path_safety_checker::ExtendedPredictedObject> filterOb
22252225
const auto & target_object_types = params->object_types_to_check;
22262226

22272227
PredictedObjects filtered_objects = utils::path_safety_checker::filterObjectsByVelocity(
2228-
*objects, ignore_object_velocity_threshold, true);
2228+
*objects, ignore_object_velocity_threshold, false);
22292229

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

0 commit comments

Comments
 (0)