{% extends "layout.html" %} {% block content %}
检测结果列表
{% if reports %}
{% for report in reports %} {% endfor %}
日期时间 视频数 操作
{{ report.timestamp }} {{ report.video_count }}
{% else %}
暂无检测结果。请上传视频并开始检测。
{% endif %}
模型管理

点击上传新模型 (.pt 文件)


可用模型:
    {% if models %} {% for model in models %}
  • {{ model }}
  • {% endfor %} {% else %}
  • 暂无可用模型
  • {% endif %}
视频文件管理
请直接将视频文件放入以下文件夹:
{{ config.INPUT_FOLDER }}

支持格式: mp4, avi, mov, mkv, wmv, flv, webm

当前视频文件:
    {% if videos %} {% for video in videos %}
  • {{ video }}
  • {% endfor %} {% else %}
  • 暂无视频文件
  • {% endif %}
开始检测
0.1 (低精度) 0.9 (高精度)
{% if detection_in_progress %}
检测进行中...
{{ detection_progress }}%

{{ detection_status }}


{% endif %}
{% endblock %} {% block scripts %} {% if detection_in_progress %} {% endif %} {% endblock %}