This repository has been archived by the owner on Jan 7, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 58
/
index.html
74 lines (69 loc) · 2.34 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<style>
body {
font-family: 'Roboto', 'Noto', sans-serif;
line-height: 1.5;
background-color: #fbfbfb;
margin: 20px;
}
#contents {
display: flex;
flex-direction: row;
flex-wrap: wrap;
}
#contents > div {
padding: 16px;
width: 25vw;
min-width: 400px;
height: auto;
}
img {
width: 100%;
height: auto;
object-fit: scale-down;
}
</style>
<h1>Web Depth Camera Capture demos</h1>
<div id="contents">
<div>
<img src="gesture/hands_interaction.gif">
<br>
<p>
Moving boxes using hands demo shows live depth captured mesh interaction with scene objects; combining 3D world and depth captured hands (or other objects) rendering and Bullet Physics. <a href="https://01org.github.io/depth-camera-web-demo/gesture/index.html">Run the live demo here.</a>
</p>
</div>
<div>
<img src="backgroundremoval.gif">
<br>
<p>
Simple background removal implemented as flood-fill of background color to similarly colored pixels.
Works only with simple backgrounds - e.g. room walls on the demo gif.
<a href="https://01org.github.io/depth-camera-web-demo/depthdemo.html">Run the live demo here.</a>
</p>
</div>
<div>
<img src="typing_in_the_air/typing_in_the_air.gif">
<br>
<p>
Typing in the air tutorial shows how to use depth stream and WebGL transform feedback to do simple gesture recognition.
Check the <a href="typing_in_the_air/doc/tutorial.html">tutorial text</a> and
<a href="https://01org.github.io/depth-camera-web-demo/typing_in_the_air/front_capture_typing.html">run the live demo here.</a>
</p>
</div>
<div>
<img src="https://github.com/01org/depthcamera-pointcloud-web-demo/raw/master/recording.gif">
<br>
<p>
3D point cloud rendering demo shows how to render and synchronize depth and color video on GPU.
<a href="https://01org.github.io/depthcamera-pointcloud-web-demo/">Run the live demo here.</a>
</p>
</div>
<div>
<img src="how_the_demo_looks.gif">
<br>
<p>
HTML5 Depth Capture tutorial shows how to access depth stream, check the
<a href="https://01.org/chromium/blogs/astojilj/2017/depth-camera-capture-html5">tutorial text</a>
or <a href="https://01org.github.io/depth-camera-web-demo/depthdemo.html">run the live demo here.</a>
</p>
</div>
</div>