CoolFace
Apppublic

eaglelandsonce/JSObjectIDExample

sourceHugging Faceupdated 2y agoView on Hugging Face
0likes
index.html24 linesDownload Raw Back to root
1<!DOCTYPE html>2<html lang="en">3 4<head>5    <meta charset="UTF-8" />6    <link rel="stylesheet" href="style.css" />7    <meta name="viewport" content="width=device-width, initial-scale=1.0" />8    <title>Transformers.js - Object Detection demo</title>9</head>10 11<body>12    <main class="container">13        <label class="custom-file-upload">14            <input id="file-upload" type="file" accept="image/*" />15            <img class="upload-icon" src="https://huggingface.co/datasets/Xenova/transformers.js-docs/resolve/main/upload-icon.png" />16            Upload image17        </label>18        <div id="image-container"></div>19        <p id="status"></p>20    </main>21    <script src="index.js" type="module"></script>22</body>23 24</html>