AUTOMATIC1111 / stable-diffusion-webui

Stable Diffusion web UI
GNU Affero General Public License v3.0
139.16k stars 26.41k forks source link

Implement txt2imghd as an option #349

Closed daouid closed 1 year ago

daouid commented 1 year ago

txt2imghd is a port of the GOBIG mode from progrockdiffusion applied to Stable Diffusion, with Real-ESRGAN as the upscaler. It creates detailed, higher-resolution images by first generating an image from a prompt, upscaling it, and then running img2img on smaller pieces of the upscaled image, and blending the result back into the original image.

https://github.com/jquesnelle/txt2imghd

chekaaa commented 1 year ago

I may be wrong but isnt that what "SD upscale" option does in the img2mg tab?

daouid commented 1 year ago

You are right, thanks for pointing it out. It is also mentioned in the showcase page: "Original idea by: https://github.com/jquesnelle/txt2imghd. This is an independent implementation."