Skip to content

Instantly share code, notes, and snippets.

@mahimairaja
Created April 17, 2023 07:46
Show Gist options
  • Save mahimairaja/cd6410a06e44ba6f32d5e77aa4d42cd3 to your computer and use it in GitHub Desktop.
Save mahimairaja/cd6410a06e44ba6f32d5e77aa4d42cd3 to your computer and use it in GitHub Desktop.
# pip install rembg
from PIL import Image
from rembg import remove
input = Image.open('mahimai.jpeg')
output = remove(input)
output.save('output.png')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment