├── LICENSE ├── README.md ├── __init__.py ├── __version__.py ├── appendage_editor_nodes.py ├── assets ├── appendage_node.png ├── editor_example.jpg ├── editor_example_1.png ├── editor_example_2.png ├── editor_example_3.jpg └── editor_pose_scale.png ├── js ├── editor_textDisplay.js ├── openpose_editor.js └── ui │ ├── OpenposeEditor.html │ └── assets │ ├── antd.dark-4fd6fdfe.css │ ├── index-22cc811d.css │ └── index-cd1939ba.js ├── openpose_editor_nodes.py ├── pyproject.toml ├── requirements.txt └── util.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/westNeighbor/ComfyUI-ultimate-openpose-editor/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/westNeighbor/ComfyUI-ultimate-openpose-editor/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/westNeighbor/ComfyUI-ultimate-openpose-editor/HEAD/__init__.py -------------------------------------------------------------------------------- /__version__.py: -------------------------------------------------------------------------------- 1 | VERSION = '1.1.0' 2 | -------------------------------------------------------------------------------- /appendage_editor_nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/westNeighbor/ComfyUI-ultimate-openpose-editor/HEAD/appendage_editor_nodes.py -------------------------------------------------------------------------------- /assets/appendage_node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/westNeighbor/ComfyUI-ultimate-openpose-editor/HEAD/assets/appendage_node.png -------------------------------------------------------------------------------- /assets/editor_example.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/westNeighbor/ComfyUI-ultimate-openpose-editor/HEAD/assets/editor_example.jpg -------------------------------------------------------------------------------- /assets/editor_example_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/westNeighbor/ComfyUI-ultimate-openpose-editor/HEAD/assets/editor_example_1.png -------------------------------------------------------------------------------- /assets/editor_example_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/westNeighbor/ComfyUI-ultimate-openpose-editor/HEAD/assets/editor_example_2.png -------------------------------------------------------------------------------- /assets/editor_example_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/westNeighbor/ComfyUI-ultimate-openpose-editor/HEAD/assets/editor_example_3.jpg -------------------------------------------------------------------------------- /assets/editor_pose_scale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/westNeighbor/ComfyUI-ultimate-openpose-editor/HEAD/assets/editor_pose_scale.png -------------------------------------------------------------------------------- /js/editor_textDisplay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/westNeighbor/ComfyUI-ultimate-openpose-editor/HEAD/js/editor_textDisplay.js -------------------------------------------------------------------------------- /js/openpose_editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/westNeighbor/ComfyUI-ultimate-openpose-editor/HEAD/js/openpose_editor.js -------------------------------------------------------------------------------- /js/ui/OpenposeEditor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/westNeighbor/ComfyUI-ultimate-openpose-editor/HEAD/js/ui/OpenposeEditor.html -------------------------------------------------------------------------------- /js/ui/assets/antd.dark-4fd6fdfe.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/westNeighbor/ComfyUI-ultimate-openpose-editor/HEAD/js/ui/assets/antd.dark-4fd6fdfe.css -------------------------------------------------------------------------------- /js/ui/assets/index-22cc811d.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/westNeighbor/ComfyUI-ultimate-openpose-editor/HEAD/js/ui/assets/index-22cc811d.css -------------------------------------------------------------------------------- /js/ui/assets/index-cd1939ba.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/westNeighbor/ComfyUI-ultimate-openpose-editor/HEAD/js/ui/assets/index-cd1939ba.js -------------------------------------------------------------------------------- /openpose_editor_nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/westNeighbor/ComfyUI-ultimate-openpose-editor/HEAD/openpose_editor_nodes.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/westNeighbor/ComfyUI-ultimate-openpose-editor/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | polygraphy 2 | matplotlib 3 | numpy 4 | opencv-python 5 | torch 6 | -------------------------------------------------------------------------------- /util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/westNeighbor/ComfyUI-ultimate-openpose-editor/HEAD/util.py --------------------------------------------------------------------------------