We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent de21d1a commit 9544e9cCopy full SHA for 9544e9c
planning/behavior_velocity_intersection_module/src/scene_intersection_stuck.cpp
@@ -296,7 +296,10 @@ bool IntersectionModule::checkStuckVehicleInIntersection(
296
297
// check if the footprint is in the stuck detect area
298
const auto obj_footprint = tier4_autoware_utils::toPolygon2d(object);
299
- const bool is_in_stuck_area = !bg::disjoint(obj_footprint, stuck_vehicle_detect_area);
+ // NOTE: in order not to stop too much
300
+ const bool is_in_stuck_area = bg::within(
301
+ to_bg2d(object.kinematics.initial_pose_with_covariance.pose.position),
302
+ stuck_vehicle_detect_area);
303
if (is_in_stuck_area) {
304
debug_data_.stuck_targets.objects.push_back(object);
305
return true;
0 commit comments