{% extends "layout.html" %} {% block content %}
检测报告详情
返回
基本信息
检测时间: {{ report.timestamp }}
使用模型: {{ report.model_path }}
置信度阈值: {{ report.confidence_threshold }}
处理视频数量: {{ report.statistics.total_videos }}
总帧数: {{ report.statistics.total_frames }}
检测帧数: {{ report.statistics.detected_frames }}
检测统计

检测统计

视频检测结果
{% for video in report.statistics.detection_results %} {% endfor %}
视频名称 总帧数 检测帧数 检测率 操作
{{ video.video_name }} {{ video.total_frames }} {{ video.detections|length }} {% if video.total_frames %} {% set detection_rate = (video.detections|length / video.total_frames * 100)|round(2) %}
{{ detection_rate }}%
{% else %} - {% endif %}
查看详情
{% endblock %} {% block scripts %} {% endblock %}