-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathexample.html
More file actions
25 lines (20 loc) · 893 Bytes
/
example.html
File metadata and controls
25 lines (20 loc) · 893 Bytes
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
<!doctype html>
<html lang="en">
<head>
<title>Facetector</title>
</head>
<body>
<video id="webcam" width="640" height="480" style="display:none;"></video>
<div id="log"></div>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script>
<script type="text/javascript" src="js/lib/jsfeat-min.js"></script>
<script type="text/javascript" src="js/lib/bbf_face.js"></script>
<script type="text/javascript" src="js/lib/underscore.js"></script>
<script type="text/javascript" src="js/lib/compatibility.js"></script>
<script type="text/javascript" src="js/lib/profiler.js"></script>
<script type="text/javascript" src="js/facetector.js"></script>
<script>
var finder = new Facetector( "webcam" )
</script>
</body>
</html>