├── .github └── workflows │ └── publish.yml ├── .gitignore ├── Example ├── 2024-1220-color list to mask batch.png └── 2025-0208-Select approximate colors based on color space distance.json ├── README.md ├── __init__.py ├── config ├── color_name │ ├── color_data_edit.py │ ├── color_name_default_v3.json │ └── default1_OriginalData.py ├── hardware_data │ ├── AMD.json │ ├── Apple.json │ ├── Inter.json │ ├── MooreThreads.json │ ├── Nvidia.json │ ├── NvidiaServer.json │ └── Other.json ├── prompt │ └── test │ │ └── model_test.json └── seg_color │ ├── ADE20K.xlsx │ ├── ADE20K_v1.0.json │ ├── ADE20K_v1.1.json │ ├── DensePose_v1.11_Parula(CivitAI).json │ ├── DensePose_v1.11_Viridis(MagicAnimate).json │ ├── DensePose_v1.1_Parula(CivitAI).json │ ├── DensePose_v1.1_Viridis(MagicAnimate).json │ └── color_data.py ├── moduel ├── BEN2.py ├── __init__.py ├── color_utils.py ├── custom_class.py ├── folder_paths.py ├── image_utils.py ├── list_edit.py ├── sh_utils.py ├── str_edit.py └── video_utils.py ├── nodes ├── AudioEdit.py ├── blend_image.py ├── color.py ├── compatible.py ├── crop.py ├── detection.py ├── file.py ├── hardware.py ├── image.py ├── mask.py ├── other_Similarity.py ├── other_ben2.py ├── other_easyocr.py ├── other_nodes.py ├── prompt.py ├── rgba_batch.py ├── video_edit.py ├── video_utils │ ├── checkpoint_pickle.py │ └── utils.py ├── yolo_nodes.txt └── yolo_utils │ ├── subcore.py │ └── utils.py ├── pyproject.toml ├── requirements.txt └── web └── js └── model.core.js /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/807502278/ComfyUI-WJNodes/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/807502278/ComfyUI-WJNodes/HEAD/.gitignore -------------------------------------------------------------------------------- /Example/2024-1220-color list to mask batch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/807502278/ComfyUI-WJNodes/HEAD/Example/2024-1220-color list to mask batch.png -------------------------------------------------------------------------------- /Example/2025-0208-Select approximate colors based on color space distance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/807502278/ComfyUI-WJNodes/HEAD/Example/2025-0208-Select approximate colors based on color space distance.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/807502278/ComfyUI-WJNodes/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/807502278/ComfyUI-WJNodes/HEAD/__init__.py -------------------------------------------------------------------------------- /config/color_name/color_data_edit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/807502278/ComfyUI-WJNodes/HEAD/config/color_name/color_data_edit.py -------------------------------------------------------------------------------- /config/color_name/color_name_default_v3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/807502278/ComfyUI-WJNodes/HEAD/config/color_name/color_name_default_v3.json -------------------------------------------------------------------------------- /config/color_name/default1_OriginalData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/807502278/ComfyUI-WJNodes/HEAD/config/color_name/default1_OriginalData.py -------------------------------------------------------------------------------- /config/hardware_data/AMD.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/hardware_data/Apple.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/hardware_data/Inter.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/hardware_data/MooreThreads.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/hardware_data/Nvidia.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/807502278/ComfyUI-WJNodes/HEAD/config/hardware_data/Nvidia.json -------------------------------------------------------------------------------- /config/hardware_data/NvidiaServer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/807502278/ComfyUI-WJNodes/HEAD/config/hardware_data/NvidiaServer.json -------------------------------------------------------------------------------- /config/hardware_data/Other.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/prompt/test/model_test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/807502278/ComfyUI-WJNodes/HEAD/config/prompt/test/model_test.json -------------------------------------------------------------------------------- /config/seg_color/ADE20K.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/807502278/ComfyUI-WJNodes/HEAD/config/seg_color/ADE20K.xlsx -------------------------------------------------------------------------------- /config/seg_color/ADE20K_v1.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/807502278/ComfyUI-WJNodes/HEAD/config/seg_color/ADE20K_v1.0.json -------------------------------------------------------------------------------- /config/seg_color/ADE20K_v1.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/807502278/ComfyUI-WJNodes/HEAD/config/seg_color/ADE20K_v1.1.json -------------------------------------------------------------------------------- /config/seg_color/DensePose_v1.11_Parula(CivitAI).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/807502278/ComfyUI-WJNodes/HEAD/config/seg_color/DensePose_v1.11_Parula(CivitAI).json -------------------------------------------------------------------------------- /config/seg_color/DensePose_v1.11_Viridis(MagicAnimate).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/807502278/ComfyUI-WJNodes/HEAD/config/seg_color/DensePose_v1.11_Viridis(MagicAnimate).json -------------------------------------------------------------------------------- /config/seg_color/DensePose_v1.1_Parula(CivitAI).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/807502278/ComfyUI-WJNodes/HEAD/config/seg_color/DensePose_v1.1_Parula(CivitAI).json -------------------------------------------------------------------------------- /config/seg_color/DensePose_v1.1_Viridis(MagicAnimate).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/807502278/ComfyUI-WJNodes/HEAD/config/seg_color/DensePose_v1.1_Viridis(MagicAnimate).json -------------------------------------------------------------------------------- /config/seg_color/color_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/807502278/ComfyUI-WJNodes/HEAD/config/seg_color/color_data.py -------------------------------------------------------------------------------- /moduel/BEN2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/807502278/ComfyUI-WJNodes/HEAD/moduel/BEN2.py -------------------------------------------------------------------------------- /moduel/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /moduel/color_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/807502278/ComfyUI-WJNodes/HEAD/moduel/color_utils.py -------------------------------------------------------------------------------- /moduel/custom_class.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/807502278/ComfyUI-WJNodes/HEAD/moduel/custom_class.py -------------------------------------------------------------------------------- /moduel/folder_paths.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/807502278/ComfyUI-WJNodes/HEAD/moduel/folder_paths.py -------------------------------------------------------------------------------- /moduel/image_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/807502278/ComfyUI-WJNodes/HEAD/moduel/image_utils.py -------------------------------------------------------------------------------- /moduel/list_edit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/807502278/ComfyUI-WJNodes/HEAD/moduel/list_edit.py -------------------------------------------------------------------------------- /moduel/sh_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/807502278/ComfyUI-WJNodes/HEAD/moduel/sh_utils.py -------------------------------------------------------------------------------- /moduel/str_edit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/807502278/ComfyUI-WJNodes/HEAD/moduel/str_edit.py -------------------------------------------------------------------------------- /moduel/video_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/807502278/ComfyUI-WJNodes/HEAD/moduel/video_utils.py -------------------------------------------------------------------------------- /nodes/AudioEdit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/807502278/ComfyUI-WJNodes/HEAD/nodes/AudioEdit.py -------------------------------------------------------------------------------- /nodes/blend_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/807502278/ComfyUI-WJNodes/HEAD/nodes/blend_image.py -------------------------------------------------------------------------------- /nodes/color.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/807502278/ComfyUI-WJNodes/HEAD/nodes/color.py -------------------------------------------------------------------------------- /nodes/compatible.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/807502278/ComfyUI-WJNodes/HEAD/nodes/compatible.py -------------------------------------------------------------------------------- /nodes/crop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/807502278/ComfyUI-WJNodes/HEAD/nodes/crop.py -------------------------------------------------------------------------------- /nodes/detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/807502278/ComfyUI-WJNodes/HEAD/nodes/detection.py -------------------------------------------------------------------------------- /nodes/file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/807502278/ComfyUI-WJNodes/HEAD/nodes/file.py -------------------------------------------------------------------------------- /nodes/hardware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/807502278/ComfyUI-WJNodes/HEAD/nodes/hardware.py -------------------------------------------------------------------------------- /nodes/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/807502278/ComfyUI-WJNodes/HEAD/nodes/image.py -------------------------------------------------------------------------------- /nodes/mask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/807502278/ComfyUI-WJNodes/HEAD/nodes/mask.py -------------------------------------------------------------------------------- /nodes/other_Similarity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/807502278/ComfyUI-WJNodes/HEAD/nodes/other_Similarity.py -------------------------------------------------------------------------------- /nodes/other_ben2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/807502278/ComfyUI-WJNodes/HEAD/nodes/other_ben2.py -------------------------------------------------------------------------------- /nodes/other_easyocr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/807502278/ComfyUI-WJNodes/HEAD/nodes/other_easyocr.py -------------------------------------------------------------------------------- /nodes/other_nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/807502278/ComfyUI-WJNodes/HEAD/nodes/other_nodes.py -------------------------------------------------------------------------------- /nodes/prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/807502278/ComfyUI-WJNodes/HEAD/nodes/prompt.py -------------------------------------------------------------------------------- /nodes/rgba_batch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/807502278/ComfyUI-WJNodes/HEAD/nodes/rgba_batch.py -------------------------------------------------------------------------------- /nodes/video_edit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/807502278/ComfyUI-WJNodes/HEAD/nodes/video_edit.py -------------------------------------------------------------------------------- /nodes/video_utils/checkpoint_pickle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/807502278/ComfyUI-WJNodes/HEAD/nodes/video_utils/checkpoint_pickle.py -------------------------------------------------------------------------------- /nodes/video_utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/807502278/ComfyUI-WJNodes/HEAD/nodes/video_utils/utils.py -------------------------------------------------------------------------------- /nodes/yolo_nodes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/807502278/ComfyUI-WJNodes/HEAD/nodes/yolo_nodes.txt -------------------------------------------------------------------------------- /nodes/yolo_utils/subcore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/807502278/ComfyUI-WJNodes/HEAD/nodes/yolo_utils/subcore.py -------------------------------------------------------------------------------- /nodes/yolo_utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/807502278/ComfyUI-WJNodes/HEAD/nodes/yolo_utils/utils.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/807502278/ComfyUI-WJNodes/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/807502278/ComfyUI-WJNodes/HEAD/requirements.txt -------------------------------------------------------------------------------- /web/js/model.core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/807502278/ComfyUI-WJNodes/HEAD/web/js/model.core.js --------------------------------------------------------------------------------