2022-10-28 21:11:16 +00:00
|
|
|
from __future__ import annotations
|
2022-09-19 22:13:12 +00:00
|
|
|
import os
|
|
|
|
|
2022-09-11 08:31:16 +00:00
|
|
|
import numpy as np
|
|
|
|
from PIL import Image
|
|
|
|
|
2022-10-28 21:11:16 +00:00
|
|
|
from typing import Callable, List, OrderedDict, Tuple
|
2022-10-28 18:24:11 +00:00
|
|
|
from functools import partial
|
|
|
|
from dataclasses import dataclass
|
|
|
|
|
2023-01-22 12:38:39 +00:00
|
|
|
from modules import shared, images, devices, ui_components
|
2022-09-11 08:31:16 +00:00
|
|
|
from modules.shared import opts
|
|
|
|
import modules.gfpgan_model
|
|
|
|
import modules.codeformer_model
|
2023-01-22 12:38:39 +00:00
|
|
|
|
2022-09-13 16:23:55 +00:00
|
|
|
|
2022-10-28 21:11:16 +00:00
|
|
|
class LruCache(OrderedDict):
|
|
|
|
@dataclass(frozen=True)
|
|
|
|
class Key:
|
|
|
|
image_hash: int
|
|
|
|
info_hash: int
|
|
|
|
args_hash: int
|
2022-10-28 19:30:04 +00:00
|
|
|
|
2022-10-28 21:11:16 +00:00
|
|
|
@dataclass
|
|
|
|
class Value:
|
|
|
|
image: Image.Image
|
|
|
|
info: str
|
|
|
|
|
2022-10-28 21:36:25 +00:00
|
|
|
def __init__(self, max_size: int = 5, *args, **kwargs):
|
2022-10-28 21:11:16 +00:00
|
|
|
super().__init__(*args, **kwargs)
|
|
|
|
self._max_size = max_size
|
|
|
|
|
|
|
|
def get(self, key: LruCache.Key) -> LruCache.Value:
|
|
|
|
ret = super().get(key)
|
|
|
|
if ret is not None:
|
2022-10-28 21:36:25 +00:00
|
|
|
self.move_to_end(key) # Move to end of eviction list
|
2022-10-28 21:11:16 +00:00
|
|
|
return ret
|
|
|
|
|
|
|
|
def put(self, key: LruCache.Key, value: LruCache.Value) -> None:
|
|
|
|
self[key] = value
|
|
|
|
while len(self) > self._max_size:
|
|
|
|
self.popitem(last=False)
|
2022-10-28 19:30:04 +00:00
|
|
|
|
2022-09-11 08:31:16 +00:00
|
|
|
|
2022-10-28 21:36:25 +00:00
|
|
|
cached_images: LruCache = LruCache(max_size=5)
|
2022-09-11 08:31:16 +00:00
|
|
|
|
2022-10-28 21:36:25 +00:00
|
|
|
|
2023-01-22 12:38:39 +00:00
|
|
|
def run_postprocessing(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):
|
2022-09-11 20:24:24 +00:00
|
|
|
devices.torch_gc()
|
2022-09-11 08:31:16 +00:00
|
|
|
|
2023-01-03 15:34:51 +00:00
|
|
|
shared.state.begin()
|
|
|
|
shared.state.job = 'extras'
|
|
|
|
|
2022-09-16 03:23:37 +00:00
|
|
|
imageArr = []
|
2022-09-19 22:13:12 +00:00
|
|
|
# Also keep track of original file names
|
|
|
|
imageNameArr = []
|
2022-10-16 04:50:55 +00:00
|
|
|
outputs = []
|
2022-12-04 06:13:36 +00:00
|
|
|
|
2022-09-22 09:11:48 +00:00
|
|
|
if extras_mode == 1:
|
2022-09-16 03:23:37 +00:00
|
|
|
#convert file to pillow image
|
|
|
|
for img in image_folder:
|
2022-10-09 13:14:56 +00:00
|
|
|
image = Image.open(img)
|
2022-09-16 03:23:37 +00:00
|
|
|
imageArr.append(image)
|
2022-09-19 22:13:12 +00:00
|
|
|
imageNameArr.append(os.path.splitext(img.orig_name)[0])
|
2022-10-16 04:50:55 +00:00
|
|
|
elif extras_mode == 2:
|
2022-10-16 06:51:01 +00:00
|
|
|
assert not shared.cmd_opts.hide_ui_dir_config, '--hide-ui-dir-config option must be disabled'
|
|
|
|
|
2022-10-16 04:50:55 +00:00
|
|
|
if input_dir == '':
|
|
|
|
return outputs, "Please select an input directory.", ''
|
2022-10-29 05:11:03 +00:00
|
|
|
image_list = shared.listfiles(input_dir)
|
2022-10-16 04:50:55 +00:00
|
|
|
for img in image_list:
|
2022-10-20 12:31:29 +00:00
|
|
|
try:
|
|
|
|
image = Image.open(img)
|
|
|
|
except Exception:
|
|
|
|
continue
|
2022-10-16 04:50:55 +00:00
|
|
|
imageArr.append(image)
|
|
|
|
imageNameArr.append(img)
|
2022-09-22 09:11:48 +00:00
|
|
|
else:
|
|
|
|
imageArr.append(image)
|
|
|
|
imageNameArr.append(None)
|
2022-09-11 08:31:16 +00:00
|
|
|
|
2022-10-16 04:50:55 +00:00
|
|
|
if extras_mode == 2 and output_dir != '':
|
|
|
|
outpath = output_dir
|
|
|
|
else:
|
|
|
|
outpath = opts.outdir_samples or opts.outdir_extras_samples
|
2022-09-11 08:31:16 +00:00
|
|
|
|
2022-10-28 18:24:11 +00:00
|
|
|
# Extra operation definitions
|
2022-10-28 21:36:25 +00:00
|
|
|
|
2022-10-28 18:24:11 +00:00
|
|
|
def run_gfpgan(image: Image.Image, info: str) -> Tuple[Image.Image, str]:
|
2023-01-03 15:34:51 +00:00
|
|
|
shared.state.job = 'extras-gfpgan'
|
2022-10-28 18:24:11 +00:00
|
|
|
restored_img = modules.gfpgan_model.gfpgan_fix_faces(np.array(image, dtype=np.uint8))
|
|
|
|
res = Image.fromarray(restored_img)
|
|
|
|
|
|
|
|
if gfpgan_visibility < 1.0:
|
|
|
|
res = Image.blend(image, res, gfpgan_visibility)
|
|
|
|
|
|
|
|
info += f"GFPGAN visibility:{round(gfpgan_visibility, 2)}\n"
|
|
|
|
return (res, info)
|
2022-09-16 03:23:37 +00:00
|
|
|
|
2022-10-28 18:24:11 +00:00
|
|
|
def run_codeformer(image: Image.Image, info: str) -> Tuple[Image.Image, str]:
|
2023-01-03 15:34:51 +00:00
|
|
|
shared.state.job = 'extras-codeformer'
|
2022-10-28 18:24:11 +00:00
|
|
|
restored_img = modules.codeformer_model.codeformer.restore(np.array(image, dtype=np.uint8), w=codeformer_weight)
|
|
|
|
res = Image.fromarray(restored_img)
|
2022-09-11 08:31:16 +00:00
|
|
|
|
2022-10-28 18:24:11 +00:00
|
|
|
if codeformer_visibility < 1.0:
|
|
|
|
res = Image.blend(image, res, codeformer_visibility)
|
2022-09-11 08:31:16 +00:00
|
|
|
|
2022-10-28 18:24:11 +00:00
|
|
|
info += f"CodeFormer w: {round(codeformer_weight, 2)}, CodeFormer visibility:{round(codeformer_visibility, 2)}\n"
|
|
|
|
return (res, info)
|
2022-09-11 08:31:16 +00:00
|
|
|
|
2022-10-28 18:24:11 +00:00
|
|
|
def upscale(image, scaler_index, resize, mode, resize_w, resize_h, crop):
|
2023-01-03 15:34:51 +00:00
|
|
|
shared.state.job = 'extras-upscale'
|
2022-10-28 19:30:04 +00:00
|
|
|
upscaler = shared.sd_upscalers[scaler_index]
|
|
|
|
res = upscaler.scaler.upscale(image, resize, upscaler.data_path)
|
|
|
|
if mode == 1 and crop:
|
|
|
|
cropped = Image.new("RGB", (resize_w, resize_h))
|
|
|
|
cropped.paste(res, box=(resize_w // 2 - res.width // 2, resize_h // 2 - res.height // 2))
|
|
|
|
res = cropped
|
|
|
|
return res
|
2022-10-28 18:24:11 +00:00
|
|
|
|
|
|
|
def run_prepare_crop(image: Image.Image, info: str) -> Tuple[Image.Image, str]:
|
|
|
|
# Actual crop happens in run_upscalers_blend, this just sets upscaling_resize and adds info text
|
|
|
|
nonlocal upscaling_resize
|
2022-10-10 01:26:52 +00:00
|
|
|
if resize_mode == 1:
|
|
|
|
upscaling_resize = max(upscaling_resize_w/image.width, upscaling_resize_h/image.height)
|
|
|
|
crop_info = " (crop)" if upscaling_crop else ""
|
|
|
|
info += f"Resize to: {upscaling_resize_w:g}x{upscaling_resize_h:g}{crop_info}\n"
|
2022-10-28 18:24:11 +00:00
|
|
|
return (image, info)
|
|
|
|
|
|
|
|
@dataclass
|
|
|
|
class UpscaleParams:
|
|
|
|
upscaler_idx: int
|
|
|
|
blend_alpha: float
|
|
|
|
|
2022-10-28 21:36:25 +00:00
|
|
|
def run_upscalers_blend(params: List[UpscaleParams], image: Image.Image, info: str) -> Tuple[Image.Image, str]:
|
2022-10-28 18:24:11 +00:00
|
|
|
blended_result: Image.Image = None
|
2022-11-03 02:37:43 +00:00
|
|
|
image_hash: str = hash(np.array(image.getdata()).tobytes())
|
2022-10-28 18:24:11 +00:00
|
|
|
for upscaler in params:
|
2022-10-28 21:36:25 +00:00
|
|
|
upscale_args = (upscaler.upscaler_idx, upscaling_resize, resize_mode,
|
|
|
|
upscaling_resize_w, upscaling_resize_h, upscaling_crop)
|
2022-11-03 02:37:43 +00:00
|
|
|
cache_key = LruCache.Key(image_hash=image_hash,
|
2022-10-28 21:36:25 +00:00
|
|
|
info_hash=hash(info),
|
2022-11-03 02:37:43 +00:00
|
|
|
args_hash=hash(upscale_args))
|
2022-10-28 19:30:04 +00:00
|
|
|
cached_entry = cached_images.get(cache_key)
|
|
|
|
if cached_entry is None:
|
|
|
|
res = upscale(image, *upscale_args)
|
|
|
|
info += f"Upscale: {round(upscaling_resize, 3)}, visibility: {upscaler.blend_alpha}, model:{shared.sd_upscalers[upscaler.upscaler_idx].name}\n"
|
2022-10-28 21:11:16 +00:00
|
|
|
cached_images.put(cache_key, LruCache.Value(image=res, info=info))
|
2022-10-28 19:30:04 +00:00
|
|
|
else:
|
|
|
|
res, info = cached_entry.image, cached_entry.info
|
|
|
|
|
2022-10-28 18:24:11 +00:00
|
|
|
if blended_result is None:
|
|
|
|
blended_result = res
|
|
|
|
else:
|
|
|
|
blended_result = Image.blend(blended_result, res, upscaler.blend_alpha)
|
|
|
|
return (blended_result, info)
|
|
|
|
|
|
|
|
# Build a list of operations to run
|
|
|
|
facefix_ops: List[Callable] = []
|
2022-10-28 21:11:16 +00:00
|
|
|
facefix_ops += [run_gfpgan] if gfpgan_visibility > 0 else []
|
|
|
|
facefix_ops += [run_codeformer] if codeformer_visibility > 0 else []
|
2022-10-28 18:24:11 +00:00
|
|
|
|
|
|
|
upscale_ops: List[Callable] = []
|
2022-10-28 21:11:16 +00:00
|
|
|
upscale_ops += [run_prepare_crop] if resize_mode == 1 else []
|
2022-10-28 18:24:11 +00:00
|
|
|
|
|
|
|
if upscaling_resize != 0:
|
|
|
|
step_params: List[UpscaleParams] = []
|
2022-10-28 21:36:25 +00:00
|
|
|
step_params.append(UpscaleParams(upscaler_idx=extras_upscaler_1, blend_alpha=1.0))
|
2022-10-28 18:24:11 +00:00
|
|
|
if extras_upscaler_2 != 0 and extras_upscaler_2_visibility > 0:
|
2022-10-28 21:36:25 +00:00
|
|
|
step_params.append(UpscaleParams(upscaler_idx=extras_upscaler_2, blend_alpha=extras_upscaler_2_visibility))
|
2022-10-28 18:24:11 +00:00
|
|
|
|
2022-10-28 21:36:25 +00:00
|
|
|
upscale_ops.append(partial(run_upscalers_blend, step_params))
|
2022-10-28 18:24:11 +00:00
|
|
|
|
2022-10-28 21:11:16 +00:00
|
|
|
extras_ops: List[Callable] = (upscale_ops + facefix_ops) if upscale_first else (facefix_ops + upscale_ops)
|
2022-10-28 18:24:11 +00:00
|
|
|
|
|
|
|
for image, image_name in zip(imageArr, imageNameArr):
|
|
|
|
if image is None:
|
|
|
|
return outputs, "Please select an input image.", ''
|
2023-01-03 15:34:51 +00:00
|
|
|
|
|
|
|
shared.state.textinfo = f'Processing image {image_name}'
|
|
|
|
|
2022-10-28 18:24:11 +00:00
|
|
|
existing_pnginfo = image.info or {}
|
2022-10-10 01:26:52 +00:00
|
|
|
|
2022-10-28 18:24:11 +00:00
|
|
|
image = image.convert("RGB")
|
|
|
|
info = ""
|
|
|
|
# Run each operation on each image
|
|
|
|
for op in extras_ops:
|
|
|
|
image, info = op(image, info)
|
2022-09-11 08:31:16 +00:00
|
|
|
|
2022-12-14 18:59:33 +00:00
|
|
|
if opts.use_original_name_batch and image_name is not None:
|
2022-10-20 10:10:32 +00:00
|
|
|
basename = os.path.splitext(os.path.basename(image_name))[0]
|
|
|
|
else:
|
2022-10-20 12:43:27 +00:00
|
|
|
basename = ''
|
2022-10-20 10:10:32 +00:00
|
|
|
|
2023-01-03 15:34:51 +00:00
|
|
|
if opts.enable_pnginfo: # append info before save
|
|
|
|
image.info = existing_pnginfo
|
|
|
|
image.info["extras"] = info
|
|
|
|
|
2022-12-24 11:04:53 +00:00
|
|
|
if save_output:
|
|
|
|
# Add upscaler name as a suffix.
|
|
|
|
suffix = f"-{shared.sd_upscalers[extras_upscaler_1].name}" if shared.opts.use_upscaler_name_as_suffix else ""
|
|
|
|
# Add second upscaler if applicable.
|
|
|
|
if suffix and extras_upscaler_2 and extras_upscaler_2_visibility:
|
|
|
|
suffix += f"-{shared.sd_upscalers[extras_upscaler_2].name}"
|
2022-12-17 12:31:03 +00:00
|
|
|
|
2022-12-24 11:04:53 +00:00
|
|
|
images.save_image(image, path=outpath, basename=basename, seed=None, prompt=None, extension=opts.samples_format, info=info, short_filename=True,
|
|
|
|
no_prompt=True, grid=False, pnginfo_section_name="extras", existing_info=existing_pnginfo, forced_filename=None, suffix=suffix)
|
2022-09-11 08:31:16 +00:00
|
|
|
|
2022-10-16 04:50:55 +00:00
|
|
|
if extras_mode != 2 or show_extras_results :
|
|
|
|
outputs.append(image)
|
2022-09-16 09:43:24 +00:00
|
|
|
|
2022-09-29 01:14:13 +00:00
|
|
|
devices.torch_gc()
|
|
|
|
|
2023-01-22 12:38:39 +00:00
|
|
|
return outputs, ui_components.plaintext_to_html(info), ''
|
|
|
|
|
2022-09-11 08:31:16 +00:00
|
|
|
|
2022-10-28 21:11:16 +00:00
|
|
|
def clear_cache():
|
|
|
|
cached_images.clear()
|
|
|
|
|