diff options
author | Justin Maier <Zipp425@gmail.com> | 2022-10-10 18:04:21 +0000 |
---|---|---|
committer | Justin Maier <Zipp425@gmail.com> | 2022-10-10 18:04:21 +0000 |
commit | 1d64976dbc5a0f3124567b91fadd5014a9d93c5f (patch) | |
tree | 9d2a9fbd55b19eb367d63b7e1c4f478554355dae | |
parent | 6435691bb11c5a35703720bfd2a875f24c066f86 (diff) | |
download | stable-diffusion-webui-gfx803-1d64976dbc5a0f3124567b91fadd5014a9d93c5f.tar.gz stable-diffusion-webui-gfx803-1d64976dbc5a0f3124567b91fadd5014a9d93c5f.tar.bz2 stable-diffusion-webui-gfx803-1d64976dbc5a0f3124567b91fadd5014a9d93c5f.zip |
Simplify crop logic
-rw-r--r-- | modules/extras.py | 14 | ||||
-rw-r--r-- | modules/ui.py | 4 |
2 files changed, 5 insertions, 13 deletions
diff --git a/modules/extras.py b/modules/extras.py index 83ca7049..b24d7de3 100644 --- a/modules/extras.py +++ b/modules/extras.py @@ -73,16 +73,6 @@ def run_extras(extras_mode, resize_mode, image, image_folder, gfpgan_visibility, crop_info = " (crop)" if upscaling_crop else ""
info += f"Resize to: {upscaling_resize_w:g}x{upscaling_resize_h:g}{crop_info}\n"
- def crop_upscaled_center(image, resize_w, resize_h):
- left = int(math.ceil((image.width - resize_w) / 2))
- right = image.width - int(math.floor((image.width - resize_w) / 2))
- top = int(math.ceil((image.height - resize_h) / 2))
- bottom = image.height - int(math.floor((image.height - resize_h) / 2))
-
- image = image.crop((left, top, right, bottom))
- return image
-
-
if upscaling_resize != 1.0:
def upscale(image, scaler_index, resize, mode, resize_w, resize_h, crop):
small = image.crop((image.width // 2, image.height // 2, image.width // 2 + 10, image.height // 2 + 10))
@@ -94,7 +84,9 @@ def run_extras(extras_mode, resize_mode, image, image_folder, gfpgan_visibility, upscaler = shared.sd_upscalers[scaler_index]
c = upscaler.scaler.upscale(image, resize, upscaler.data_path)
if mode == 1 and crop:
- c = crop_upscaled_center(c, resize_w, resize_h)
+ cropped = Image.new("RGB", (resize_w, resize_h))
+ cropped.paste(c, box=(resize_w // 2 - c.width // 2, resize_h // 2 - c.height // 2))
+ c = cropped
cached_images[key] = c
return c
diff --git a/modules/ui.py b/modules/ui.py index 4bb2892b..1aabe18d 100644 --- a/modules/ui.py +++ b/modules/ui.py @@ -909,8 +909,8 @@ def create_ui(wrap_gradio_gpu_call): with gr.TabItem('Scale to'):
with gr.Group():
with gr.Row():
- upscaling_resize_w = gr.Number(label="Width", value=512)
- upscaling_resize_h = gr.Number(label="Height", value=512)
+ upscaling_resize_w = gr.Number(label="Width", value=512, precision=0)
+ upscaling_resize_h = gr.Number(label="Height", value=512, precision=0)
upscaling_crop = gr.Checkbox(label='Crop to fit', value=True)
with gr.Group():
|