-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
40 lines (36 loc) · 1.12 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
31
32
33
34
35
36
37
38
39
40
<!DOCTYPE html>
<html>
<head>
<title>Self vs. Other Experiment</title>
<script src="js/jquery-2.1.0.min.js"></script>
<script src='js/zig.min.js'></script>
<script src='js/fiat.js'></script>
<script src='js/camera.js'></script>
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<div id="radar"></div>
<p id="total"><span>0</span> total users</p>
<div id="blur"></div>
<!-- canvas for Kinect vision -->
<div id="container">
<div id="canvasCont">
<div id="depthCan">
<canvas style="width:320px; height:240px;" id="depth" width="160" height="120"></canvas>
</div>
<div id="imageCan">
<canvas style="width:320px; height:240px;" id="image" width="160" height="120"></canvas>
</div>
<div id="labelCan">
<canvas style="width:320px; height:240px;" id="labelMap" width="160" height="120"></canvas>
</div>
</div>
</div>
<!-- enable vision from Kinect -->
<div id="pluginContainer">
<object id="ZigPlugin" type="application/x-zig" width="0" height="0">
<param name="onload" value="ZigPluginLoaded" />
</object>
</div>
</body>
</html>