├── .github └── workflows │ └── publish.yml ├── .gitignore ├── LICENSE ├── PR_README.md ├── README.md ├── __init__.py ├── comfyui_vidmatt ├── __init__.py ├── briaai_rembg │ ├── __init__.py │ └── arch.py ├── briaai_rembg_v2 │ └── __init__.py ├── robust_video_matting │ └── __init__.py └── utils.py ├── config.yaml ├── example_matting_workflow.json ├── example_matting_workflow.png ├── pyproject.toml └── requirements.txt /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinhalo/ComfyUI-Video-Matting-RMBG2/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | ckpts -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinhalo/ComfyUI-Video-Matting-RMBG2/HEAD/LICENSE -------------------------------------------------------------------------------- /PR_README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinhalo/ComfyUI-Video-Matting-RMBG2/HEAD/PR_README.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinhalo/ComfyUI-Video-Matting-RMBG2/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinhalo/ComfyUI-Video-Matting-RMBG2/HEAD/__init__.py -------------------------------------------------------------------------------- /comfyui_vidmatt/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /comfyui_vidmatt/briaai_rembg/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinhalo/ComfyUI-Video-Matting-RMBG2/HEAD/comfyui_vidmatt/briaai_rembg/__init__.py -------------------------------------------------------------------------------- /comfyui_vidmatt/briaai_rembg/arch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinhalo/ComfyUI-Video-Matting-RMBG2/HEAD/comfyui_vidmatt/briaai_rembg/arch.py -------------------------------------------------------------------------------- /comfyui_vidmatt/briaai_rembg_v2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinhalo/ComfyUI-Video-Matting-RMBG2/HEAD/comfyui_vidmatt/briaai_rembg_v2/__init__.py -------------------------------------------------------------------------------- /comfyui_vidmatt/robust_video_matting/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinhalo/ComfyUI-Video-Matting-RMBG2/HEAD/comfyui_vidmatt/robust_video_matting/__init__.py -------------------------------------------------------------------------------- /comfyui_vidmatt/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinhalo/ComfyUI-Video-Matting-RMBG2/HEAD/comfyui_vidmatt/utils.py -------------------------------------------------------------------------------- /config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinhalo/ComfyUI-Video-Matting-RMBG2/HEAD/config.yaml -------------------------------------------------------------------------------- /example_matting_workflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinhalo/ComfyUI-Video-Matting-RMBG2/HEAD/example_matting_workflow.json -------------------------------------------------------------------------------- /example_matting_workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinhalo/ComfyUI-Video-Matting-RMBG2/HEAD/example_matting_workflow.png -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinhalo/ComfyUI-Video-Matting-RMBG2/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinhalo/ComfyUI-Video-Matting-RMBG2/HEAD/requirements.txt --------------------------------------------------------------------------------