├── .gitignore ├── LICENSE ├── README.md ├── __init__.py ├── pyproject.toml ├── seg_node.py └── workflow_examples └── seg_example.json /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logtd/ComfyUI-SEGAttention/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logtd/ComfyUI-SEGAttention/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logtd/ComfyUI-SEGAttention/HEAD/__init__.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logtd/ComfyUI-SEGAttention/HEAD/pyproject.toml -------------------------------------------------------------------------------- /seg_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logtd/ComfyUI-SEGAttention/HEAD/seg_node.py -------------------------------------------------------------------------------- /workflow_examples/seg_example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logtd/ComfyUI-SEGAttention/HEAD/workflow_examples/seg_example.json --------------------------------------------------------------------------------