From 5ab4ef2944999337e4edc13b256ebebd45800f3c Mon Sep 17 00:00:00 2001 From: linyimin <18316471919@139.com> Date: Wed, 10 Jun 2026 10:15:11 +0800 Subject: [PATCH] fix: --- app.yaml | 2 +- version.md | 3 ++- version.py | 2 +- vision.py | 2 +- 4 files changed, 5 insertions(+), 4 deletions(-) diff --git a/app.yaml b/app.yaml index 8077a46..f0ee94a 100644 --- a/app.yaml +++ b/app.yaml @@ -1,6 +1,6 @@ id: t11 name: t11 -version: 2.15.13 +version: 2.15.14 author: t11 icon: '' desc: t11 diff --git a/version.md b/version.md index 54ef8c0..cac0632 100644 --- a/version.md +++ b/version.md @@ -23,4 +23,5 @@ # 2.15.10 不保存图片 # 2.15.11 优化内存 # 2.15.12 优化算法 -# 2.15.13 优化算法 \ No newline at end of file +# 2.15.13 优化算法 +# 2.15.14 优化算法 \ No newline at end of file diff --git a/version.py b/version.py index 163795a..a5fd4f8 100644 --- a/version.py +++ b/version.py @@ -4,6 +4,6 @@ 应用版本号 每次 OTA 更新时,只需要更新这个文件中的版本号 """ -VERSION = '2.15.13' +VERSION = '2.15.14' diff --git a/vision.py b/vision.py index 33bbd86..fc10ba6 100644 --- a/vision.py +++ b/vision.py @@ -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,