rishi9440's picture
Update app.py
8cf25b1
raw
history blame contribute delete
No virus
840 Bytes
import gradio as gr
from rembg import remove
from PIL import Image
def remove_background(input_image):
input = Image.open(input_image) # load image
output = remove(input) # remove background
return output
input_image = gr.inputs.Image(type="filepath", label="Input Image")
output_image = gr.inputs.Image(type="filepath", label="Output Image")
# Create a Gradio interface
iface = gr.Interface(remove_background,
inputs=input_image,
outputs=output_image,
title='Image Background Remover',
description='Upload an image and it will remove.',
)
img = Image.open(r"https://media.geeksforgeeks.org/wp-content/uploads/20210318103632/gfg-300x300.png")
img.show()
# Launch the interface
iface.launch()