Technologies β’ Getting Started β’ Contribute
an application to remove the background from images, using Python as the back-end and libraries that handle image cropping.
- Python 3.13
- FastAPI (High-performance web framework)
- Rembg (AI for background removal)
- Pillow (Image processing)
git clone https://github.com/Guixrz/background-remove.git
cd background-removeCreate and activate the virtual environment:
python -m venv env
source backend/env/Scripts/activateInstall dependencies:
pip install -r requirements.txtStart the server:
uvicorn backend.api.main:app --reloadContributions are always welcome! If you have an idea to improve the snippet or the API:
- Fork the project.
- Create a branch for your modification:
git checkout -b feature/my-improvement. - Commit your changes:
git commit -m 'feat: my new feature'. - Push to the branch:
git push origin feature/my-improvement. - Open a Pull Request.