heboya8 commited on
Commit
959ca15
·
verified ·
1 Parent(s): 534b3be

Update templates/results.html

Browse files
Files changed (1) hide show
  1. templates/results.html +10 -4
templates/results.html CHANGED
@@ -6,10 +6,16 @@
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>
 
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>