删除斑马线存图临时功能; 斑马线阈值0.87→0.82; 搜线加CLAHE反光压制+扩大形态学核

This commit is contained in:
spdis
2026-06-29 17:15:36 +08:00
parent 017a827b18
commit 4a38259d25
2 changed files with 14 additions and 2 deletions
+1 -1
View File
@@ -72,7 +72,7 @@ static constexpr int calc_scale = 2;
// g_boxes: 检测结果缓冲区 (最多 16 个框)
// g_box_count: 当前帧有效检测框数
// ═══════════════════════════════════════════════════════════
static float g_thresh[4] = {0.80f, 0.75f, 0.80f, 0.87f};
static float g_thresh[4] = {0.80f, 0.75f, 0.80f, 0.82f};
static DetectBoxV10 g_boxes[16];
static int g_box_count = 0;