Spaces:
Runtime error
Runtime error
| <head> | |
| <title>Docker Computer Vision</title> | |
| <link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/mvoloskov/potion/potion.min.css"> | |
| <style> | |
| body { | |
| background: #0b0f19; | |
| color: white; | |
| } | |
| </style> | |
| <!-- Load p5.js --> | |
| <script src="https://cdn.jsdelivr.net/npm/p5@1.4.0/lib/p5.js"></script> | |
| </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> | |
| <h3>Examples</h3> | |
| <p><a href="/index.html">Segmentation </a><a href="/tests/index_posenet.html">PoseNet </a><a href="/tests/index_old.html">Halftone </a><a href="/tests/index_segmentation.html">Segmentation</a></p> | |
| </header> | |
| <div> | |
| <canvas id="canvas" width="640" height="480"></canvas> | |
| <main></main> | |
| </div> | |
| <script src="https://unpkg.com/@tensorflow/tfjs-core@3.3.0/dist/tf-core.js"></script> | |
| <script src="https://unpkg.com/@tensorflow/tfjs-converter@3.3.0/dist/tf-converter.js"></script> | |
| <script src="https://unpkg.com/@tensorflow/tfjs-backend-webgl@3.3.0/dist/tf-backend-webgl.js"></script> | |
| <script src="https://unpkg.com/@tensorflow-models/deeplab@0.2.1/dist/deeplab.js"></script> | |
| <script src="sketch4.js" defer></script> | |
| </body> | |
| </html> |