Brian Gabini
commited on
Commit
·
5baee12
1
Parent(s):
da557de
refactor: hide source for output image
Browse files
app.py
CHANGED
@@ -18,7 +18,7 @@ with gr.Blocks() as interface:
|
|
18 |
gr.Markdown("Input an image below then click **Run** or use the cached examples for quick results. For quicker processing (typically 1-2 minutes), it's suggested to use low-exposure images of 500x500 pixels.")
|
19 |
with gr.Row():
|
20 |
input_image = gr.Image(label="Input Image", type="numpy", sources=["upload"], interactive=True)
|
21 |
-
output_image = gr.Image(label="Enhanced Image", type="numpy", interactive=
|
22 |
|
23 |
with gr.Row():
|
24 |
submit_btn = gr.Button("Run")
|
|
|
18 |
gr.Markdown("Input an image below then click **Run** or use the cached examples for quick results. For quicker processing (typically 1-2 minutes), it's suggested to use low-exposure images of 500x500 pixels.")
|
19 |
with gr.Row():
|
20 |
input_image = gr.Image(label="Input Image", type="numpy", sources=["upload"], interactive=True)
|
21 |
+
output_image = gr.Image(label="Enhanced Image", type="numpy", sources=["upload"], interactive=False)
|
22 |
|
23 |
with gr.Row():
|
24 |
submit_btn = gr.Button("Run")
|