-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
34 lines (28 loc) · 1.22 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
28
29
30
31
32
33
34
<!DOCTYPE html>
<html lang="en">
<head>
<title>SmartCamera - Hitta saker</title>
<meta charset="utf-8">
<!-- Import the webpage's stylesheet -->
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1>Hitta saker med den smarta kameran. Använder TensorFlow.JS</h1>
<p id="status">Väntar på att TF.js laddar...</p>
<p>Vänta tills vår model är laddad innan vi kan öppna kameran...</p>
<section id="demos" class="invisible">
<p>Håll några objekt framför kameran och testa om vi kan identifiera dem!
När allt är klart klicka på "Starta webbkamera"</p>
<div id="liveView" class="camView">
<button id="webcamButton">Starta webbkamera</button>
<video id="webcam" autoplay muted width="640" height="480"></video>
</div>
</section>
<!-- Import TensorFlow.js library -->
<script src="https://cdn.jsdelivr.net/npm/@tensorflow/tfjs/dist/tf.min.js" type="text/javascript"></script>
<!-- Load the coco-ssd model to use to recognize things in images -->
<script src="js/dist/coco-ssd.min.js" defer></script>
<!-- Import the page's JavaScript to do some stuff -->
<script src="script.js" defer></script>
</body>
</html>