Skip to content

Commit 9544e9c

Browse files
authored
fix(intersection): detect stuck vehicle by position on detect area (#6689)
Signed-off-by: Mamoru Sobue <mamoru.sobue@tier4.jp>
1 parent de21d1a commit 9544e9c

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

planning/behavior_velocity_intersection_module/src/scene_intersection_stuck.cpp

+4-1
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,10 @@ bool IntersectionModule::checkStuckVehicleInIntersection(
296296

297297
// check if the footprint is in the stuck detect area
298298
const auto obj_footprint = tier4_autoware_utils::toPolygon2d(object);
299-
const bool is_in_stuck_area = !bg::disjoint(obj_footprint, stuck_vehicle_detect_area);
299+
// 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);
300303
if (is_in_stuck_area) {
301304
debug_data_.stuck_targets.objects.push_back(object);
302305
return true;

0 commit comments

Comments
 (0)