ehristoforu's picture
Update app.py
3751358
raw
history blame
482 Bytes
import gradio as gr
from rembg import remove
title = "RBOI"
description = "This background remover tool is designed by Evgeniy Hristoforu!"
article = "<p style='text-align: center;'>Powered by<a href='https://hf.co/openskyml' target='_blank'>OpenSkyML</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()