Path: blob/master/scripts/postprocessing_upscale.py
3055 views
import re12from PIL import Image3import numpy as np45from modules import scripts_postprocessing, shared6import gradio as gr78from modules.ui_components import FormRow, ToolButton, InputAccordion9from modules.ui import switch_values_symbol1011upscale_cache = {}121314def limit_size_by_one_dimention(w, h, limit):15if h > w and h > limit:16w = limit * w // h17h = limit18elif w > limit:19h = limit * h // w20w = limit2122return int(w), int(h)232425class ScriptPostprocessingUpscale(scripts_postprocessing.ScriptPostprocessing):26name = "Upscale"27order = 10002829def ui(self):30selected_tab = gr.Number(value=0, visible=False)3132with InputAccordion(True, label="Upscale", elem_id="extras_upscale") as upscale_enabled:33with FormRow():34extras_upscaler_1 = gr.Dropdown(label='Upscaler 1', elem_id="extras_upscaler_1", choices=[x.name for x in shared.sd_upscalers], value=shared.sd_upscalers[0].name)3536with FormRow():37extras_upscaler_2 = gr.Dropdown(label='Upscaler 2', elem_id="extras_upscaler_2", choices=[x.name for x in shared.sd_upscalers], value=shared.sd_upscalers[0].name)38extras_upscaler_2_visibility = gr.Slider(minimum=0.0, maximum=1.0, step=0.001, label="Upscaler 2 visibility", value=0.0, elem_id="extras_upscaler_2_visibility")3940with FormRow():41with gr.Tabs(elem_id="extras_resize_mode"):42with gr.TabItem('Scale by', elem_id="extras_scale_by_tab") as tab_scale_by:43with gr.Row():44with gr.Column(scale=4):45upscaling_resize = gr.Slider(minimum=1.0, maximum=8.0, step=0.05, label="Resize", value=4, elem_id="extras_upscaling_resize")46with gr.Column(scale=1, min_width=160):47max_side_length = gr.Number(label="Max side length", value=0, elem_id="extras_upscale_max_side_length", tooltip="If any of two sides of the image ends up larger than specified, will downscale it to fit. 0 = no limit.", min_width=160, step=8, minimum=0)4849with gr.TabItem('Scale to', elem_id="extras_scale_to_tab") as tab_scale_to:50with FormRow():51with gr.Column(elem_id="upscaling_column_size", scale=4):52upscaling_resize_w = gr.Slider(minimum=64, maximum=8192, step=8, label="Width", value=512, elem_id="extras_upscaling_resize_w")53upscaling_resize_h = gr.Slider(minimum=64, maximum=8192, step=8, label="Height", value=512, elem_id="extras_upscaling_resize_h")54with gr.Column(elem_id="upscaling_dimensions_row", scale=1, elem_classes="dimensions-tools"):55upscaling_res_switch_btn = ToolButton(value=switch_values_symbol, elem_id="upscaling_res_switch_btn", tooltip="Switch width/height")56upscaling_crop = gr.Checkbox(label='Crop to fit', value=True, elem_id="extras_upscaling_crop")5758def on_selected_upscale_method(upscale_method):59if not shared.opts.set_scale_by_when_changing_upscaler:60return gr.update()6162match = re.search(r'(\d)[xX]|[xX](\d)', upscale_method)63if not match:64return gr.update()6566return gr.update(value=int(match.group(1) or match.group(2)))6768upscaling_res_switch_btn.click(lambda w, h: (h, w), inputs=[upscaling_resize_w, upscaling_resize_h], outputs=[upscaling_resize_w, upscaling_resize_h], show_progress=False)69tab_scale_by.select(fn=lambda: 0, inputs=[], outputs=[selected_tab])70tab_scale_to.select(fn=lambda: 1, inputs=[], outputs=[selected_tab])7172extras_upscaler_1.change(on_selected_upscale_method, inputs=[extras_upscaler_1], outputs=[upscaling_resize], show_progress="hidden")7374return {75"upscale_enabled": upscale_enabled,76"upscale_mode": selected_tab,77"upscale_by": upscaling_resize,78"max_side_length": max_side_length,79"upscale_to_width": upscaling_resize_w,80"upscale_to_height": upscaling_resize_h,81"upscale_crop": upscaling_crop,82"upscaler_1_name": extras_upscaler_1,83"upscaler_2_name": extras_upscaler_2,84"upscaler_2_visibility": extras_upscaler_2_visibility,85}8687def upscale(self, image, info, upscaler, upscale_mode, upscale_by, max_side_length, upscale_to_width, upscale_to_height, upscale_crop):88if upscale_mode == 1:89upscale_by = max(upscale_to_width/image.width, upscale_to_height/image.height)90info["Postprocess upscale to"] = f"{upscale_to_width}x{upscale_to_height}"91else:92info["Postprocess upscale by"] = upscale_by93if max_side_length != 0 and max(*image.size)*upscale_by > max_side_length:94upscale_mode = 195upscale_crop = False96upscale_to_width, upscale_to_height = limit_size_by_one_dimention(image.width*upscale_by, image.height*upscale_by, max_side_length)97upscale_by = max(upscale_to_width/image.width, upscale_to_height/image.height)98info["Max side length"] = max_side_length99100cache_key = (hash(np.array(image.getdata()).tobytes()), upscaler.name, upscale_mode, upscale_by, upscale_to_width, upscale_to_height, upscale_crop)101cached_image = upscale_cache.pop(cache_key, None)102103if cached_image is not None:104image = cached_image105else:106image = upscaler.scaler.upscale(image, upscale_by, upscaler.data_path)107108upscale_cache[cache_key] = image109if len(upscale_cache) > shared.opts.upscaling_max_images_in_cache:110upscale_cache.pop(next(iter(upscale_cache), None), None)111112if upscale_mode == 1 and upscale_crop:113cropped = Image.new("RGB", (upscale_to_width, upscale_to_height))114cropped.paste(image, box=(upscale_to_width // 2 - image.width // 2, upscale_to_height // 2 - image.height // 2))115image = cropped116info["Postprocess crop to"] = f"{image.width}x{image.height}"117118return image119120def process_firstpass(self, pp: scripts_postprocessing.PostprocessedImage, upscale_enabled=True, upscale_mode=1, upscale_by=2.0, max_side_length=0, upscale_to_width=None, upscale_to_height=None, upscale_crop=False, upscaler_1_name=None, upscaler_2_name=None, upscaler_2_visibility=0.0):121if upscale_mode == 1:122pp.shared.target_width = upscale_to_width123pp.shared.target_height = upscale_to_height124else:125pp.shared.target_width = int(pp.image.width * upscale_by)126pp.shared.target_height = int(pp.image.height * upscale_by)127128pp.shared.target_width, pp.shared.target_height = limit_size_by_one_dimention(pp.shared.target_width, pp.shared.target_height, max_side_length)129130def process(self, pp: scripts_postprocessing.PostprocessedImage, upscale_enabled=True, upscale_mode=1, upscale_by=2.0, max_side_length=0, upscale_to_width=None, upscale_to_height=None, upscale_crop=False, upscaler_1_name=None, upscaler_2_name=None, upscaler_2_visibility=0.0):131if not upscale_enabled:132return133134upscaler_1_name = upscaler_1_name135if upscaler_1_name == "None":136upscaler_1_name = None137138upscaler1 = next(iter([x for x in shared.sd_upscalers if x.name == upscaler_1_name]), None)139assert upscaler1 or (upscaler_1_name is None), f'could not find upscaler named {upscaler_1_name}'140141if not upscaler1:142return143144upscaler_2_name = upscaler_2_name145if upscaler_2_name == "None":146upscaler_2_name = None147148upscaler2 = next(iter([x for x in shared.sd_upscalers if x.name == upscaler_2_name and x.name != "None"]), None)149assert upscaler2 or (upscaler_2_name is None), f'could not find upscaler named {upscaler_2_name}'150151upscaled_image = self.upscale(pp.image, pp.info, upscaler1, upscale_mode, upscale_by, max_side_length, upscale_to_width, upscale_to_height, upscale_crop)152pp.info["Postprocess upscaler"] = upscaler1.name153154if upscaler2 and upscaler_2_visibility > 0:155second_upscale = self.upscale(pp.image, pp.info, upscaler2, upscale_mode, upscale_by, max_side_length, upscale_to_width, upscale_to_height, upscale_crop)156if upscaled_image.mode != second_upscale.mode:157second_upscale = second_upscale.convert(upscaled_image.mode)158upscaled_image = Image.blend(upscaled_image, second_upscale, upscaler_2_visibility)159160pp.info["Postprocess upscaler 2"] = upscaler2.name161162pp.image = upscaled_image163164def image_changed(self):165upscale_cache.clear()166167168class ScriptPostprocessingUpscaleSimple(ScriptPostprocessingUpscale):169name = "Simple Upscale"170order = 900171172def ui(self):173with FormRow():174upscaler_name = gr.Dropdown(label='Upscaler', choices=[x.name for x in shared.sd_upscalers], value=shared.sd_upscalers[0].name)175upscale_by = gr.Slider(minimum=0.05, maximum=8.0, step=0.05, label="Upscale by", value=2)176177return {178"upscale_by": upscale_by,179"upscaler_name": upscaler_name,180}181182def process_firstpass(self, pp: scripts_postprocessing.PostprocessedImage, upscale_by=2.0, upscaler_name=None):183pp.shared.target_width = int(pp.image.width * upscale_by)184pp.shared.target_height = int(pp.image.height * upscale_by)185186def process(self, pp: scripts_postprocessing.PostprocessedImage, upscale_by=2.0, upscaler_name=None):187if upscaler_name is None or upscaler_name == "None":188return189190upscaler1 = next(iter([x for x in shared.sd_upscalers if x.name == upscaler_name]), None)191assert upscaler1, f'could not find upscaler named {upscaler_name}'192193pp.image = self.upscale(pp.image, pp.info, upscaler1, 0, upscale_by, 0, 0, 0, False)194pp.info["Postprocess upscaler"] = upscaler1.name195196197