-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
31 lines (20 loc) · 918 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
29
30
31
<html>
<head>
<title>TFHoloPOC</title>
<script src="https://aframe.io/releases/1.2.0/aframe.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@tensorflow/[email protected]/dist/tf.min.js"></script>
<link rel="manifest" href="tfHoloPoc.webmanifest">
<script src="imagenet-labels.js"></script>
<script src="registerServiceWorker.js"></script>
</head>
<body>
<a-scene background="transparent: true">
<a-entity camera="active: true" look-controls wasd-controls position="0 1.6 0">
<a-circle color="#fff" radius="0.005" position="0 0 -1"></a-circle>
<a-entity id="output" text="value: Please allow webcam access\nand wait a few moments...; color: #000; align: center; font: mozillavr;"
position="0 -0.17 -1" scale="0.8 0.8 0.8"></a-entity>
</a-entity>
</a-scene>
<script src="tfHoloPoc.js"></script>
</body>
</html>