We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5673d6d commit 50e5fb5Copy full SHA for 50e5fb5
planning/behavior_velocity_dynamic_obstacle_stop_module/src/object_filtering.cpp
@@ -60,8 +60,9 @@ std::vector<autoware_auto_perception_msgs::msg::PredictedObject> filter_predicte
60
return (obj_arc_length < 0.0 &&
61
std::abs(obj_arc_length) <
62
params.behind_object_distance_threshold + o.shape.dimensions.x / 2.0) ||
63
+ (obj_arc_length > o.shape.dimensions.x / 2.0 ||
64
obj_arc_length > ego_data.longitudinal_offset_to_first_path_idx +
- params.ego_longitudinal_offset + o.shape.dimensions.x / 2.0;
65
+ params.ego_longitudinal_offset + o.shape.dimensions.x / 2.0);
66
}
67
return obj_arc_length > ego_data.longitudinal_offset_to_first_path_idx +
68
params.ego_longitudinal_offset + o.shape.dimensions.x / 2.0;
0 commit comments