Compare commits
3 Commits
8375d3c8a1
...
3d34c3f57f
| Author | SHA1 | Date | |
|---|---|---|---|
| 3d34c3f57f | |||
| 3b65e27212 | |||
| 95354e09a7 |
@@ -11,6 +11,7 @@ export namespace AiotAlarmApi {
|
||||
cameraId?: string;
|
||||
cameraName?: string;
|
||||
roiId?: string;
|
||||
roiName?: string;
|
||||
bindId?: string;
|
||||
deviceId?: string;
|
||||
alertType?: string;
|
||||
|
||||
@@ -371,11 +371,9 @@ const [Grid, gridApi] = useVbenVxeGrid({
|
||||
</div>
|
||||
|
||||
<!-- 检测区域 -->
|
||||
<div v-if="currentAlert.bbox">
|
||||
<span class="text-gray-500">检测区域 (bbox):</span>
|
||||
<code class="ml-2 text-xs bg-gray-100 px-2 py-1 rounded">{{
|
||||
currentAlert.bbox
|
||||
}}</code>
|
||||
<div v-if="currentAlert.roiName">
|
||||
<span class="text-gray-500">检测区域:</span>
|
||||
<span class="font-medium">{{ currentAlert.roiName }}</span>
|
||||
</div>
|
||||
|
||||
<!-- 日志信息 -->
|
||||
|
||||
@@ -47,7 +47,7 @@ const paramNameMap: Record<string, string> = {
|
||||
working_hours: '工作时间段',
|
||||
// 其他算法参数
|
||||
cooldown_seconds: '告警冷却期(秒)',
|
||||
confirm_seconds: '触发确认时间(秒)',
|
||||
confirm_seconds: '确认时间(秒)',
|
||||
min_confidence: '最小置信度',
|
||||
max_targets: '最大目标数',
|
||||
detection_interval: '检测间隔(秒)',
|
||||
@@ -61,7 +61,7 @@ const paramDescMap: Record<string, string> = {
|
||||
working_hours: '仅在指定时间段内进行监控,留空表示24小时监控',
|
||||
// 其他算法参数说明
|
||||
cooldown_seconds: '触发告警后,多少秒内不再重复告警(用于周界入侵等算法)',
|
||||
confirm_seconds: '检测到目标后,持续多少秒才触发告警(避免瞬间误报)',
|
||||
confirm_seconds: '持续检测到人达到该时间后触发告警,持续无人达到该时间后自动结束告警',
|
||||
};
|
||||
|
||||
// 获取参数的中文名称
|
||||
|
||||
Reference in New Issue
Block a user