-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhtml5facedetect.html
38 lines (35 loc) · 1.09 KB
/
html5facedetect.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
<!DOCTYPE html>
<html>
<!--
Derived from http://kanasansoft.com/Kanasansoft/computer_vision_for_real_time_processing/computer_vision_for_real_time_processing.html
Modified by Sandra Mau, July 2012 & 6 Sep 2013
I believe the project has been moved to github: https://github.com/liuliu/ccv
-->
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
<head>
<meta charset="utf-8">
<meta http-equiv="Content-Script-type" content="text/javascript">
<meta http-equiv="Content-Style-type" content="text/css">
<script type="text/javascript" src="js/ccv_for_.js"></script>
<script type="text/javascript" src="js/face0000.js"></script>
<script src="js/computer.js" type="text/javascript"></script>
<title>Computer Vision for Real Time Processing</title>
<style>
#video{
}
#display{
}
</style>
</head>
<body>
<h1>Playing with HTML5 Webcam with Javascript Face Detection</h1>
<p id="errormsg"></p>
Speed: <div id="speed"></div>
<br/>
<div>Face detected draw:</div>
<canvas id="display"></canvas>
<br/>
<div>Raw camera:</div>
<video id="video"></video>
</body>
</html>