-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
64 lines (58 loc) · 2.05 KB
/
index.html
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<!DOCTYPE html>
<html lang="en">
<head>
<title style="display: none">Flower Classification</title>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<link rel="shortcut icon" href="rosa.png" />
</head>
<body>
<header>
<div class="title text">
<h1 class="title__content">
Flower Classification - Supervisioned Learning
</h1>
</div>
</header>
<main>
<div class="fields">
<div class="image-field-upload text">
<label for="file-upload">Upload Image</label>
<input
type="file"
id="file-upload"
accept="image/*"
onchange="handleUpload()"
/>
</div>
<div class="image-field-url text">
<label for="image-url">Image URL:</label>
<input type="text" id="image-url" />
<button type="button" onclick="predictFromUrl()">Predict</button>
</div>
</div>
<div class="image-container">
<img id="uploaded-image" src=""/>
</div>
<div id="label-container" class="classifications"></div>
</main>
<footer>
<div class="footer_owner">
<span>All Copyright Reserverd to <a href="https://www.github.com/Ivi-SCD" style="color:inherit" target="_blank">Ivi-SCD </a></span>
</div>
<div class="footer_group">
<ul>
Group:
<li>Ivisson Pereira Do Nascimento Alves</li>
<li>Maria Clara Batista Dos Santos</li>
<li>Pedro Augusto Veiga Pessoa de Araújo</li>
</ul>
</div>
</footer>
<script src="https://cdn.jsdelivr.net/npm/@tensorflow/tfjs@latest/dist/tf.min.js" style="display:none"></script>
<script src="https://cdn.jsdelivr.net/npm/@teachablemachine/image@latest/dist/teachablemachine-image.min.js" style="display:none"></script>
<script src="main.js" style="display:none"></script>
</body>
</html>