DreamerHC commited on
Commit
0e45ea8
·
verified ·
1 Parent(s): 570ea82

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -3
app.py CHANGED
@@ -7,10 +7,11 @@ def remove_background(image):
7
 
8
  iface = gr.Interface(
9
  fn=remove_background,
10
- inputs=gr.inputs.Image(type="pil"),
11
- outputs=gr.outputs.Image(type="pil"),
12
  title="배경 제거 도구",
13
  description="이 도구는 이미지에서 배경을 제거합니다. 이미지를 업로드하면 배경이 제거된 이미지를 받을 수 있습니다."
14
  )
15
 
16
- iface.launch()
 
 
7
 
8
  iface = gr.Interface(
9
  fn=remove_background,
10
+ inputs=gr.Image(type="pil"),
11
+ outputs=gr.Image(type="pil"),
12
  title="배경 제거 도구",
13
  description="이 도구는 이미지에서 배경을 제거합니다. 이미지를 업로드하면 배경이 제거된 이미지를 받을 수 있습니다."
14
  )
15
 
16
+ if __name__ == "__main__":
17
+ iface.launch()