-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.html
More file actions
28 lines (26 loc) · 950 Bytes
/
index.html
File metadata and controls
28 lines (26 loc) · 950 Bytes
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>
<head>
<title>Face Tracking Camera + Spline</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div id="video-overlay">
<video id="videoFeed" autoplay></video>
<canvas id="outputCanvas"></canvas>
</div>
<div id="debug-overlay"></div>
<canvas id="canvas3d"></canvas>
<!-- External Libraries -->
<script src="https://cdn.jsdelivr.net/npm/dat.gui@0.7.9/build/dat.gui.min.js"></script>
<script async src="https://docs.opencv.org/4.7.0/opencv.js" onload="onOpenCvReady()"></script>
<script type="module">
import { Application } from 'https://unpkg.com/@splinetool/runtime@1.9.54/build/runtime.js';
window.Application = Application;
</script>
<!-- Application Code -->
<script src="app.js"></script>
<script src="faceTracking.js"></script>
</body>
</html>