aboutsummaryrefslogtreecommitdiff
path: root/modules/txt2img.py
diff options
context:
space:
mode:
authorBuckzor <bucklogos@yahoo.co.uk>2022-10-13 17:07:06 +0100
committerAUTOMATIC1111 <16777216c@gmail.com>2022-10-14 16:47:16 +0300
commitb2261b53ae4ad01b3713bc73ff62ab7b6f479e26 (patch)
tree30ffbffa304e956cbdfa9af31f9d373904fe58af /modules/txt2img.py
parent9e5ca5077f43bb3ec1a0ec41b47964cb38d544a6 (diff)
Added first_pass_width and height as adjustable inputs to "High Res Fix"
Diffstat (limited to 'modules/txt2img.py')
-rw-r--r--modules/txt2img.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/modules/txt2img.py b/modules/txt2img.py
index e985242b..85cbece4 100644
--- a/modules/txt2img.py
+++ b/modules/txt2img.py
@@ -6,7 +6,7 @@ import modules.processing as processing
from modules.ui import plaintext_to_html
-def txt2img(prompt: str, negative_prompt: str, prompt_style: str, prompt_style2: str, steps: int, sampler_index: int, restore_faces: bool, tiling: bool, n_iter: int, batch_size: int, cfg_scale: float, seed: int, subseed: int, subseed_strength: float, seed_resize_from_h: int, seed_resize_from_w: int, seed_enable_extras: bool, height: int, width: int, enable_hr: bool, scale_latent: bool, denoising_strength: float, *args):
+def txt2img(prompt: str, negative_prompt: str, prompt_style: str, prompt_style2: str, steps: int, sampler_index: int, restore_faces: bool, tiling: bool, n_iter: int, batch_size: int, cfg_scale: float, seed: int, subseed: int, subseed_strength: float, seed_resize_from_h: int, seed_resize_from_w: int, seed_enable_extras: bool, height: int, width: int, enable_hr: bool, scale_latent: bool, denoising_strength: float, first_pass_width: int, first_pass_height: int, *args):
p = StableDiffusionProcessingTxt2Img(
sd_model=shared.sd_model,
outpath_samples=opts.outdir_samples or opts.outdir_txt2img_samples,
@@ -32,6 +32,9 @@ def txt2img(prompt: str, negative_prompt: str, prompt_style: str, prompt_style2:
enable_hr=enable_hr,
scale_latent=scale_latent if enable_hr else None,
denoising_strength=denoising_strength if enable_hr else None,
+ first_pass_width=first_pass_width if enable_hr else None,
+ first_pass_height=first_pass_height if enable_hr else None,
+
)
if cmd_opts.enable_console_prompts: