2021-09-20 23:17:13 +02:00
<!DOCTYPE html>
< html lang = "en" >
< head >
< title > Human Browser Tests< / title >
< 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" >
< 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>" >
< link rel = "shortcut icon" href = "../../favicon.ico" type = "image/x-icon" >
< link rel = "apple-touch-icon" href = "../../assets/icon.png" >
< 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: 14px; font-variant: small-caps; }
2022-08-15 17:29:56 +02:00
body { margin: 0; background: black; color: white; width: 100vw; overflow-x: hidden; }
2022-08-19 15:15:29 +02:00
.canvas { position: fixed; bottom: 10px; right: 10px; width: 256px; height: 256px; z-index: 99; }
.events { position: fixed; top: 10px; right: 10px; width: 12rem; height: 1.25rem; background-color: grey; padding: 8px; z-index: 99; }
.state { position: fixed; top: 60px; right: 10px; width: 12rem; height: 1.25rem; background-color: grey; padding: 8px; z-index: 99; }
2022-08-15 17:29:56 +02:00
.pre { line-height: 150%; white-space: break-spaces; }
2021-09-20 23:17:13 +02:00
< / style >
< / head >
< body >
2021-09-21 03:59:49 +02:00
< pre id = "log" class = "pre" > < / pre >
2021-09-20 23:17:13 +02:00
< div id = "events" class = "events" > < / div >
< div id = "state" class = "state" > < / div >
2022-08-21 19:34:51 +02:00
< canvas id = "canvas" class = "canvas" width = "256" height = "256" > < / canvas >
< script type = "module" src = "./browser.js" > < / script >
2021-09-20 23:17:13 +02:00
< / body >
< / html >