Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -4,18 +4,16 @@ from PIL import Image
|
|
4 |
|
5 |
def remove_background(image):
|
6 |
pipe = pipeline("image-segmentation", model="briaai/RMBG-1.4", trust_remote_code=True)
|
7 |
-
|
8 |
-
|
9 |
-
pillow_image
|
10 |
-
|
11 |
return pillow_image
|
12 |
|
13 |
app = gr.Interface(
|
14 |
-
fn=remove_background,
|
15 |
inputs=gr.components.Image(type="pil"),
|
16 |
-
outputs=gr.components.Image(type="pil", format=
|
17 |
-
title=
|
18 |
-
description=
|
19 |
)
|
20 |
|
21 |
if __name__ == "__main__":
|
|
|
4 |
|
5 |
def remove_background(image):
|
6 |
pipe = pipeline("image-segmentation", model="briaai/RMBG-1.4", trust_remote_code=True)
|
7 |
+
pillow_mask = pipe(image, return_mask=True)
|
8 |
+
pillow_image = pipe(image)
|
|
|
|
|
9 |
return pillow_image
|
10 |
|
11 |
app = gr.Interface(
|
12 |
+
fn=remove_background,
|
13 |
inputs=gr.components.Image(type="pil"),
|
14 |
+
outputs=gr.components.Image(type="pil", format="png"), # Especificar saída como PNG
|
15 |
+
title="Remoção de Background de Imagens",
|
16 |
+
description="Envie uma imagem e veja o background sendo removido automaticamente. A imagem resultante será no formato PNG."
|
17 |
)
|
18 |
|
19 |
if __name__ == "__main__":
|