Forwarded from Cᴏᴅᴇs Sɴɪᴘᴘᴇᴛs (</> ᴍᴜᴋᴇsʜ </>)
⌨️ Remove the Background of an Image Using Python
📱 Join us for more Python tips: @CodesSnippet
#python #programming #code #python3 #dailypost
# pip install rembg pillow
from rembg import remove
from PIL import Image
input_path = "in.png"
output_path = "out.png"
input = Image.open(input_path)
output = remove(input)
output.save(output_path)
📱 Join us for more Python tips: @CodesSnippet
#python #programming #code #python3 #dailypost
👍5