forked from Development12345/face-detection
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathface.html
executable file
·21 lines (21 loc) · 873 Bytes
/
face.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<html lang="en">
<!-- Adapted to work with the getUserMedia API using code from http://wesbos.com/html5-video-face-detection-canvas-javascript/ -->
<head>
<meta charset="utf-8">
<title>HTML5 Face Detection - JavaScript getUserMedia API and Groucho Marx glasses!</title>
<link rel="stylesheet" type="text/css" href="styles/base.css">
<link rel="stylesheet" type="text/css" href="styles/parallax.css">
</head>
<body>
<div id="middle-layer"></div>
<div id="top-layer"></div>
<p id="info">Please allow access to your camera!</p>
<canvas id="output"></canvas>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script src="scripts/ccv.js"></script>
<script src="scripts/face.js"></script>
<script src="scripts/detection.js"></script>
<script src="scripts/parallax.js"></script>
</body>
</html>