File size: 569 Bytes
44acddd
 
 
 
 
 
 
 
 
9c02022
81536c9
17e13ce
8d06a6e
44acddd
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!-- templates/index.html -->
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Object Detection App</title>
</head>
<body>
    <h1>Object Detection App</h1>
    <form action="/detect/" method="post" enctype="multipart/form-data">
        <label for="file">Upload an Image or Video :</label>
        <input type="file" id="file" name="file" accept=".jpg, .jpeg, .png, .mp4" required>
        <button type="submit">Detect Objects</button>
    </form>
</body>
</html>