├── .github └── FUNDING.yml ├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── UI.png ├── install.py ├── preload.py ├── requirements.txt └── scripts ├── bop_api.py ├── bopb2l.py └── bopb2l_main.py /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | ko_fi: haoming -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haoming02/sd-webui-old-photo-restoration/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haoming02/sd-webui-old-photo-restoration/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haoming02/sd-webui-old-photo-restoration/HEAD/README.md -------------------------------------------------------------------------------- /UI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haoming02/sd-webui-old-photo-restoration/HEAD/UI.png -------------------------------------------------------------------------------- /install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haoming02/sd-webui-old-photo-restoration/HEAD/install.py -------------------------------------------------------------------------------- /preload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haoming02/sd-webui-old-photo-restoration/HEAD/preload.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haoming02/sd-webui-old-photo-restoration/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/bop_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haoming02/sd-webui-old-photo-restoration/HEAD/scripts/bop_api.py -------------------------------------------------------------------------------- /scripts/bopb2l.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haoming02/sd-webui-old-photo-restoration/HEAD/scripts/bopb2l.py -------------------------------------------------------------------------------- /scripts/bopb2l_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haoming02/sd-webui-old-photo-restoration/HEAD/scripts/bopb2l_main.py --------------------------------------------------------------------------------