JayRaghav commited on
Commit
f971fef
1 Parent(s): 78854cd
Files changed (1) hide show
  1. app.py +4 -0
app.py CHANGED
@@ -3,5 +3,9 @@ from rembg import remove
3
 
4
  def segment(image):
5
  return remove(image)
 
 
 
 
6
 
7
  gr.Interface(fn=segment, inputs="image", outputs="image").launch()
 
3
 
4
  def segment(image):
5
  return remove(image)
6
+
7
+ title = "Vanish Background"
8
+ description = "Remove background for any image , To use it, simply upload your image and wait. Read more at the link below of official documentation."
9
+ article = "<p style='text-align: center;'><a href='https://github.com/danielgatis/rembg' target='_blank'>Github Repo</a></p>"
10
 
11
  gr.Interface(fn=segment, inputs="image", outputs="image").launch()