Spaces:
Sleeping
Sleeping
File size: 695 Bytes
f5ce3ae |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
import gradio as gr
from rembg import remove
from PIL import Image
import numpy as np
def remove_background(input_image):
# Convert gradio image to PIL Image
input_image = Image.fromarray(input_image.astype('uint8'), 'RGB')
# Remove background
output_image = remove(input_image)
# Convert RGBA to RGB (remove alpha channel)
output_image = output_image.convert("RGB")
# Convert PIL Image back to numpy array
return np.array(output_image)
iface = gr.Interface(
fn=remove_background,
inputs=gr.Image(),
outputs=gr.Image(),
title="Background Removal App",
description="Upload an image to remove its background."
)
iface.launch()
|