File size: 1,302 Bytes
57328cd
 
 
 
 
427ee43
57328cd
 
 
 
 
 
 
 
 
 
 
 
 
 
 
15598ab
142c453
 
0e6bc06
142c453
 
1bd6599
142c453
 
57328cd
 
 
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
<!DOCTYPE html>
<html>
<head>
    <title>Sall-e Garbage Detection</title>
    <link rel="website icon" type="png" href="/statics/icon.png" >
    <link rel="stylesheet" href="/statics/style.css">
</head>
<body>
    <h1>Upload an Image to Simulate Garbage Detection and Robot Navigation</h1>
    <div id="upload-container">
        <input type="file" id="upload" accept="image/*">
    </div>
    <div id="loader" class="loader hidden">
        <div id="spinner"></div>
        <!-- <p>Garbage detection model processing...</p> -->
    </div>
    <video id="outputVideo" class="outputVideo" controls></video>
    <a id="downloadBtn" class="downloadBtn">Download Video</a>
    <h1>Upload an Image to Simulate Front-view Animal Detection</h1>
    <div id="upload-container2">
        <input type="file" id="upload2" accept="image/*">
        <button  id="checkAnimalBtn" onclick="uploadAnimal()">Check Animal</button>
    </div>
    <div id="animal-result"></div>
    <h1>Upload an Image to For Garbage Classification</h1>
    <div id="upload-container3">
        <input type="file" id="upload3" accept="image/*">
        <button  id="checkTrashBtn" onclick="uploadTrash()">Classify Garbage</button>
    </div>
    <div id="trash-result"></div>
    <script src="/statics/script.js"></script>
</body>
</html>