yuragoithf commited on
Commit
05558e5
·
verified ·
1 Parent(s): ba2277b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -35,8 +35,8 @@ description = "Upload an image and get the depth visualization"
35
  examples =[['house.jpg'], ['plane.webp'], ['room.webp']]
36
 
37
  iface = gr.Interface(fn=process_image,
38
- inputs=gr.inputs.Image(type="pil"),
39
- outputs=gr.outputs.Image(type="pil", label="Predicted depth"),
40
  title=title,
41
  description=description,
42
  examples=examples)
 
35
  examples =[['house.jpg'], ['plane.webp'], ['room.webp']]
36
 
37
  iface = gr.Interface(fn=process_image,
38
+ inputs=gr.components.Image(type="pil"),
39
+ outputs=gr.components.Image(type="pil", label="Predicted depth"),
40
  title=title,
41
  description=description,
42
  examples=examples)