From 84aab0fa8ecd79f1eccd9db1e8df6a9fa2b7a436 Mon Sep 17 00:00:00 2001 From: tian <11429339@qq.com> Date: Thu, 7 May 2026 12:02:26 +0800 Subject: [PATCH] feat: add alarm test overlay with low thresholds --- configs/overlays/alarm_test_sensitive.json | 47 ++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 configs/overlays/alarm_test_sensitive.json diff --git a/configs/overlays/alarm_test_sensitive.json b/configs/overlays/alarm_test_sensitive.json new file mode 100644 index 0000000..cd96c19 --- /dev/null +++ b/configs/overlays/alarm_test_sensitive.json @@ -0,0 +1,47 @@ +{ + "description": "降低告警阈值用于测试:缩短冷却时间、降低最小持续时间和命中数。", + "instance_overrides": { + "*": { + "override": { + "nodes": { + "alarm_violation": { + "rules": [ + { + "name": "non_compliant_workshoe", + "class_ids": [2], + "min_score": 0.1, + "min_duration_ms": 100, + "min_hits": 1, + "hit_window_ms": 5000, + "cooldown_ms": 2000 + } + ], + "face_rules": [ + { + "name": "unknown_face", + "type": "unknown", + "cooldown_ms": 2000, + "min_hits": 1, + "hit_window_ms": 5000, + "min_face_area_ratio": 0.0001, + "min_face_aspect": 0.3, + "max_face_aspect": 3.0 + }, + { + "name": "known_person", + "type": "person", + "cooldown_ms": 2000, + "min_sim": 0.3, + "min_hits": 1, + "hit_window_ms": 5000, + "min_face_area_ratio": 0.0001, + "min_face_aspect": 0.3, + "max_face_aspect": 3.0 + } + ] + } + } + } + } + } +}