Update app.py
Browse files
app.py
CHANGED
|
@@ -101,12 +101,12 @@ with gr.Blocks(css=css) as demo:
|
|
| 101 |
with gr.Column(scale=2):
|
| 102 |
gr.Examples([["example.jpg"], ["example_2.jpg"], ["example_3.jpg"]], inputs=[inp],label='Or use one of these examples:')
|
| 103 |
with gr.Row().style(equal_height=True,height=200,rounded=False):
|
| 104 |
-
|
| 105 |
-
|
| 106 |
with gr.Column(scale=1):
|
| 107 |
btn = gr.Button("↓ Extract ↓")
|
| 108 |
-
|
| 109 |
-
|
| 110 |
with gr.Row().style():
|
| 111 |
with gr.Column(scale=2):
|
| 112 |
imgout = gr.Image(label='Uploaded document:',elem_id="inp")
|
|
|
|
| 101 |
with gr.Column(scale=2):
|
| 102 |
gr.Examples([["example.jpg"], ["example_2.jpg"], ["example_3.jpg"]], inputs=[inp],label='Or use one of these examples:')
|
| 103 |
with gr.Row().style(equal_height=True,height=200,rounded=False):
|
| 104 |
+
with gr.Column(scale=1):
|
| 105 |
+
img2 = gr.Image("drinking.gif",label=' ',visible=False).style(rounded=True)
|
| 106 |
with gr.Column(scale=1):
|
| 107 |
btn = gr.Button("↓ Extract ↓")
|
| 108 |
+
with gr.Column(scale=1):
|
| 109 |
+
img3 = gr.Image("snowangel.gif",label=' ',visible=False).style(rounded=True)
|
| 110 |
with gr.Row().style():
|
| 111 |
with gr.Column(scale=2):
|
| 112 |
imgout = gr.Image(label='Uploaded document:',elem_id="inp")
|