Spaces:
Running
Running
add download button to imageslider
Browse files
app.py
CHANGED
@@ -150,7 +150,10 @@ css = """
|
|
150 |
demo = gr.Interface(
|
151 |
fn=process_img,
|
152 |
inputs=[gr.Image(type="pil", label="Input", value="images/img002x4.png"),],
|
153 |
-
outputs=ImageSlider(label="Super-Resolved Image",
|
|
|
|
|
|
|
154 |
title=title,
|
155 |
description=description,
|
156 |
article=article,
|
|
|
150 |
demo = gr.Interface(
|
151 |
fn=process_img,
|
152 |
inputs=[gr.Image(type="pil", label="Input", value="images/img002x4.png"),],
|
153 |
+
outputs=ImageSlider(label="Super-Resolved Image",
|
154 |
+
type="pil",
|
155 |
+
show_download_button=True,
|
156 |
+
), #[gr.Image(type="pil", label="Ouput", min_width=500)],
|
157 |
title=title,
|
158 |
description=description,
|
159 |
article=article,
|