Simple script demo, on how to remove background from a video. It take a video, extract it frames into images, apply background removal and then stitch it back together into a new video.
- cd into this directory
cd bgRemove
- create new virtual environment
python3 -m venv .venv
- get into the environment
.\.venv\Scripts\activate
- install dependencies
pip install -r .\requirements.txt
- run the script
cd src && python main.py
- get our of venv
deactivate