
BackgroundRemover is a command line tool to remove background from image and video using AI, made by nadermx to power https://BackgroundRemoverAI.com. If you wonder why it was made read this short blog post.
ffmpeg 4.4+
To clarify, you must install both python and whatever dev version of python you installed. IE; python3.10-dev with python3.10 or python3.8-dev with python3.8
Go to https://pytorch.org and scroll down to INSTALL PYTORCH section and follow the instructions.
For CPU-only (default):
pip3 install torch torchvision --index-url https://download.pytorch.org/whl/cpu
For GPU (CUDA) support:
# For CUDA 11.8
pip3 install torch torchvision --index-url https://download.pytorch.org/whl/cu118
# For CUDA 12.1
pip3 install torch torchvision --index-url https://download.pytorch.org/whl/cu121
Visit https://pytorch.org/get-started/locally/ to find the correct command for your CUDA version.
To install ffmpeg and python-dev:
sudo apt install ffmpeg python3.6-dev
To Install backgroundremover, install it from pypi
pip install --upgrade pip
pip install backgroundremover
Please note that when you first run the program, it will check to see if you have the u2net models, if you do not, it will pull them from this repo
It is also possible to run this without installing it via pip, just clone the git to local start a virtual env and install requirements and run
python -m backgroundremover.cmd.cli -i "video.mp4" -mk -o "output.mov"
and for windows
python.exe -m backgroundremover.cmd.cli -i "video.mp4" -mk -o "output.mov"
git clone https://github.com/nadermx/backgroundremover.git
cd backgroundremover
docker build -t bgremover .
# Basic usage (models will be downloaded on each run)
alias backgroundremover='docker run -it --rm -v "$(pwd):/tmp" bgremover:latest'
# Recommended: Persist models between runs to avoid re-downloading
mkdir -p ~/.u2net
alias backgroundremover='docker run -it --rm -v "$(pwd):/tmp" -v "$HOME/.u2net:/root/.u2net" bgremover:latest'
# For video processing: Increase shared memory to avoid multiprocessing errors
alias backgroundremover='docker run -it --rm --shm-size=2g -v "$(pwd):/tmp" -v "$HOME/.u2net:/root/.u2net" bgremover:latest'
Note for Docker video processing: Video processing uses multiprocessing which requires adequate shared memory. If you encounter errors like OSError: [Errno 95] Operation not supported, use --shm-size=2g (or higher) or --ipc=host when running the container.
BackgroundRemover automatically detects and uses your GPU if available, which provides significant speed improvements (typically 5-10x faster than CPU).
To verify GPU is being used:
python3 -c "import torch; print('GPU available:', torch.cuda.is_available()); print('GPU name:', torch.cuda.get_device_name(0) if torch.cuda.is_available() else 'N/A')"
Troubleshooting GPU issues:
-gb 1 flagThe tool will automatically fall back to CPU if GPU is not available or encounters errors.
Remove the background from a local file image
backgroundremover -i "/path/to/image.jpeg" -o "output.png"
Supported image formats: .jpg, .jpeg, .png, .heic, .heif (HEIC/HEIF support requires pillow-heif)
You can now remove backgrounds from all supported image or video files in a folder using the --input-folder (-if) option. You can also optionally set an output folder using --output-folder (-of). If --output-folder is not provided, the outputs will be saved in the same input folder, prefixed with output_.
backgroundremover -if "/path/to/image-folder" -of "/path/to/output-folder"
This will process all .jpg, .jpeg, .png, .heic, and .heif images in the folder and save the results to the output folder.
Alpha Matting for Better Edge Quality:
By default, backgroundremover produces soft, natural edges. For some use cases (like cartoons, graphics, or sharp-edged objects), you may want sharper edges or better edge refinement.
# Enable alpha matting for refined edges
backgroundremover -i "/path/to/image.jpeg" -a -o "output.png"
# Adjust erosion size for sharper/softer edges (default: 10)
# Smaller values (1-5) = sharper, harder edges (good for cartoons/graphics)
# Larger values (15-25) = softer, more natural edges (good for portraits)
backgroundremover -i "/path/to/image.jpeg" -a -ae 5 -o "output.png"
Alpha matting parameters:
- -a - Enable alpha matting
- -af - Foreground threshold (default: 240)
- -ab - Background threshold (default: 10)
- -ae - Erosion size (1-25, default: 10) - controls edge sharpness
- -az - Base size (default: 1000) - affects processing resolution
Change the model for different subjects:
# For humans/people - most accurate for human subjects
backgroundremover -i "/path/to/image.jpeg" -m "u2net_human_seg" -o "output.png"
# For general objects - good all-around model (default)
backgroundremover -i "/path/to/image.jpeg" -m "u2net" -o "output.png"
# Faster processing - lower accuracy but quicker
backgroundremover -i "/path/to/image.jpeg" -m "u2netp" -o "output.png"
backgroundremover -i "/path/to/image.jpeg" -om -o "mask.png"
# Replace with red background
backgroundremover -i "/path/to/image.jpeg" -bc "255,0,0" -o "output.png"
# Replace with green background
backgroundremover -i "/path/to/image.jpeg" -bc "0,255,0" -o "output.png"
# Replace with blue background
backgroundremover -i "/path/to/image.jpeg" -bc "0,0,255" -o "output.png"
# Replace background with another image
backgroundremover -i "/path/to/image.jpeg" -bi "/path/to/background.jpg" -o "output.png"
You can use backgroundremover in Unix pipelines by reading from stdin and writing to stdout:
# Read from stdin, write to stdout
cat input.jpg | backgroundremover > output.png
# Use with other tools in a pipeline
curl https://example.com/image.jpg | backgroundremover | convert - -resize 50% smaller.png
# Equivalent explicit syntax
backgroundremover -i - -o - < input.jpg > output.png
Note: Pipe mode assumes image input (not video).
You can run backgroundremover as an HTTP API server:
# Start server on default port 5000
backgroundremover-server
# Specify custom host and port
backgroundremover-server --addr 0.0.0.0 --port 8080
API Usage:
# Upload image via POST
curl -X POST -F "file=@image.jpg" http://localhost:5000/ -o output.png
# Process from URL via GET
curl "http://localhost:5000/?url=https://example.com/image.jpg" -o output.png
# With alpha matting
curl "http://localhost:5000/?url=https://example.com/image.jpg&a=true&af=240" -o output.png
# Choose model
curl "http://localhost:5000/?url=https://example.com/image.jpg&model=u2net_human_seg" -o output.png
Parameters:
- a - Enable alpha matting
- af - Alpha matting foreground threshold (default: 240)
- ab - Alpha matting background threshold (default: 10)
- ae - Alpha matting erosion size (default: 10)
- az - Alpha matting base size (default: 1000)
- model - Model choice: u2net, u2netp, or u2net_human_seg
backgroundremover -i "/path/to/video.mp4" -tv -o "output.mov"
You can now remove backgrounds from all supported image or video files in a folder using the --input-folder (-if) option. You can also optionally set an output folder using --output-folder (-of). If --output-folder is not provided, the outputs will be saved in the same input folder, prefixed with output_.
.movbackgroundremover -if "/path/to/video-folder" -of "/path/to/output-folder" -tv
You can also combine additional options:
backgroundremover -if "videos" -of "processed" -m "u2net_human_seg" -fr 30 -tv
u2net_human_seg model.mov files into the processed/ folder.mp4, .mov, .webm, .ogg, .gifoutput_filename.ext in the output folderbackgroundremover -i "/path/to/video.mp4" -tov -bv "/path/to/background_video.mp4" -o "output.mov"
backgroundremover -i "/path/to/video.mp4" -toi -bi "/path/to/background_image.png" -o "output.mov"
backgroundremover -i "/path/to/video.mp4" -tg -o "output.gif"
Make a matte file for premiere
backgroundremover -i "/path/to/video.mp4" -mk -o "output.matte.mp4"
Important: Transparent .mov outputs default to ProRes 4444 (prores_ks with yuva444p10le) which provides 10-bit color with alpha channel and excellent compatibility with professional video editors (DaVinci Resolve, Premiere, Final Cut Pro). You can switch codecs with --alpha-codec if needed.
Examples:
# Smaller WebM with alpha (if your tools support it)
backgroundremover -i "video.mp4" -tv --alpha-codec libvpx-vp9 -o "output.webm"
# Legacy qtrle codec (lossless but very large files)
backgroundremover -i "video.mp4" -tv --alpha-codec qtrle -o "output.mov"
Recommended video players: - mpv (https://mpv.io) - Best support for transparent videos (Linux, Mac, Windows) - QuickTime Player (Mac) - Native support on macOS - DaVinci Resolve / Adobe Premiere - Full support in video editors (may need to enable alpha channel in properties)
Common issues: - VLC: May not display transparency correctly - shows distorted colors or green/purple tint - Windows Media Player: Limited transparency support - Web browsers: Limited support for ProRes codec
Workarounds if your player doesn't support transparency:
Convert to WebM with VP9 (better compatibility):
bash
ffmpeg -i output.mov -c:v libvpx-vp9 -pix_fmt yuva420p output.webm
Add a colored background (for testing):
bash
ffmpeg -f lavfi -i color=white:s=1920x1080 -i output.mov -filter_complex 'overlay=0:0' -c:v libx264 output_with_bg.mp4
Use the transparent GIF output instead (simpler but lower quality):
bash
backgroundremover -i "video.mp4" -tg -o "output.gif"
Change the framerate of the video (default is set to 30)
backgroundremover -i "/path/to/video.mp4" -fr 30 -tv -o "output.mov"
Set total number of frames of the video (default is set to -1, ie the remove background from full video)
backgroundremover -i "/path/to/video.mp4" -fl 150 -tv -o "output.mov"
Change the gpu batch size of the video (default is set to 1)
backgroundremover -i "/path/to/video.mp4" -gb 4 -tv -o "output.mov"
Change the number of workers working on video (default is set to 1)
backgroundremover -i "/path/to/video.mp4" -wn 4 -tv -o "output.mov"
Note: Using high worker counts (>4) may cause ConnectionResetError or crashes on some systems due to multiprocessing limitations. If you experience errors, reduce the number of workers or use -wn 1. The optimal number depends on your CPU cores and available RAM.
change the model for different background removal methods between u2netp, u2net, or u2net_human_seg and limit the frames to 150
backgroundremover -i "/path/to/video.mp4" -m "u2net_human_seg" -fl 150 -tv -o "output.mov"
from backgroundremover.bg import remove
def remove_bg(src_img_path, out_img_path):
model_choices = ["u2net", "u2net_human_seg", "u2netp"]
f = open(src_img_path, "rb")
data = f.read()
img = remove(data, model_name=model_choices[0],
alpha_matting=True,
alpha_matting_foreground_threshold=240,
alpha_matting_background_threshold=10,
alpha_matting_erode_structure_size=10,
alpha_matting_base_size=1000)
f.close()
f = open(out_img_path, "wb")
f.write(img)
f.close()
```python from backgroundremover.bg import remove
f = open(
$ claude mcp add backgroundremover \
-- python -m otcore.mcp_server <graph>