-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
28 lines (26 loc) · 879 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>The Pickled Cartographer</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- import the webpage's stylesheet -->
<link rel="stylesheet" href="style.css">
<!-- import the webpage's javascript file -->
<script src="lib/contours.js" defer></script>
<script src="lib/camera.js" defer></script>
<script src="lib/cv.js" defer></script>
<script src="script.js" defer></script>
</head>
<body>
<div class="wrapper">
<div class="app">
<video class="live-feed" poster="cover.jpg"></video>
<canvas class="output cover"></canvas>
</div>
<div class="info"><ul class="matches"></ul></div>
<div class="match"></div>
</div>
</body>
</html>