├── .github └── workflows │ └── publish.yml ├── .gitignore ├── LICENSE ├── README.md ├── __init__.py ├── conversion_utils.py ├── demo ├── original.jpg ├── processed.png └── workflow.png ├── face_parsing_nodes.py ├── pyproject.toml ├── requirements.txt └── skin_detection_utils.py /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryuukeisyou/comfyui_face_parsing/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryuukeisyou/comfyui_face_parsing/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryuukeisyou/comfyui_face_parsing/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryuukeisyou/comfyui_face_parsing/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryuukeisyou/comfyui_face_parsing/HEAD/__init__.py -------------------------------------------------------------------------------- /conversion_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryuukeisyou/comfyui_face_parsing/HEAD/conversion_utils.py -------------------------------------------------------------------------------- /demo/original.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryuukeisyou/comfyui_face_parsing/HEAD/demo/original.jpg -------------------------------------------------------------------------------- /demo/processed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryuukeisyou/comfyui_face_parsing/HEAD/demo/processed.png -------------------------------------------------------------------------------- /demo/workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryuukeisyou/comfyui_face_parsing/HEAD/demo/workflow.png -------------------------------------------------------------------------------- /face_parsing_nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryuukeisyou/comfyui_face_parsing/HEAD/face_parsing_nodes.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryuukeisyou/comfyui_face_parsing/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryuukeisyou/comfyui_face_parsing/HEAD/requirements.txt -------------------------------------------------------------------------------- /skin_detection_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryuukeisyou/comfyui_face_parsing/HEAD/skin_detection_utils.py --------------------------------------------------------------------------------