Spaces:
Paused
Paused
Update templates/results.html
Browse files- templates/results.html +5 -11
templates/results.html
CHANGED
@@ -1,21 +1,15 @@
|
|
1 |
<!DOCTYPE html>
|
2 |
<html>
|
3 |
<head>
|
4 |
-
<title>
|
5 |
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
|
6 |
</head>
|
7 |
<body>
|
8 |
-
<h1>
|
9 |
<div class="image-container">
|
10 |
-
<
|
11 |
-
|
12 |
-
<img src="{{ original_image }}" alt="Original Image">
|
13 |
-
</div>
|
14 |
-
<div>
|
15 |
-
<h2>Detected Objects</h2>
|
16 |
-
<img src="{{ processed_image }}" alt="Processed Image">
|
17 |
-
</div>
|
18 |
</div>
|
19 |
-
<p><a href="{{ url_for('index') }}">
|
20 |
</body>
|
21 |
</html>
|
|
|
1 |
<!DOCTYPE html>
|
2 |
<html>
|
3 |
<head>
|
4 |
+
<title>Image Results</title>
|
5 |
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
|
6 |
</head>
|
7 |
<body>
|
8 |
+
<h1>Image Results</h1>
|
9 |
<div class="image-container">
|
10 |
+
<h2>Captured/Uploaded Image</h2>
|
11 |
+
<img src="{{ image }}" alt="Image">
|
|
|
|
|
|
|
|
|
|
|
|
|
12 |
</div>
|
13 |
+
<p><a href="{{ url_for('index') }}">Try another</a></p>
|
14 |
</body>
|
15 |
</html>
|