EduMatthews commited on
Commit
b641f73
·
verified ·
1 Parent(s): 105fea8

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -8
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
- pillow_mask = pipe(image, return_mask = True)
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='png'),
17
- title='Remoção de background de imagens',
18
- description='Envie uma imagem e veja o background removido automaticamente. A imagem resultante será no formato PNG.'
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__":