-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
27 lines (24 loc) · 898 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Gunny</title>
<link rel="stylesheet" href="src/styles.css">
<script src="node_modules/image-capture/lib/imagecapture.min.js"></script>
</head>
<body>
<div id="container">
<div id="loading-indicator">
<img id="loading" src="src/assets/loading.gif" alt="Loading Spinner">
<h1>Loading</h1>
</div>
<canvas id="canvas" style="display: none;"></canvas>
<img id="image" style="display: none;">
</div>
<script src="node_modules/@tensorflow/tfjs/dist/tf.min.js"></script>
<script src="node_modules/@tensorflow-models/coco-ssd/dist/coco-ssd.min.js"></script>
<script src="src/main.js"></script>
</body>
</html>