{% extends "base.html" %} {% block title %}{{ project_name }} - Video Annotation{% endblock %} {% block content %}
{% for video in videos %}

{{ video.id }}

First frame of {{ video.filename }}
{% endfor %}
{% for cls in classes %} {% endfor %}
{{ cls }}

{% if setup_type != 'Video Segmentation' %} {% endif %} {% if setup_type != 'Video Detection' %} {% endif %}

Configure VFTracker

Select Tracking Method

OpenCV Tracker

Fast tracking using traditional computer vision

Interpolation

Simple interpolation between keyframes

Smart Propagator

Advanced AI-powered segmentation

Export Annotations

{% if 'Detection' in setup_type %} Export Detection Annotations {% else %} Export Segmentation Annotations {% endif %}

{% if 'Detection' in setup_type %}
COCO COCO
MOT MOT
{% elif 'Segmentation' in setup_type %}
COCO COCO
Mask Sequence Mask Sequence
Mask Video Mask Video
{% endif %}
{% endblock %}