Update app.py
Browse files
app.py
CHANGED
@@ -7,10 +7,11 @@ def remove_background(image):
|
|
7 |
|
8 |
iface = gr.Interface(
|
9 |
fn=remove_background,
|
10 |
-
inputs=gr.
|
11 |
-
outputs=gr.
|
12 |
title="배경 제거 도구",
|
13 |
description="이 도구는 이미지에서 배경을 제거합니다. 이미지를 업로드하면 배경이 제거된 이미지를 받을 수 있습니다."
|
14 |
)
|
15 |
|
16 |
-
|
|
|
|
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()
|