Spaces:
Running
Running
File size: 451 Bytes
465f2d5 daa4e3b d3bc1f7 465f2d5 |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
import gradio as gr
from rembg import remove
title = "RBIA"
description = "This background remover tool with ia!"
article = "<p style='text-align: center;'><a href='https://hf.co/openskyml' target='_blank'>🏠 Home page</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() |