├── .gitignore ├── LICENSE ├── README.md ├── __init__.py ├── install.bat ├── nodes.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacepxl/ComfyUI-HQ-Image-Save/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacepxl/ComfyUI-HQ-Image-Save/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacepxl/ComfyUI-HQ-Image-Save/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacepxl/ComfyUI-HQ-Image-Save/HEAD/__init__.py -------------------------------------------------------------------------------- /install.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacepxl/ComfyUI-HQ-Image-Save/HEAD/install.bat -------------------------------------------------------------------------------- /nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacepxl/ComfyUI-HQ-Image-Save/HEAD/nodes.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | imageio 2 | opencv-python 3 | --------------------------------------------------------------------------------