├── .github └── workflows │ └── publish.yml ├── ICEF_node.py ├── LICENSE ├── README.md ├── __init__.py ├── assets ├── ICEF_workflow.png ├── ICEF_workflow_with_image_input.png ├── logo.png └── logo.svg ├── config └── ICEF.yaml ├── example_workflow ├── ICEF_with_no_upscale_workflow.json └── ICEF_workflow.json ├── pyproject.toml └── websocket_image_save.py /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayd-zju/ICEdit-ComfyUI-official/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /ICEF_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayd-zju/ICEdit-ComfyUI-official/HEAD/ICEF_node.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayd-zju/ICEdit-ComfyUI-official/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayd-zju/ICEdit-ComfyUI-official/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayd-zju/ICEdit-ComfyUI-official/HEAD/__init__.py -------------------------------------------------------------------------------- /assets/ICEF_workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayd-zju/ICEdit-ComfyUI-official/HEAD/assets/ICEF_workflow.png -------------------------------------------------------------------------------- /assets/ICEF_workflow_with_image_input.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayd-zju/ICEdit-ComfyUI-official/HEAD/assets/ICEF_workflow_with_image_input.png -------------------------------------------------------------------------------- /assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayd-zju/ICEdit-ComfyUI-official/HEAD/assets/logo.png -------------------------------------------------------------------------------- /assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayd-zju/ICEdit-ComfyUI-official/HEAD/assets/logo.svg -------------------------------------------------------------------------------- /config/ICEF.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayd-zju/ICEdit-ComfyUI-official/HEAD/config/ICEF.yaml -------------------------------------------------------------------------------- /example_workflow/ICEF_with_no_upscale_workflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayd-zju/ICEdit-ComfyUI-official/HEAD/example_workflow/ICEF_with_no_upscale_workflow.json -------------------------------------------------------------------------------- /example_workflow/ICEF_workflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayd-zju/ICEdit-ComfyUI-official/HEAD/example_workflow/ICEF_workflow.json -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayd-zju/ICEdit-ComfyUI-official/HEAD/pyproject.toml -------------------------------------------------------------------------------- /websocket_image_save.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayd-zju/ICEdit-ComfyUI-official/HEAD/websocket_image_save.py --------------------------------------------------------------------------------