├── .gitignore ├── README.md ├── images └── img1.jpg ├── metadata.ini └── scripts └── color_correction_extras.py /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | .vscode 3 | .directory 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/light-and-ray/sd-webui-color-correction-extras/HEAD/README.md -------------------------------------------------------------------------------- /images/img1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/light-and-ray/sd-webui-color-correction-extras/HEAD/images/img1.jpg -------------------------------------------------------------------------------- /metadata.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/light-and-ray/sd-webui-color-correction-extras/HEAD/metadata.ini -------------------------------------------------------------------------------- /scripts/color_correction_extras.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/light-and-ray/sd-webui-color-correction-extras/HEAD/scripts/color_correction_extras.py --------------------------------------------------------------------------------