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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Feature Extractor</title>
<link href="favicon.png" rel="icon" type="image.png"/>
<link href="https://unpkg.com/wingcss" rel="stylesheet" type="text/css"/>
<link href="style.css" rel="stylesheet" type="text/css"/>
</head>
<body>
<div class="col-4" id="main">
<a href="/demo.mp4"><h5>Watch the demo</h5></a>
<div id="video">
</div>
<div id="data">
<button id="blue">🔵 - <span id="blueCount">0</span> images</button>
<button id="red">🔴 - <span id="redCount">0</span> images</button>
<br>
<button id="train" class='outline'>Train 🚋</button>
<button id="predict" class='outline'>Predict 🔮</button>
<br>
<em id="info">You should add at least 15 examples of each before training!</em>
</div>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.7.3/p5.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.7.3/addons/p5.dom.min.js"></script>
<script src="https://unpkg.com/ml5"></script>
<script src="script.js"></script>
</body>
</html>