face-api/example/webcam.html

16 lines
569 B
HTML
Raw Normal View History

2021-01-10 16:35:51 +01:00
<!DOCTYPE html>
<html lang="en">
<head>
2021-01-10 16:41:03 +01:00
<title>FaceAPI Live WebCam Demo</title>
2021-01-10 16:35:51 +01:00
<meta http-equiv="content-type">
<meta content="text/html">
<meta charset="UTF-8">
<script src="./webcam.js" type="module"></script>
</head>
<body style="font-family: monospace; background: black; color: white; font-size: 16px; line-height: 22px; margin: 0;">
<video id="video" playsinline class="video"></video>
<canvas id="canvas" class="canvas" style="position: fixed; top: 0; left: 0; z-index: 10"></canvas>
<div id="log"></div>
</body>
</html>