-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (26 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
28
29
30
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>XR - Hands Trails</title>
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, user-scalable=no"/>
<link rel="stylesheet" href="./css/styles.css">
</head>
<body>
<p id="status">Loading...</p>
<div id="container">
<gum-av></gum-av>
<canvas id="canvas"></canvas>
</div>
<canvas id="canvas"></canvas>
<script src="third_party/gum-av.js" type="module"></script>
<script src="https://cdn.jsdelivr.net/npm/@tensorflow/tfjs-core"></script>
<script src="https://cdn.jsdelivr.net/npm/@tensorflow/tfjs-backend-webgl"></script>
<script src="https://cdn.jsdelivr.net/npm/@tensorflow/tfjs-converter"></script>
<script src="https://cdn.jsdelivr.net/npm/@tensorflow-models/handpose"></script>
<script src="https://cdn.jsdelivr.net/npm/@tensorflow/tfjs-backend-wasm/dist/tf-backend-wasm.js"></script>
<script type="module" src="js/main-handpose.js"></script>
</body>
</html>