Spaces:
Paused
Paused
Create results.html
Browse files- templates/results.html +15 -0
templates/results.html
ADDED
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE html>
|
2 |
+
<html>
|
3 |
+
<head>
|
4 |
+
<title>Object Detection Results</title>
|
5 |
+
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
|
6 |
+
</head>
|
7 |
+
<body>
|
8 |
+
<h1>Object Detection Results</h1>
|
9 |
+
<h2>Original Image</h2>
|
10 |
+
<img src="{{ original_image }}" alt="Original Image" style="max-width: 45%;">
|
11 |
+
<h2>Detected Objects</h2>
|
12 |
+
<img src="{{ processed_image }}" alt="Processed Image" style="max-width: 45%;">
|
13 |
+
<p><a href="{{ url_for('index') }}">Upload another image</a></p>
|
14 |
+
</body>
|
15 |
+
</html>
|