taesiri commited on
Commit
92a2afb
·
verified ·
1 Parent(s): 59c3490

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -2
app.py CHANGED
@@ -235,14 +235,16 @@ Performs keypoint transform from a 7x7 gird on the source image to the target im
235
  with gr.Row():
236
  # Add an Image component to display the source image.
237
  image1 = gr.Image(
238
- shape=(240, 240),
 
239
  type="pil",
240
  label="Source Image",
241
  )
242
 
243
  # Add an Image component to display the target image.
244
  image2 = gr.Image(
245
- shape=(240, 240),
 
246
  type="pil",
247
  label="Target Image",
248
  )
 
235
  with gr.Row():
236
  # Add an Image component to display the source image.
237
  image1 = gr.Image(
238
+ height=240,
239
+ width=240,
240
  type="pil",
241
  label="Source Image",
242
  )
243
 
244
  # Add an Image component to display the target image.
245
  image2 = gr.Image(
246
+ height=240,
247
+ width=240,
248
  type="pil",
249
  label="Target Image",
250
  )