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

@@ -1,6 +1,6 @@
id: t11 id: t11
name: t11 name: t11
version: 2.15.13 version: 2.15.14
author: t11 author: t11
icon: '' icon: ''
desc: t11 desc: t11

View File

@@ -23,4 +23,5 @@
# 2.15.10 不保存图片 # 2.15.10 不保存图片
# 2.15.11 优化内存 # 2.15.11 优化内存
# 2.15.12 优化算法 # 2.15.12 优化算法
# 2.15.13 优化算法 # 2.15.13 优化算法
# 2.15.14 优化算法

View File

@@ -4,6 +4,6 @@
应用版本号 应用版本号
每次 OTA 更新时,只需要更新这个文件中的版本号 每次 OTA 更新时,只需要更新这个文件中的版本号
""" """
VERSION = '2.15.13' VERSION = '2.15.14'

View File

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