-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathindex.html
30 lines (28 loc) · 961 Bytes
/
index.html
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
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Webcam Image Classification</title>
<link rel="stylesheet" href="styles.css" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.9.0/p5.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.9.0/addons/p5.dom.min.js"></script>
<script
src="https://unpkg.com/ml5@latest/dist/ml5.min.js"
type="text/javascript"
></script>
</head>
<body>
<div class="container">
<h1>Webcam Image Classification</h1>
<div class="video-container">
<video id="video" width="100%" height="auto"></video>
<canvas id="canvas" width="320" height="240"></canvas>
</div>
<p class="label" id="label"></p>
</div>
<audio id="myAudio">
<source src="beeb.wav" />
</audio>
<script src="sketch.js"></script>
</body>
</html>