{% extends "base.html" %} {% block main %}

{{ job.name }}

{{ job.description }}

{{ job.location }}

Statistics

{% if job._status == "Done" %}
Total
  • Objects{{ job._objects|length }}
  • Species{{ obj_stats|length }}
Counter
    {% for label, count in obj_stats.items()|sort %}
  • {{ label }}{{ count }}
  • {% endfor %}
{% else %} Not enough information gathered to display statistics. {% endif %}
Export to CSV

{% if job._objects|length > 0 %} {% for object in job._objects %} {% endfor %}
Label Time in Time Out Probability Video ID
{{ loop.index }} {{ object.label }} {{ object.time_in }} {{ object.time_out }} {{ "%.5f" | format(object.probability) }} {{ object.track_id }}
{% else %} {% endif %}

{% for video in job.videos %} {% endfor %}
ID Path Frames Timestamp
{{ video.id }} {{ video._path }} {{ video.frame_count }} {{ video.timestamp }}
{% endblock %}