Update app.py
Browse files
app.py
CHANGED
|
@@ -202,9 +202,9 @@ with gr.Blocks(title = "Hello",
|
|
| 202 |
|
| 203 |
|
| 204 |
with gr.Column(scale=2):
|
| 205 |
-
img_outlines = gr.Image(label = "Outlines", type = "pil", format = 'png')
|
| 206 |
-
img_overlay = gr.Image(label = "Overlay", type = "pil", format = 'png')
|
| 207 |
-
flows = gr.Image(label = "Cellpose flows", type = "pil", format = 'png')
|
| 208 |
#masks = gr.Image(label = "Output image", type = "numpy")
|
| 209 |
|
| 210 |
|
|
|
|
| 202 |
|
| 203 |
|
| 204 |
with gr.Column(scale=2):
|
| 205 |
+
img_outlines = gr.Image(label = "Outlines", type = "pil", format = 'png', width = "50vw", height = "20vw")
|
| 206 |
+
img_overlay = gr.Image(label = "Overlay", type = "pil", format = 'png', width = "50vw", height = "20vw")
|
| 207 |
+
flows = gr.Image(label = "Cellpose flows", type = "pil", format = 'png', width = "50vw", height = "20vw")
|
| 208 |
#masks = gr.Image(label = "Output image", type = "numpy")
|
| 209 |
|
| 210 |
|