In this tutorial I will show you how to remove the background of images with Python program.

According to the official website, Python version must be 3.9 or above.
CODE:
from rembg import remove
import easygui as eg
from PIL import Image
input_path = eg.fileopenbox(title='Select image file')
output_path = 'images/output.png'
input = Image.open(input_path)
output = remove(input)
output.save(output_path)
image = Image.open(output_path)
image.show()
Install rembg, if you use CPU, pip install rembg
If using GPU, pip install rembg[gpu]
Install PIL,
pip install Pillow
Install easygui,
pip install easygui

Image by Freepik
VIDEO GUIDE:
Post your comments / questions
Recent Article
- How to fix HAXM is not installed |in Android Studio
- How to fix CMOS Checksum Error in Computer or Laptop | SOLVED
- Reactivating windows after a Hardware change on PC or Laptop
- FIXED: Windows reported that the hardware of your device has changed. Error code :0xc004F211
- "redirect" is not defined pylance("reportUndefinedVariable)
- This action cannot be completed because the file is open in SQL Server(SQLEXPRESS) - FIXED
- Unicode error 'unicodeescape' codec can't decode bytes in position 2-3: truncated UXXXXXXXX escape
- Could not find the 'angular-devkit/build-angular:dev-server' builder's node package | Angular Error
Related Article