Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -236,11 +236,11 @@ with gr.Blocks(theme='bethecloud/storj_theme') as iface:
|
|
236 |
mask_img = gr.Image(label="Mask Image", type="numpy", height=300)
|
237 |
with gr.Row():
|
238 |
with gr.Column():
|
239 |
-
method = gr.Radio(["Poisson", "Mixed Gradient", "Laplacian"], label="Blending Method", value="
|
240 |
with gr.Column():
|
241 |
blend_button = gr.Button("Blend Images")
|
242 |
|
243 |
-
output_image = gr.Image(label="Blended Image")
|
244 |
|
245 |
blend_button.click(
|
246 |
blend_images,
|
|
|
236 |
mask_img = gr.Image(label="Mask Image", type="numpy", height=300)
|
237 |
with gr.Row():
|
238 |
with gr.Column():
|
239 |
+
method = gr.Radio(["Poisson", "Mixed Gradient", "Laplacian"], label="Blending Method", value="Mixed Gradient")
|
240 |
with gr.Column():
|
241 |
blend_button = gr.Button("Blend Images")
|
242 |
|
243 |
+
output_image = gr.Image(label="Blended Image", height=300)
|
244 |
|
245 |
blend_button.click(
|
246 |
blend_images,
|