-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdetect.html
60 lines (55 loc) · 2.03 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Agro Companion</title>
<link rel="icon" type="image/x-icon" href="css/icon.webp">
<link rel="stylesheet" href="css/styles_detect.css">
</head>
<body>
<!-- Navigation bar -->
<nav>
<div class="nav-container">
<div class="brand">Agro Companion</div>
<button class="menu-toggle" id="menu-toggle">☰</button>
<div class="nav-links" id="nav-links">
<a href="index.html">Home</a>
<a href="recommend.html">Crop Recommendation</a>
<a href="info.html">Crop Info</a>
</div>
</div>
</nav>
<!-- Main content -->
<div class="main-container">
<br> <br>
<div class="upload-container">
<h1>Upload Soil Image</h1>
<p>Please upload a clear photo of the soil</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 id="crop-name"></h2>
<p id="recommend-crop"></p>
<button id="recommendButton" onclick="window.location.href='recommend.html'">Advance Crop Recommendation</button>
</div>
<div class="predictions-container hidden">
<h2>Soil Prediction</h2>
<table id="predictionsTable">
<thead>
<tr>
<th>Soil</th>
<th>Probability (%)</th>
</tr>
</thead>
<tbody id="predictionsList"></tbody>
</table>
</div>
</div>
</div>
<script src="js/script_detect.js"></script>
</body>
</html>