File size: 1,510 Bytes
709edf5
 
 
d1ebf6e
a77de0a
709edf5
a77de0a
 
 
 
 
 
709edf5
 
 
 
 
a77de0a
709edf5
 
 
d1ebf6e
 
 
a77de0a
 
 
709edf5
 
 
 
 
 
 
 
 
 
 
a77de0a
807bb16
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<!DOCTYPE html>

<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>