-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (30 loc) · 1.12 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Object Detection</title>
<link rel="stylesheet" href="./styles.css">
</head>
<body>
<h1>玉米叶片病变检测系统</h1>
<div class="container">
<!-- Form for Image Upload -->
<form action="/detect_image" method="post" enctype="multipart/form-data">
<h2>上传图片</h2>
<input type="file" name="file" accept="image/*" required>
<button type="submit">开始检测图片中的物体</button>
</form>
<!-- Form for Video Upload -->
<form action="/detect_video" method="post" enctype="multipart/form-data">
<h2>上传视频</h2>
<input type="file" name="file" accept="video/*" required>
<button type="submit">开始检测视频中的物体</button>
</form>
<!-- Link for Live Webcam Detection -->
<form action="/live_detection" method="get">
<h2>实时网络摄像头监测</h2>
<button class="live-button" type="submit">开始检测摄像头</button>
</form>
</div>
</body>
</html>