mirror of
https://github.com/AUTOMATIC1111/stable-diffusion-webui.git
synced 2025-01-20 21:30:09 +08:00
Fix img2img interrogate
This commit is contained in:
parent
92b33344bf
commit
6b4f147a07
@ -109,10 +109,11 @@ def resize_from_to_html(width, height, scale_by):
|
||||
|
||||
|
||||
def process_interrogate(interrogation_function, mode, ii_input_dir, ii_output_dir, *ii_singles):
|
||||
if mode in {0, 1, 3, 4}:
|
||||
return [interrogation_function(ii_singles[mode]), None]
|
||||
mode = int(mode)
|
||||
if mode in (0, 1, 3, 4):
|
||||
return [interrogation_function(ii_singles[mode]["composite"]), None]
|
||||
elif mode == 2:
|
||||
return [interrogation_function(ii_singles[mode]["image"]), None]
|
||||
return [interrogation_function(ii_singles[mode]["composite"]), None]
|
||||
elif mode == 5:
|
||||
assert not shared.cmd_opts.hide_ui_dir_config, "Launched with --hide-ui-dir-config, batch img2img disabled"
|
||||
images = shared.listfiles(ii_input_dir)
|
||||
|
Loading…
Reference in New Issue
Block a user