### README (README.md) # BackgroundRemover background remover video
BackgroundRemover is a command line tool to remove background from [image](https://github.com/nadermx/backgroundremover#image) and [video](https://github.com/nadermx/backgroundremover#video) using AI, made by [nadermx](https://john.nader.mx) to power [https://BackgroundRemoverAI.com](https://backgroundremoverai.com). If you wonder why it was made read this [short blog post](https://johnathannader.com/my-first-open-source-project/).
### Requirements * python >= 3.6 * python3.6-dev #or what ever version of python you use * torch and torchvision stable version (https://pytorch.org) * 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 #### How to install torch and ffmpeg Go to https://pytorch.org and scroll down to `INSTALL PYTORCH` section and follow the instructions. **For CPU-only (default):** ```bash pip3 install torch torchvision --index-url https://download.pytorch.org/whl/cpu ``` **For GPU (CUDA) support:** ```bash # 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:** ```bash sudo apt install ffmpeg python3.6-dev ``` ### Installation To Install backgroundremover, install it from pypi ```bash 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 ```bash python -m backgroundremover.cmd.cli -i "video.mp4" -mk -o "output.mov" ``` and for windows ```bash python.exe -m backgroundremover.cmd.cli -i "video.mp4" -mk -o "output.mov" ``` ### Installation using Docker ```bash 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. ### GPU Acceleration 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:** ```bash 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:** 1. **GPU not detected**: Ensure you installed the CUDA-compatible version of PyTorch (see installation instructions above) 2. **Out of memory errors**: Reduce GPU batch size with `-gb 1` flag 3. **Slow performance on CPU**: Install CUDA-compatible PyTorch for GPU acceleration 4. **CUDA version mismatch**: Match your PyTorch CUDA version with your system's CUDA installation The tool will automatically fall back to CPU if GPU is not available or encounters errors. ### Usage as a cli ## Image Remove the background from a local file image ```bash backgroundremover -i "/path/to/image.jpeg" -o "output.png" ``` Supported image formats: `.jpg`, `.jpeg`, `.png`, `.heic`, `.heif` (HEIC/HEIF support requires pillow-heif) ### Process all images in a folder 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_`. ### Example: Folder of Images ```bash 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. ### Advance usage for image background removal **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. ```bash # 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:** ```bash # 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" ``` ### Output only the mask (binary mask/matte) ```bash backgroundremover -i "/path/to/image.jpeg" -om -o "mask.png" ``` ### Replace background with a custom color ```bash # 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 a custom image ```bash # Replace background with another image backgroundremover -i "/path/to/image.jpeg" -bi "/path/to/background.jpg" -o "output.png" ``` ### Use with pipes (stdin/stdout) You can use backgroundremover in Unix pipelines by reading from stdin and writing to stdout: ```bash # 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). ### Run as HTTP API Server You can run backgroundremover as an HTTP API server: ```bash # Start server on default port 5000 backgroundremover-server # Specify custom host and port backgroundremover-server --addr 0.0.0.0 --port 8080 ``` API Usage: ```bash # 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` ## Video ### remove background from video and make transparent mov ```bash backgroundremover -i "/path/to/video.mp4" -tv -o "output.mov" ``` ### Process all videos in a folder 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_`. ### Example: Folder of Videos to Transparent `.mov` ```bash backgroundremover -if "/path/to/video-folder" -of "/path/to/output-folder" -tv ``` You can also combine additional options: ```bash backgroundremover -if "videos" -of "processed" -m "u2net_human_seg" -fr 30 -tv ``` - Uses the `u2net_human_seg` model - Overrides video framerate to 30 fps - Outputs transparent `.mov` files into the `processed/` folder - Supported video formats: `.mp4`, `.mov`, `.webm`, `.ogg`, `.gif` - Output files will be named like `output_filename.ext` in the output folder ### remove background from local video and overlay it over other video ```bash backgroundremover -i "/path/to/video.mp4" -tov -bv "/path/to/background_video.mp4" -o "output.mov" ``` ### remove background from local video and overlay it over an image ```bash backgroundremover -i "/path/to/video.mp4" -toi -bi "/path/to/background_image.png" -o "output.mov" ``` ### remove background from video and make transparent gif ```bash backgroundremover -i "/path/to/video.mp4" -tg -o "output.gif" ``` ### Make matte key file (green screen overlay) Make a matte file for premiere ```bash backgroundremover -i "/path/to/video.mp4" -mk -o "output.matte.mp4" ``` ### Video Playback and Compatibility **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: ```bash # 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:** 1. **Convert to WebM with VP9 (better compatibility):** ```bash ffmpeg -i output.mov -c:v libvpx-vp9 -pix_fmt yuva420p output.webm ``` 2. **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 ``` 3. **Use the transparent GIF output instead** (simpler but lower quality): ```bash backgroundremover -i "video.mp4" -tg -o "output.gif" ``` ### Advance usage for video Change the framerate of the video (default is set to 30) ```bash 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) ```bash 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) ```bash 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) ```bash 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 ```bash backgroundremover -i "/path/to/video.mp4" -m "u2net_human_seg" -fl 150 -tv -o "output.mov" ``` ## As a library ### Remove background image ```python 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() ``` ### Generate only a binary mask ```python from backgroundremover.bg import remove f = open("input.jpg", "rb") data = f.read() mask = remove(data, model_name="u2net", only_mask=True) f.close() f = open("mask.png", "wb") f.write(mask) f.close() ``` ### Replace background with custom color ```python from backgroundremover.bg import remove f = open("input.jpg", "rb") data = f.read() # Use RGB tuple for background color (255, 0, 0) = red img = remove(data, model_name="u2net", background_color=(255, 0, 0)) f.close() f = open("output.png", "wb") f.write(img) f.close() ``` ### Replace background with custom image ```python from backgroundremover.bg import remove # Read input image with open("input.jpg", "rb") as f: input_data = f.read() # Read background image with open("background.jpg", "rb") as f: bg_data = f.read() # Remove background and composite over background image result = remove(input_data, model_name="u2net", background_image=bg_data) # Save result with open("output.png", "wb") as f: f.write(result) ``` ## Troubleshooting ### "EOFError: Ran out of input" or Model Loading Errors If you see errors like `EOFError: Ran out of input` or model loading failures: **Cause:** The model file download was corrupted or interrupted. **Solution:** ```bash # Delete the corrupted model file rm ~/.u2net/u2net.pth # Or for other models: rm ~/.u2net/u2netp.pth rm ~/.u2net/u2net_human_seg.pth # Then run backgroundremover again - it will re-download the model backgroundremover -i "your-image.jpg" -o "output.png" ``` **Prevention:** The tool now automatically validates and retries failed downloads, but if you have an old corrupted model from a previous version, you'll need to delete it manually. ### Background Not Removed or Parts Missing If the background is not being removed properly, or parts of your subject are disappearing: 1. **Try a different model:** - Use `u2net_human_seg` for people/portraits - Use `u2net` (default) for general objects - The model choice significantly affects results 2. **Adjust alpha matting:** - Enable with `-a` flag for better edge detection - Adjust threshold values `-af` and `-ab` if parts are incorrectly classified 3. **Check your input:** - Ensure good lighting and contrast between subject and background - Avoid backgrounds that are similar in color to your subject - Consider manually cropping to include more recognizable background ### Transparency Issues or Strange Colors If the output video shows distorted colors, green/purple tint, or transparency isn't working: 1. **Check your video player** - See the "Video Playback and Compatibility" section above 2. **Use a recommended player** like mpv or QuickTime Player 3. **Convert to a different format** if needed (see WebM conversion examples) ### Large Output File Sizes The transparent `.mov` files use ProRes 4444 codec and will be larger than the input. ProRes 4444 provides much better compression than the previous qtrle codec while maintaining 10-bit color with alpha: - File sizes are significantly smaller than qtrle but still larger than standard video - This is expected for high-quality transparency preservation - Use `--alpha-codec libvpx-vp9` with `.webm` output for smaller files if your tools support it ### Poor Quality or Inaccurate Results Background removal quality depends on: 1. **Input quality** - Higher resolution and better lighting improve results 2. **Subject complexity** - Simple, well-defined subjects work best 3. **Model limitations** - AI models may struggle with: - Very similar colors between subject and background - Complex hair/fur details - Transparent or reflective objects - Unusual subjects the model wasn't trained on **Tips for better results:** - Use `u2net_human_seg` specifically for human subjects - Enable alpha matting with `-a` for complex edges - Ensure good contrast between subject and background when capturing - Try different alpha matting parameters (`-ae`, `-af`, `-ab`) ## Testing Currently, this project does not have automated test cases. Testing is done manually using sample images and videos. ### Manual Testing To test backgroundremover functionality: **Test Image Background Removal:** ```bash # Basic test backgroundremover -i "test_image.jpg" -o "output.png" # Test with alpha matting backgroundremover -i "test_image.jpg" -a -ae 15 -o "output.png" # Test mask generation backgroundremover -i "test_image.jpg" -om -o "mask.png" # Test custom background color backgroundremover -i "test_image.jpg" -bc "0,255,0" -o "output.png" ``` **Test Video Processing:** ```bash # Test transparent video backgroundremover -i "test_video.mp4" -tv -o "output.mov" # Test matte key backgroundremover -i "test_video.mp4" -mk -o "matte.mov" # Test transparent GIF backgroundremover -i "test_video.mp4" -tg -o "output.gif" ``` **Test HTTP Server:** ```bash # Start server backgroundremover-server --port 5000 # Test with curl (in another terminal) curl -X POST -F "file=@test_image.jpg" http://localhost:5000/ -o output.png ``` ### Contributing Tests Automated tests using pytest or unittest would be a valuable contribution to this project. Test cases should cover: - Image processing with different formats (JPG, PNG, HEIC) - Video processing with different codecs - CLI argument validation - HTTP API endpoints - Model loading and inference - Error handling ## Todo ### Completed - ✅ HTTP API server (use `backgroundremover-server`) - ✅ Comprehensive documentation and troubleshooting - ✅ Docker support with model persistence - ✅ HEIC/HEIF image format support - ✅ Pipe support (stdin/stdout) - ✅ Custom background colors and images - ✅ Binary mask output - ✅ Folder batch processing ### In Progress / Future Features - Support for additional models (ISNet, BiRefNet, U2Net cloth segmentation) - CoreML support for Apple Silicon acceleration - Standalone executable (no Python installation required) - Automated test suite - Real-time background removal for video streaming - Convert logic from video to image to utilize more GPU on image removal - Ability to provide feedback on results to improve training datasets - Support for custom/user-provided models - Google Colab notebook Contributions welcome! See open issues for details. ### Pull requests Accepted ### If you like this library Give a link to our project [BackgroundRemoverAI.com](https://backgroundremoverai.com) or this git, telling people that you like it or use it. ### Reason for project We made it our own package after merging together parts of others, adding in a few features of our own via posting parts as bounty questions on superuser, etc. As well as asked on hackernews earlier to open source the image part, so decided to add in video, and a bit more. ### References - https://arxiv.org/pdf/2005.09007.pdf - https://github.com/NathanUA/U-2-Net - https://github.com/pymatting/pymatting - https://github.com/danielgatis/rembg - https://github.com/ecsplendid/rembg-greenscreen - https://superuser.com/questions/1647590/have-ffmpeg-merge-a-matte-key-file-over-the-normal-video-file-removing-the-backg - https://superuser.com/questions/1648680/ffmpeg-alphamerge-two-videos-into-a-gif-with-transparent-background/1649339?noredirect=1#comment2522687_1649339 - https://superuser.com/questions/1649817/ffmpeg-overlay-a-video-after-alphamerging-two-others/1649856#1649856 ### License - Copyright (c) 2021-present [Johnathan Nader](https://github.com/nadermx) - Copyright (c) 2020-present [Lucas Nestler](https://github.com/ClashLuke) - Copyright (c) 2020-present [Dr. Tim Scarfe](https://github.com/ecsplendid) - Copyright (c) 2020-present [Daniel Gatis](https://github.com/danielgatis) Code Licensed under [MIT License](./LICENSE.txt) Models Licensed under [Apache License 2.0](./models/license) --- ### CONTRIBUTING (CONTRIBUTING.md) # Contributing to backgroundremover Thanks for your interest in contributing! ## Getting started 1. Fork the repository and create a feature branch. 2. Set up a development environment: ```bash python -m venv venv source venv/bin/activate pip install -e . ``` 3. Make your changes and test them against real images and videos: ```bash # Image backgroundremover -i input.jpg -o output.png # Video (use -fl to limit frames for quick testing) backgroundremover -i input.mp4 -mk -fl 30 -o matte.mp4 ``` 4. Open a pull request with a clear description of the problem and the fix. ## Guidelines - Keep changes focused — one fix or feature per pull request. - Match the existing code style of the file you are editing. - The CLI (`backgroundremover/cmd/cli.py`), the core library (`backgroundremover/bg.py`), and the video pipeline (`backgroundremover/utilities.py`) are the main entry points. - Image-processing flags (`-a`, `-mt`, `-om`, etc.) should behave the same in single-file, pipe, and `-if` folder modes. - If your change affects output quality or resolution, include before/after details in the PR description. ## Reporting issues Please include the exact command you ran, the version (`pip show backgroundremover`), your OS, and whether you are on CPU or GPU. Sample input files that reproduce the problem help a lot. --- ### GUI README (GUI_README.md) # Background Remover GUI A simple and user-friendly graphical interface for removing backgrounds from images using the backgroundremover library. ## Features - **Easy File Selection**: Browse and select input images with a simple file dialog - **Multiple Model Support**: Choose between different AI models (u2net, u2netp, u2net_human_seg) - **Alpha Matting**: Optional high-quality background removal with alpha matting - **Live Preview**: See input and output images side by side - **Progress Indication**: Visual feedback during processing - **Auto Output Naming**: Automatically suggests output filenames - **Error Handling**: Clear error messages and validation ## How to Use ### Method 1: Run the GUI directly ```bash python background_remover_gui.py ``` ### Method 2: Use the batch file (Windows) Double-click `run_gui.bat` or run it from command prompt. ## Step-by-Step Instructions 1. **Launch the Application** - Run `python background_remover_gui.py` or double-click `run_gui.bat` 2. **Select Input Image** - Click "Browse" next to "Input Image" - Choose your image file (supports JPG, PNG, BMP, TIFF) - The input preview will show your selected image 3. **Choose Output Location** - The output filename is auto-generated (you can change it) - Click "Browse" next to "Output File" to choose a different location - Output will be saved as PNG format 4. **Select Model (Optional)** - **u2net**: General purpose model (default) - **u2netp**: Lighter, faster model - **u2net_human_seg**: Optimized for human subjects 5. **Enable Alpha Matting (Optional)** - Check "Use Alpha Matting" for higher quality results - Takes longer but produces better edge quality 6. **Process the Image** - Click "Remove Background" - Wait for processing to complete - The output preview will show the result ## Supported File Formats ### Input Formats: - JPEG (.jpg, .jpeg) - PNG (.png) - BMP (.bmp) - TIFF (.tiff) ### Output Format: - PNG (.png) - Always with transparency ## Tips for Best Results 1. **For People**: Use `u2net_human_seg` model 2. **For Objects**: Use `u2net` or `u2netp` model 3. **High Quality**: Enable alpha matting for better edge quality 4. **Speed**: Use `u2netp` model for faster processing 5. **File Size**: PNG output files may be larger than original JPEGs ## Troubleshooting ### Common Issues: 1. **"Input file does not exist"** - Make sure the file path is correct - Check if the file was moved or deleted 2. **"Failed to process image"** - Ensure the image file is not corrupted - Try a different image format - Check if you have enough disk space 3. **GUI doesn't start** - Make sure Python and tkinter are installed - Run from command prompt to see error messages 4. **Slow processing** - This is normal for large images - Consider using `u2netp` model for faster processing - Alpha matting takes longer but produces better results ## Technical Details - **Framework**: Python tkinter - **Image Processing**: PIL (Pillow) - **Background Removal**: backgroundremover library - **Threading**: Processing runs in background thread to keep GUI responsive ## Requirements - Python 3.6+ - backgroundremover library (already installed) - tkinter (usually included with Python) - PIL/Pillow (already installed) ## File Structure ``` background_remover_gui.py # Main GUI application run_gui.bat # Windows batch file to run GUI GUI_README.md # This documentation ``` Enjoy using the Background Remover GUI! --- ### LICENSE (LICENSE.txt) MIT License Copyright (c) 2021 Johnathan Nader Copyright (c) 2020 Lucas Nestler Copyright (c) 2020 Dr. Tim Scarfe Copyright (c) 2020 Daniel Gatis Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. --- ### Requirements (requirements.txt) certifi charset-normalizer filelock idna PySocks six urllib3 numpy scikit-image torch>=1.13.0 torchvision>=0.14.0 waitress tqdm requests scipy pymatting filetype hsh more_itertools moviepy>=1.0.3 Pillow pillow-heif ffmpeg-python flask --- ### Examplefiles/README (examplefiles/README.md) # Examples This directory contains examples created using this library. ## Combine Images Using ffmpeg Using the following command (assuming ffmpeg is installed) to combined `img1.jpg` and `img2.jpg` into a single side-by-side. ```bash ffmpeg -i img1.jpg -i img2.jpg -filter_complex "[0:v]scale=iw/2:-1,pad=2*iw[left];[1:v]scale=iw/2:-1[right];[left][right]overlay=w" output.jpg ``` --- ### .Github/FUNDING.Yml (.github/FUNDING.yml) # These are supported funding model platforms github: [nadermx] --- ### .Github/Workflows/Docker Image Build.Yml (.github/workflows/docker-image-build.yml) name: Publish Docker Image on: push: branches: - 'main' - 'docker' release: types: [published] jobs: build_push_to_registry: name: Build/Push Docker Image to Docker Hub runs-on: ubuntu-latest steps: - name: Check out the repo uses: actions/checkout@v3 - name: Set up Docker Buildx uses: docker/setup-buildx-action@v2 - name: Log in to Docker Hub uses: docker/login-action@v2 with: username: ${{ secrets.DOCKER_USERNAME }} password: ${{ secrets.DOCKER_PASSWORD }} - name: Extract metadata (tags, labels) for Docker id: meta uses: docker/metadata-action@v4 with: images: ravnoor/backgroundremover tags: | type=semver,pattern={{version}} # dynamically set the branch name as a prefix type=sha,prefix={{branch}}- # dynamically set the branch name type=raw,value={{branch}}-latest # set the latest branch name type=raw,value=latest - name: Build and push Docker image uses: docker/build-push-action@v4 with: context: . push: true tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }} ---