xhk commited on
Commit
0309c8e
1 Parent(s): e06d87c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +12 -11
app.py CHANGED
@@ -463,22 +463,23 @@ if __name__ == "__main__":
463
  )
464
 
465
  with gr.Column():
466
- gr.Image(source="meta.png", tool="label", style="width: 50px; height: 50px; margin-right: 10px;")
467
-
468
- gr.Markdown(
469
- """
470
- # SAM`s output
471
- """)
472
 
473
  gallery1 = gr.Gallery(
474
  label="Generated images", show_label=False, elem_id="gallery"
475
  ).style(preview=True, grid=2, object_fit="scale-down")
476
 
477
- gr.Markdown(
478
- """
479
- # ASAM`s output
480
- ![ViVO](vivo.png)
481
- """)
 
482
  gallery2 = gr.Gallery(
483
  label="Generated images", show_label=False, elem_id="gallery"
484
  ).style(preview=True, grid=2, object_fit="scale-down")
 
463
  )
464
 
465
  with gr.Column():
466
+ with gr.Row(equal_height=True):
467
+ gr.Image(source='upload', value="meta.png",tool="label", show_download_button=False, min_width=0, height=50, width=100,container=False, style="width: 0.5px; height: 0.5px; margin-right: 0px;")
468
+ # gr.Markdown(
469
+ # """
470
+ # # SAM-Output
471
+ # """)
472
 
473
  gallery1 = gr.Gallery(
474
  label="Generated images", show_label=False, elem_id="gallery"
475
  ).style(preview=True, grid=2, object_fit="scale-down")
476
 
477
+ with gr.Row(equal_height=True):
478
+ gr.Image(source='upload', value="vivo.png",tool="label", show_download_button=False, min_width=0, height=50, width=100,container=False, style="width: 0.5px; height: 0.5px; margin-right: 0px;")
479
+ # gr.Markdown(
480
+ # """
481
+ # # SAM-Output
482
+ # """)
483
  gallery2 = gr.Gallery(
484
  label="Generated images", show_label=False, elem_id="gallery"
485
  ).style(preview=True, grid=2, object_fit="scale-down")