From d6295a00e6dacfab714bf582715ea34060745771 Mon Sep 17 00:00:00 2001 From: "Jinwoo Park (Curt)" Date: Tue, 18 Mar 2025 00:35:14 +0900 Subject: [PATCH] Update custom-node-list.json (#1671) It works the same as [human-parser-comfyui-node](https://github.com/cozymantis/human-parser-comfyui-node), but I re-implemented InPlaceABNSync in pure Python so that it doesn't need a runtime build. The pros and cons of this change: pros - The initial runtime is faster because it doesn't require a runtime build. - No runtime error and complex setups for building the C++ code. cons: - After the initial execution, it could be slower than the original InPlaceABNSync. related issue: https://github.com/cozymantis/human-parser-comfyui-node/issues/22 --- custom-node-list.json | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/custom-node-list.json b/custom-node-list.json index ae8386e3..efb654b6 100755 --- a/custom-node-list.json +++ b/custom-node-list.json @@ -22869,6 +22869,17 @@ ], "install_type": "unzip", "description": "This is a node to convert an image into a CMYK Halftone dot image." + }, + { + "author": "CozyMantis (+ Curt-Park)", + "title": "Cozy Human Parser in pure Python", + "id": "humanparser-pure-python", + "reference": "https://github.com/Curt-Park/human-parser-comfyui-node-in-pure-python", + "files": [ + "https://github.com/Curt-Park/human-parser-comfyui-node-in-pure-python" + ], + "install_type": "git-clone", + "description": "It works the same as human-parser-comfyui-node but is implemented in pure Python so that it doesn't require a runtime build for InPlaceABNSync." } ] }