-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
30 lines (30 loc) · 1.23 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./assets/style/style.css">
<title>Face Recognition</title>
</head>
<body>
<video id="background-video" autoplay loop muted poster="./assets/video/matrix-bg.mp4">
<source src="./assets/video/matrix-bg.mp4" type="video/mp4">
</video>
<div class="text">
<br/>
<h1>Face Recognition</h1>
<p>ft. <a href="https://www.tensorflow.org/js/models" target="_blank">Tensorflow Blazeface Model</a></p>
</div>
<div class="video">
<video id="video" style="display:none;" autoplay></video>
<canvas id="canvas" width="600px" height="400px"></canvas>
</div>
<footer class="footer-links">
<p><a href="https://github.com/yskooo" target="_blank">Built with 🕴️ by Harold Martin Patacsil</a></p>
</footer>
</body>
<script src="https://cdn.jsdelivr.net/npm/@tensorflow/tfjs"></script>
<script src="https://cdn.jsdelivr.net/npm/@tensorflow-models/blazeface"></script>
<script src="./assets/js/script.js"></script>
</html>