mrdbourke commited on
Commit
8b5581d
·
verified ·
1 Parent(s): 0996aba

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +3 -3
index.html CHANGED
@@ -281,7 +281,7 @@
281
 
282
  <h2>Bounding Box Coordinates</h2>
283
  <div class="format">
284
- <div class="format-title">XYXY (x₁, y₁, x₂, y₂)</div>
285
  <div id="xyxy" class="coords">No box drawn</div>
286
  </div>
287
 
@@ -328,7 +328,7 @@
328
  <tr>
329
  <td><strong>Faster R-CNN</strong></td>
330
  <td>Region proposal network based detection. Typically uses absolute coordinates during inference, but may use normalized coordinates during training.</td>
331
- <td><strong>XYXY</strong> (x₁, y₁, x₂, y₂) or normalized coordinates</td>
332
  </tr>
333
  <tr>
334
  <td><strong>SSD</strong></td>
@@ -343,7 +343,7 @@
343
  <tr>
344
  <td><strong>CornerNet</strong></td>
345
  <td>Anchor-free detector that predicts keypoint heatmaps. Uses normalized coordinates for better scale invariance.</td>
346
- <td><strong>Normalized Corners</strong> (x₁, y₁, x₂, y₂) in range [0,1]</td>
347
  </tr>
348
  </tbody>
349
  </table>
 
281
 
282
  <h2>Bounding Box Coordinates</h2>
283
  <div class="format">
284
+ <div class="format-title">XYXY (x1, y1, x2, y2) -> top left: (x1, y1), bottom right: (x2, y2)</div>
285
  <div id="xyxy" class="coords">No box drawn</div>
286
  </div>
287
 
 
328
  <tr>
329
  <td><strong>Faster R-CNN</strong></td>
330
  <td>Region proposal network based detection. Typically uses absolute coordinates during inference, but may use normalized coordinates during training.</td>
331
+ <td><strong>XYXY</strong> (x1, y1, x2, y2) or normalized coordinates</td>
332
  </tr>
333
  <tr>
334
  <td><strong>SSD</strong></td>
 
343
  <tr>
344
  <td><strong>CornerNet</strong></td>
345
  <td>Anchor-free detector that predicts keypoint heatmaps. Uses normalized coordinates for better scale invariance.</td>
346
+ <td><strong>Normalized Corners</strong> (x1, y1, x2, y2) in range [0,1]</td>
347
  </tr>
348
  </tbody>
349
  </table>