-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
27 lines (23 loc) · 1.03 KB
/
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
<html>
<head>
<!-- Load the latest version of TensorFlow.js -->
<script src="https://unpkg.com/@tensorflow/tfjs"></script>
<!-- Load MobileNet model -->
<script src="https://unpkg.com/@tensorflow-models/mobilenet"></script>
<!-- Load KNN Classifier -->
<script src="https://unpkg.com/@tensorflow-models/knn-classifier"></script>
</head>
<body>
<div id="console"></div>
<!-- Add an image that we will use to test -->
<!-- img id="img" crossOrigin src="https://i.imgur.com/T5u8S3h.jpg?1" width="227" height="227"> -->
<!-- Set up webcam video element -->
<video autoplay playsinline muted id='webcam' width="224" height="224"></video>
<button id="class-a">Add A</button>
<button id="class-b">Add B</button>
<button id="class-c">Add C</button>
<button id="class-d">Add D</button>
<!-- Load index.js after the content of the page -->
<script src="index.js"></script>
</body>
</html>