alok94 commited on
Commit
4ecbe00
·
1 Parent(s): b1a2548

Image size test

Browse files
Files changed (1) hide show
  1. app.py +8 -6
app.py CHANGED
@@ -378,12 +378,14 @@ with gr.Blocks(css=css) as demo:
378
  gr.Markdown("<h2>By Alok</h2>", elem_id="name_head")
379
  with gr.Row():
380
  with gr.Column():
381
- gr.Markdown("<h3>Browse or Select from given Image</h3>", elem_id='info')
382
- img_upload=gr.Image(type="pil", height=300, width=400)
383
- with gr.Column():
384
- clear=gr.ClearButton(img_upload)
385
- with gr.Column():
386
- btn=gr.Button("Identify")
 
 
387
 
388
  with gr.Column():
389
  gry=gr.Gallery(value=skin_images, columns=4, show_label=False)
 
378
  gr.Markdown("<h2>By Alok</h2>", elem_id="name_head")
379
  with gr.Row():
380
  with gr.Column():
381
+ with gr.Row():
382
+ gr.Markdown("<h3>Browse or Select from given Image</h3>", elem_id='info')
383
+ img_upload=gr.Image(type="pil", height=200, width=300)
384
+ with gr.Row():
385
+ with gr.Column():
386
+ clear=gr.ClearButton(img_upload)
387
+ with gr.Column():
388
+ btn=gr.Button("Identify")
389
 
390
  with gr.Column():
391
  gry=gr.Gallery(value=skin_images, columns=4, show_label=False)