stable-diffusion-webui/modules/postprocessing.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

109 lines
4.0 KiB
Python
Raw Normal View History

import os
from PIL import Image
2023-01-22 23:24:43 -07:00
from modules import shared, images, devices, scripts, scripts_postprocessing, ui_common, generation_parameters_copypaste
from modules.shared import opts
2023-01-22 23:24:43 -07:00
def run_postprocessing(extras_mode, image, image_folder, input_dir, output_dir, show_extras_results, *args, save_output: bool = True):
devices.torch_gc()
2023-01-03 08:34:51 -07:00
shared.state.begin()
shared.state.job = 'extras'
2023-01-22 23:24:43 -07:00
image_data = []
image_names = []
2022-10-15 22:50:55 -06:00
outputs = []
if extras_mode == 1:
2022-09-15 21:23:37 -06:00
for img in image_folder:
2023-04-29 00:17:35 -06:00
if isinstance(img, Image.Image):
2023-04-29 00:17:35 -06:00
image = img
2023-04-29 00:17:35 -06:00
fn = ''
else:
image = Image.open(os.path.abspath(img.name))
2023-04-29 00:17:35 -06:00
fn = os.path.splitext(img.orig_name)[0]
2023-01-22 23:24:43 -07:00
image_data.append(image)
2023-04-29 00:17:35 -06:00
image_names.append(fn)
2022-10-15 22:50:55 -06:00
elif extras_mode == 2:
assert not shared.cmd_opts.hide_ui_dir_config, '--hide-ui-dir-config option must be disabled'
2023-01-22 23:24:43 -07:00
assert input_dir, 'input directory not selected'
image_list = shared.listfiles(input_dir)
2023-01-22 23:24:43 -07:00
for filename in image_list:
try:
2023-01-22 23:24:43 -07:00
image = Image.open(filename)
except Exception:
continue
2023-01-22 23:24:43 -07:00
image_data.append(image)
image_names.append(filename)
else:
2023-01-22 23:24:43 -07:00
assert image, 'image not selected'
image_data.append(image)
image_names.append(None)
2022-10-15 22:50:55 -06:00
if extras_mode == 2 and output_dir != '':
outpath = output_dir
else:
outpath = opts.outdir_samples or opts.outdir_extras_samples
2023-01-22 23:24:43 -07:00
infotext = ''
for image, name in zip(image_data, image_names):
shared.state.textinfo = name
existing_pnginfo = image.info or {}
2022-10-09 19:26:52 -06:00
2023-01-22 23:24:43 -07:00
pp = scripts_postprocessing.PostprocessedImage(image.convert("RGB"))
2023-01-22 23:24:43 -07:00
scripts.scripts_postproc.run(pp, args)
if opts.use_original_name_batch and name is not None:
basename = os.path.splitext(os.path.basename(name))[0]
else:
basename = ''
2023-01-22 23:24:43 -07:00
infotext = ", ".join([k if k == v else f'{k}: {generation_parameters_copypaste.quote(v)}' for k, v in pp.info.items() if v is not None])
2023-01-03 08:34:51 -07:00
2023-01-22 23:24:43 -07:00
if opts.enable_pnginfo:
pp.image.info = existing_pnginfo
pp.image.info["postprocessing"] = infotext
2022-12-17 05:31:03 -07:00
2023-01-22 23:24:43 -07:00
if save_output:
images.save_image(pp.image, path=outpath, basename=basename, seed=None, prompt=None, extension=opts.samples_format, info=infotext, short_filename=True, no_prompt=True, grid=False, pnginfo_section_name="extras", existing_info=existing_pnginfo, forced_filename=None)
2023-01-22 23:24:43 -07:00
if extras_mode != 2 or show_extras_results:
outputs.append(pp.image)
devices.torch_gc()
2023-01-22 23:24:43 -07:00
return outputs, ui_common.plaintext_to_html(infotext), ''
def run_extras(extras_mode, resize_mode, image, image_folder, input_dir, output_dir, show_extras_results, gfpgan_visibility, codeformer_visibility, codeformer_weight, upscaling_resize, upscaling_resize_w, upscaling_resize_h, upscaling_crop, extras_upscaler_1, extras_upscaler_2, extras_upscaler_2_visibility, upscale_first: bool, save_output: bool = True):
"""old handler for API"""
args = scripts.scripts_postproc.create_args_for_run({
"Upscale": {
"upscale_mode": resize_mode,
"upscale_by": upscaling_resize,
"upscale_to_width": upscaling_resize_w,
"upscale_to_height": upscaling_resize_h,
"upscale_crop": upscaling_crop,
"upscaler_1_name": extras_upscaler_1,
"upscaler_2_name": extras_upscaler_2,
"upscaler_2_visibility": extras_upscaler_2_visibility,
},
"GFPGAN": {
"gfpgan_visibility": gfpgan_visibility,
},
"CodeFormer": {
"codeformer_visibility": codeformer_visibility,
"codeformer_weight": codeformer_weight,
},
})
return run_postprocessing(extras_mode, image, image_folder, input_dir, output_dir, show_extras_results, *args, save_output=save_output)