-
Notifications
You must be signed in to change notification settings - Fork 0
/
detect.html
64 lines (57 loc) · 1.92 KB
/
detect.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>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Herbify</title>
<link rel="icon" type="image/x-icon" href="css/icon.jpeg">
<link rel="stylesheet" href="css/styles_d.css">
</head>
<body>
<!-- Navigation bar -->
<nav>
<div>
<h1>Herbify</h1>
</div>
<div class="nav-links">
<a href="index.html">Home</a>
<a href="#">About</a>
<a href="#">Contact</a>
</div>
</nav>
<!-- Main content -->
<div class="main-container">
<br> <br> <br> <br>
<div class="upload-container">
<h1>Upload Herb Image</h1>
<p>Please upload a clear photo of the herb's LEAF on a plain background.</p>
<input type="file" id="imageUpload" accept="image/*">
<br>
<button id="predictButton">Predict</button>
</div>
<div class="result-container">
<div class="processed-image-container hidden">
<h2>Detected Herb Image</h2>
<img id="processedImage" src="" alt="preprocessed Image">
</div>
<div class="predictions-container hidden">
<h2>Herb Prediction</h2>
<table id="predictionsTable">
<thead>
<tr>
<th>Herb</th>
<th>Probability (%)</th>
</tr>
</thead>
<tbody id="predictionsList"></tbody>
</table>
</div>
</div>
<div class="predictions-container-bar hidden">
<h2>Graph</h2>
<div id="barGraph"></div>
</div>
</div>
<script src="js/script_d.js"></script>
</body>
</html>