Spaces:
Paused
Paused
Update templates/results.html
Browse files- templates/results.html +10 -4
templates/results.html
CHANGED
@@ -6,10 +6,16 @@
|
|
6 |
</head>
|
7 |
<body>
|
8 |
<h1>Object Detection Results</h1>
|
9 |
-
<
|
10 |
-
|
11 |
-
|
12 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
13 |
<p><a href="{{ url_for('index') }}">Upload another image</a></p>
|
14 |
</body>
|
15 |
</html>
|
|
|
6 |
</head>
|
7 |
<body>
|
8 |
<h1>Object Detection Results</h1>
|
9 |
+
<div class="image-container">
|
10 |
+
<div>
|
11 |
+
<h2>Original Image</h2>
|
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') }}">Upload another image</a></p>
|
20 |
</body>
|
21 |
</html>
|