This commit is contained in:
2026-06-10 10:15:11 +08:00
parent 577ff02c04
commit 5ab4ef2944
4 changed files with 5 additions and 4 deletions

View File

@@ -646,7 +646,7 @@ def detect_circle_v3(frame, laser_point=None, img_cv=None):
break
if not matched:
# 黄圈高置信度兜底:大且圆时跳过红圈验证
if area > 30 and circularity > 0.85:
if area > 30 and circularity > 0.8:
valid_targets.append({
"center": yellow_center,
"radius": yellow_radius,