Spaces:
Running
Running
Output image section fix
Browse files
app.py
CHANGED
|
@@ -161,7 +161,7 @@ def zoom_image(zoom, x_shift, y_shift, input_img, output_img = None):
|
|
| 161 |
with gr.Blocks() as demo:
|
| 162 |
with gr.Row():
|
| 163 |
input_img = gr.Image(label="Input Image")
|
| 164 |
-
output_img = gr.Image(label="Result")
|
| 165 |
|
| 166 |
restore_type = gr.Radio(["enhance", "colorize", "inpainting", "selfie", "enhanced+background"], value="enhance", type="value", label="Type")
|
| 167 |
max_res = gr.Slider(1, 200, step=0.5, value=100, label="Output image Resolution Percentage (Higher% = longer processing time)")
|
|
|
|
| 161 |
with gr.Blocks() as demo:
|
| 162 |
with gr.Row():
|
| 163 |
input_img = gr.Image(label="Input Image")
|
| 164 |
+
output_img = gr.Image(label="Result", interactive=False)
|
| 165 |
|
| 166 |
restore_type = gr.Radio(["enhance", "colorize", "inpainting", "selfie", "enhanced+background"], value="enhance", type="value", label="Type")
|
| 167 |
max_res = gr.Slider(1, 200, step=0.5, value=100, label="Output image Resolution Percentage (Higher% = longer processing time)")
|