forked from jjhbw/mosse-tracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmulti-object-debugger.html
More file actions
85 lines (85 loc) · 3.1 KB
/
multi-object-debugger.html
File metadata and controls
85 lines (85 loc) · 3.1 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Multi-Object Tracking Debugger</title>
<script src="https://cdn.tailwindcss.com"></script>
<link
href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&display=swap"
rel="stylesheet"
/>
<style>
body {
font-family: "Open Sans", sans-serif;
}
</style>
</head>
<body class="bg-gradient-to-br from-green-200 to-blue-200">
<div class="text-center pt-10">
<h1 class="text-4xl font-bold mb-10">Multi-Object Tracking Debugger</h1>
<div class="flex justify-center items-start gap-10">
<!-- Webcam or Upload Video -->
<div class="bg-gray-200 p-6 rounded-lg shadow-lg">
<h2 class="text-2xl font-semibold mb-4">Webcam Or Upload Video</h2>
<div class="flex flex-col items-center mb-4">
<button
class="bg-blue-500 text-white px-4 py-2 rounded shadow hover:bg-blue-600 transition-colors mb-2"
>
Open Webcam
</button>
<button
class="bg-blue-500 text-white px-4 py-2 rounded shadow hover:bg-blue-600 transition-colors"
>
Upload Video
</button>
</div>
<video class="w-full h-auto bg-black" controls></video>
</div>
<!-- Controls -->
<div class="bg-gray-200 p-6 rounded-lg shadow-lg">
<div class="mb-4">
<label for="classToTrack" class="block text-lg font-medium mb-2"
>Select Class To Track</label
>
<select
id="classToTrack"
class="w-full p-2 rounded border border-gray-300"
>
<option>Option 1</option>
<option>Option 2</option>
<option>Option 3</option>
</select>
</div>
<div class="mb-6">
<label for="selectTracker" class="block text-lg font-medium mb-2"
>Select Tracker</label
>
<select
id="selectTracker"
class="w-full p-2 rounded border border-gray-300"
>
<option>Option 1</option>
<option>Option 2</option>
<option>Option 3</option>
</select>
</div>
<button
class="bg-green-500 text-white px-4 py-2 rounded shadow hover:bg-green-600 transition-colors mb-2"
>
Start Tracking
</button>
<button
class="bg-green-500 text-white px-4 py-2 rounded shadow hover:bg-green-600 transition-colors"
>
Stop Tracking
</button>
</div>
<!-- Tracks Visualization -->
<div class="bg-gray-200 p-6 rounded-lg shadow-lg">
<h2 class="text-2xl font-semibold mb-4">Tracks Visualization</h2>
<video class="w-full h-auto bg-black" controls></video>
</div>
</div>
</div>
</body>
</html>