Ryan Pfister commited on
Commit
ef56c8b
·
1 Parent(s): e875ce7

Use HTML table layout to preserve image aspect ratios

Browse files
Files changed (1) hide show
  1. README.md +10 -9
README.md CHANGED
@@ -63,15 +63,16 @@ These metrics were computed on a validation set of 5,000 images with 10,777 inst
63
 
64
  Here are some examples of the model's person segmentation capabilities:
65
 
66
- <div style="display: flex; justify-content: center; margin-bottom: 10px;">
67
- <img src="examples/example1.png" alt="Person segmentation example 1" width="45%" style="margin-right:2%"/>
68
- <img src="examples/example2.png" alt="Person segmentation example 2" width="45%" style="margin-left:2%"/>
69
- </div>
70
-
71
- <div style="display: flex; justify-content: center; margin-bottom: 10px;">
72
- <img src="examples/example3.png" alt="Person segmentation example 3" width="45%" style="margin-right:2%"/>
73
- <img src="examples/example4.png" alt="Person segmentation example 4" width="45%" style="margin-left:2%"/>
74
- </div>
 
75
 
76
  The model effectively segments people in various poses, lighting conditions, and contexts, providing accurate masks even with complex backgrounds.
77
 
 
63
 
64
  Here are some examples of the model's person segmentation capabilities:
65
 
66
+ <table>
67
+ <tr>
68
+ <td><img src="examples/example1.png" alt="Person segmentation example 1" /></td>
69
+ <td><img src="examples/example2.png" alt="Person segmentation example 2" /></td>
70
+ </tr>
71
+ <tr>
72
+ <td><img src="examples/example3.png" alt="Person segmentation example 3" /></td>
73
+ <td><img src="examples/example4.png" alt="Person segmentation example 4" /></td>
74
+ </tr>
75
+ </table>
76
 
77
  The model effectively segments people in various poses, lighting conditions, and contexts, providing accurate masks even with complex backgrounds.
78