2021-10-27 14:16:06 +02:00
<!DOCTYPE html>
< html lang = "en" >
< head >
< meta charset = "utf-8" >
< title > Human< / title >
< meta name = "viewport" content = "width=device-width" id = "viewport" >
< meta name = "keywords" content = "Human" >
< meta name = "application-name" content = "Human" >
< 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>" >
< meta name = "theme-color" content = "#000000" >
< 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" >
< script src = "./index.js" type = "module" > < / script >
< style >
@font-face { font-family: 'Lato'; font-display: swap; font-style: normal; font-weight: 100; src: local('Lato'), url('../../assets/lato-light.woff2') }
html { font-family: 'Lato', 'Segoe UI'; font-size: 16px; font-variant: small-caps; }
2021-10-27 15:45:38 +02:00
body { margin: 0; background: black; color: white; overflow-x: hidden; width: 100vw; height: 100vh; }
2021-10-27 14:16:06 +02:00
body::-webkit-scrollbar { display: none; }
< / style >
< / head >
< body >
< canvas id = "canvas" style = "margin: 0 auto; width: 100%" > < / canvas >
< video id = "video" playsinline style = "display: none" > < / video >
< pre id = "status" style = "position: absolute; top: 20px; right: 20px; background-color: grey; padding: 8px; box-shadow: 2px 2px black" > < / pre >
2021-10-27 15:45:38 +02:00
< pre id = "log" style = "padding: 8px" > < / pre >
< div id = "performance" style = "position: absolute; bottom: 0; width: 100%; padding: 8px; font-size: 0.8rem;" > < / div >
2021-10-27 14:16:06 +02:00
< / body >
< / html >