├── .idea ├── .gitignore ├── .name ├── comfyui-segment-anything-marko.iml ├── inspectionProfiles │ └── profiles_settings.xml ├── misc.xml ├── modules.xml └── vcs.xml ├── README.md ├── __init__.py ├── install.py ├── node.py ├── requirements.txt └── workflow.json /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkoCa1/ComfyUI_Segment_Mask/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | node.py -------------------------------------------------------------------------------- /.idea/comfyui-segment-anything-marko.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkoCa1/ComfyUI_Segment_Mask/HEAD/.idea/comfyui-segment-anything-marko.iml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkoCa1/ComfyUI_Segment_Mask/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkoCa1/ComfyUI_Segment_Mask/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkoCa1/ComfyUI_Segment_Mask/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkoCa1/ComfyUI_Segment_Mask/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkoCa1/ComfyUI_Segment_Mask/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkoCa1/ComfyUI_Segment_Mask/HEAD/__init__.py -------------------------------------------------------------------------------- /install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkoCa1/ComfyUI_Segment_Mask/HEAD/install.py -------------------------------------------------------------------------------- /node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkoCa1/ComfyUI_Segment_Mask/HEAD/node.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | segment_anything 2 | torch 3 | numpy 4 | pillow 5 | -------------------------------------------------------------------------------- /workflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkoCa1/ComfyUI_Segment_Mask/HEAD/workflow.json --------------------------------------------------------------------------------