Spaces:
Sleeping
Sleeping
File size: 1,144 Bytes
1823601 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 | <!doctype html>
<title>PoseSync</title>
<h1 style="text-align: center;">PoseSync</h1>
<br>
{% if error %}
<h3>{{ error }}</h3>
{% endif %}
{% if filename %}
<div style="margin: 10px auto;">
<p> Crop Method =
{{ crop_method }}
</p>
<video autoplay="autoplay" controls="controls" preload="preload">-->
<source src="{{ url_for('display_video', filename=filename) }}" type="video/mp4"></source>
</video>
</div>
{% endif %}
<h3>Select videos for matching</h3>
<form method="post" action="/" enctype="multipart/form-data">
<dl>
<p> Reference Video :
<input id="ref_video" type="file" name="ref_file" autocomplete="off" required>
</p>
</dl>
<dl>
<p> Test Video :
<input id="test_video" type="file" name="test_file" autocomplete="off" required>
</p>
</dl>
<label> Select Video Cropping Method : </label>
<select name="crop_method">
<option value="YOLO"> YOLO
</option>
<option value="Tracker"> CV2.Tracker
</option>
</select>
<p>
<input type="submit" value="Proceed">
</p>
</form>
|