gokaygokay commited on
Commit
24e33f6
·
verified ·
1 Parent(s): dd886b7

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
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="Poisson")
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,