human/demo/face3d/index.html

33 lines
1.7 KiB
HTML
Raw Normal View History

2021-03-29 21:59:16 +02:00
<!DOCTYPE html>
<html lang="en">
<head>
<title>Human</title>
2021-04-04 15:25:18 +02:00
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<meta name="viewport" content="width=device-width, shrink-to-fit=yes">
<meta name="keywords" content="Human">
2021-03-29 21:59:16 +02:00
<meta name="application-name" content="Human">
2021-04-04 15:25:18 +02:00
<meta name="description" content="Human: 3D Face Detection, Body Pose, Hand & Finger Tracking, Iris Tracking, Age & Gender Prediction, Emotion Prediction & Gesture Recognition; Author: Vladimir Mandic <https://github.com/vladmandic>">
<meta name="msapplication-tooltip" content="Human: 3D Face Detection, Body Pose, Hand & Finger Tracking, Iris Tracking, Age & Gender Prediction, Emotion Prediction & Gesture Recognition; Author: Vladimir Mandic <https://github.com/vladmandic>">
2021-05-31 00:45:39 +02:00
<meta name="theme-color" content="#000000">
2021-06-14 14:16:10 +02:00
<link rel="manifest" href="../manifest.webmanifest">
<link rel="shortcut icon" href="../../favicon.ico" type="image/x-icon">
<link rel="apple-touch-icon" href="../../assets/icon.png">
2021-06-16 21:40:35 +02:00
<script src="./face3d.js" type="module"></script>
2021-03-29 21:59:16 +02:00
<style>
2021-06-14 14:16:10 +02:00
@font-face { font-family: 'Lato'; font-display: swap; font-style: normal; font-weight: 100; src: local('Lato'), url('../../assets/lato-light.woff2') }
2021-03-29 21:59:16 +02:00
html { font-family: 'Lato', 'Segoe UI'; font-size: 16px; font-variant: small-caps; }
2021-04-04 15:25:18 +02:00
body { margin: 0; background: black; color: white; overflow-x: hidden; }
2021-03-29 21:59:16 +02:00
body::-webkit-scrollbar { display: none; }
.video { display: none; }
.canvas { margin: 0 auto; }
</style>
</head>
<body>
<div id="media">
<canvas id="canvas" class="canvas"></canvas>
<video id="video" playsinline class="video"></video>
2021-04-02 14:37:35 +02:00
<div id="log"></div>
2021-03-29 21:59:16 +02:00
</div>
</body>
</html>