aboutsummaryrefslogtreecommitdiffstats
path: root/modules/img2img.py
diff options
context:
space:
mode:
authorAUTOMATIC <16777216c@gmail.com>2022-09-04 15:54:12 +0000
committerAUTOMATIC <16777216c@gmail.com>2022-09-04 15:54:12 +0000
commitf299645aeeb65fcddde2d136fd550b6b01ffebb3 (patch)
tree5e00d526688ce928b68f023ac91a4bf227aaf092 /modules/img2img.py
parent78278ce695beffbf59c7320bb0441922d66b1c0e (diff)
downloadstable-diffusion-webui-gfx803-f299645aeeb65fcddde2d136fd550b6b01ffebb3.tar.gz
stable-diffusion-webui-gfx803-f299645aeeb65fcddde2d136fd550b6b01ffebb3.tar.bz2
stable-diffusion-webui-gfx803-f299645aeeb65fcddde2d136fd550b6b01ffebb3.zip
ESRGAN support
Diffstat (limited to 'modules/img2img.py')
-rw-r--r--modules/img2img.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/img2img.py b/modules/img2img.py
index d5787dd3..b1ef1326 100644
--- a/modules/img2img.py
+++ b/modules/img2img.py
@@ -9,7 +9,7 @@ from modules.ui import plaintext_to_html
import modules.images as images
import modules.scripts
-def img2img(prompt: str, init_img, init_img_with_mask, steps: int, sampler_index: int, mask_blur: int, inpainting_fill: int, use_GFPGAN: bool, mode: int, n_iter: int, batch_size: int, cfg_scale: float, denoising_strength: float, seed: int, height: int, width: int, resize_mode: int, upscaler_name: str, upscale_overlap: int, inpaint_full_res: bool, inpainting_mask_invert: int, *args):
+def img2img(prompt: str, init_img, init_img_with_mask, steps: int, sampler_index: int, mask_blur: int, inpainting_fill: int, use_GFPGAN: bool, mode: int, n_iter: int, batch_size: int, cfg_scale: float, denoising_strength: float, seed: int, height: int, width: int, resize_mode: int, upscaler_index: str, upscale_overlap: int, inpaint_full_res: bool, inpainting_mask_invert: int, *args):
is_inpaint = mode == 1
is_loopback = mode == 2
is_upscale = mode == 3
@@ -81,8 +81,8 @@ def img2img(prompt: str, init_img, init_img_with_mask, steps: int, sampler_index
initial_seed = None
initial_info = None
- upscaler = shared.sd_upscalers.get(upscaler_name, next(iter(shared.sd_upscalers.values())))
- img = upscaler(init_img)
+ upscaler = shared.sd_upscalers[upscaler_index]
+ img = upscaler.upscale(init_img, init_img.width * 2, init_img.height * 2)
processing.torch_gc()