JayRaghav's picture
a7
3d5ad08
raw
history blame contribute delete
No virus
571 Bytes
import gradio as gr
from rembg import remove
title = "Vanish Background"
description = "Remove background for any image , To use it, simply upload your image and wait. Read more at the link below of official documentation."
article = "<p style='text-align: center;'><a href='https://github.com/danielgatis/rembg' target='_blank'>Github Repo</a></p>"
def segment(image):
return remove(image)
demo = gr.Interface(fn=segment, inputs="image", outputs="image", title=title, description=description, article=article)
demo.queue(concurrency_count=3)
demo.launch()