-
Notifications
You must be signed in to change notification settings - Fork 148
/
Copy pathindex.html
45 lines (33 loc) · 1.02 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="css/brfv4_examples_theme.css">
<title>Beyond Reality Face - BRFv4 - HTML5/Javascript face tracking</title>
<script src="js/libs/createjs/preloadjs.min.js"></script>
<script src="js/BRFv4Demo.js"></script>
<script>
window.onload = brfv4Example.start; //see js/BRFv4Demo.js
</script>
</head>
<body>
<div id="_wrapper">
<div id="_content">
<video id="_webcam" playsinline></video>
<canvas id="_imageData"></canvas>
<canvas id="_faceSub"></canvas>
<canvas id="_t3d"></canvas>
<canvas id="_f3d"></canvas>
<canvas id="_drawing"></canvas>
<div id="_stats"></div>
<div id="_progressBar"></div>
<a href="http://www.tastenkunst.com" target="_blank">
<img id="_brfv4_logo" src="assets/brfv4_logo.png" alt="BRFv4 Logo"/>
</a>
</div>
<div id="_subline"></div>
<div id="_highlight"><pre><code class="javascript" id="_gist"></code></pre></div>
</div>
<div id="_settingsRight"></div>
</body>
</html>