This project focuses on background removal using deep learning techniques, with an emphasis on speed and accuracy. Our goal is to create a readily usable, open-source tool for developers, free of charge. It leverages pre-trained models available in the open-source community and integrates them with a FastAPI framework for efficient and effective background removal tasks.
Endpoint | Description |
---|---|
http://localhost:8000/remove-bg | Remove background endpoint |
git clone https://github.com/selldone/bg-remove.git
pip install -r requirements.txt
Download model from (Google Drive) and put the isnet-general-use.pth
file in the service/isnet/model
folder
uvicorn service.app:app --host localhost --port 8000
uvicorn service.app_u2net:app --host localhost --port 8000