docker-opencv / public /index.html
Javiai's picture
update
a77de0a
raw
history blame
957 Bytes
<html>
<head>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/mvoloskov/potion/potion.min.css">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/lib/p5.js"></script>
<style>
body {
background: #0b0f19;
color: white;
}
</style>
</head>
<body>
<header>
<h1>Docker Opencv APP</h1>
<p>A App developed for apply IA in streaming video in JavaScript</p>
<p>This is a work in progress project that want to work with P5.js, OpenCV, Tensorflow.js, Node.js and Docker</p>
<p>Right now, only apply a halftone over the webcam video</p>
</header>
<script src="sketch.js"></script>
<p>Blur Size: <input type="range" id="blurSize" value="30"></p>
<p>Low Threshold: <input type="range" id="lowThreshold" value="15"></p>
<p>High Threshold: <input type="range" id="highThreshold" value="25"></p>
<div>
<main>
</main>
</div>
</body>
</html>