├── .github └── workflows │ └── publish.yml ├── .gitignore ├── LICENSE ├── README.md ├── __init__.py ├── ckpts └── put_big_lama_pt_model_here.txt ├── example ├── example1.png ├── example2.png ├── example3.png └── testdata │ ├── dog.jpg │ └── mask.png ├── lama ├── __init__.py └── model.py ├── nodes ├── __init__.py └── remover.py ├── pyproject.toml ├── requirements.txt └── utils.py /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Layer-norm/comfyui-lama-remover/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Layer-norm/comfyui-lama-remover/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Layer-norm/comfyui-lama-remover/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Layer-norm/comfyui-lama-remover/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Layer-norm/comfyui-lama-remover/HEAD/__init__.py -------------------------------------------------------------------------------- /ckpts/put_big_lama_pt_model_here.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/example1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Layer-norm/comfyui-lama-remover/HEAD/example/example1.png -------------------------------------------------------------------------------- /example/example2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Layer-norm/comfyui-lama-remover/HEAD/example/example2.png -------------------------------------------------------------------------------- /example/example3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Layer-norm/comfyui-lama-remover/HEAD/example/example3.png -------------------------------------------------------------------------------- /example/testdata/dog.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Layer-norm/comfyui-lama-remover/HEAD/example/testdata/dog.jpg -------------------------------------------------------------------------------- /example/testdata/mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Layer-norm/comfyui-lama-remover/HEAD/example/testdata/mask.png -------------------------------------------------------------------------------- /lama/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Layer-norm/comfyui-lama-remover/HEAD/lama/__init__.py -------------------------------------------------------------------------------- /lama/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Layer-norm/comfyui-lama-remover/HEAD/lama/model.py -------------------------------------------------------------------------------- /nodes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nodes/remover.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Layer-norm/comfyui-lama-remover/HEAD/nodes/remover.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Layer-norm/comfyui-lama-remover/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | Pillow -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Layer-norm/comfyui-lama-remover/HEAD/utils.py --------------------------------------------------------------------------------