├── .gitignore ├── LICENSE ├── README.md ├── lib_resharpen ├── param.py ├── scaling.py └── xyz.py ├── samples ├── -025.jpg ├── -05.jpg ├── 00.jpg ├── 025.jpg ├── 05.jpg └── plot.jpg ├── scripts └── resharpen.py └── style.css /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haoming02/sd-webui-resharpen/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haoming02/sd-webui-resharpen/HEAD/README.md -------------------------------------------------------------------------------- /lib_resharpen/param.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haoming02/sd-webui-resharpen/HEAD/lib_resharpen/param.py -------------------------------------------------------------------------------- /lib_resharpen/scaling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haoming02/sd-webui-resharpen/HEAD/lib_resharpen/scaling.py -------------------------------------------------------------------------------- /lib_resharpen/xyz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haoming02/sd-webui-resharpen/HEAD/lib_resharpen/xyz.py -------------------------------------------------------------------------------- /samples/-025.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haoming02/sd-webui-resharpen/HEAD/samples/-025.jpg -------------------------------------------------------------------------------- /samples/-05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haoming02/sd-webui-resharpen/HEAD/samples/-05.jpg -------------------------------------------------------------------------------- /samples/00.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haoming02/sd-webui-resharpen/HEAD/samples/00.jpg -------------------------------------------------------------------------------- /samples/025.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haoming02/sd-webui-resharpen/HEAD/samples/025.jpg -------------------------------------------------------------------------------- /samples/05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haoming02/sd-webui-resharpen/HEAD/samples/05.jpg -------------------------------------------------------------------------------- /samples/plot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haoming02/sd-webui-resharpen/HEAD/samples/plot.jpg -------------------------------------------------------------------------------- /scripts/resharpen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haoming02/sd-webui-resharpen/HEAD/scripts/resharpen.py -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haoming02/sd-webui-resharpen/HEAD/style.css --------------------------------------------------------------------------------