-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
33 lines (31 loc) · 1.88 KB
/
index.html
File metadata and controls
33 lines (31 loc) · 1.88 KB
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
<!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">
<title>Face detetcion app using TensorFlow.js</title>
<link rel="shortcut icon" href="https://agent-sidd.github.io/img/ico.png" type="image/x-icon" />
<link rel="apple-touch-icon" href="https://agent-sidd.github.io/img/apple-touch-icon.png" />
<link rel="apple-touch-icon" sizes="57x57" href="https://agent-sidd.github.io/img/apple-touch-icon-57x57.png" />
<link rel="apple-touch-icon" sizes="72x72" href="https://agent-sidd.github.io/img/apple-touch-icon-72x72.png" />
<link rel="apple-touch-icon" sizes="76x76" href="https://agent-sidd.github.io/img/apple-touch-icon-76x76.png" />
<link rel="apple-touch-icon" sizes="114x114" href="https://agent-sidd.github.io/img/apple-touch-icon-114x114.png" />
<link rel="apple-touch-icon" sizes="120x120" href="https://agent-sidd.github.io/img/apple-touch-icon-120x120.png" />
<link rel="apple-touch-icon" sizes="144x144" href="https://agent-sidd.github.io/img/apple-touch-icon-144x144.png" />
<link rel="apple-touch-icon" sizes="152x152" href="https://agent-sidd.github.io/img/apple-touch-icon-152x152.png" />
<link rel="apple-touch-icon" sizes="180x180" href="https://agent-sidd.github.io/img/apple-touch-icon-180x180.png" />
<link rel="stylesheet" href="./assets/Style/style.css">
</head>
<body>
<div>
<h1>Face detection app Using Tensorflow.js</h1>
<br>
<video id="video" autoplay controls style="display:none;"></video>
<canvas id="canvas" width="600px" height="400px"></canvas>
</div>
<script src="https://cdn.jsdelivr.net/npm/@tensorflow/tfjs"></script>
<script src="https://cdn.jsdelivr.net/npm/@tensorflow-models/blazeface"></script>
<script src="./assets/scripts/script.js"></script>
</body>
</html>