img2img.py 10.9 KB
Newer Older
1
import os
2
from contextlib import closing
A
Artem Kotov 已提交
3
from pathlib import Path
4

5
import numpy as np
C
catboxanon 已提交
6
from PIL import Image, ImageOps, ImageFilter, ImageEnhance, UnidentifiedImageError
7
import gradio as gr
8

9
from modules import images as imgutil
10
from modules.generation_parameters_copypaste import create_override_settings_dict, parse_generation_parameters
11 12
from modules.processing import Processed, StableDiffusionProcessingImg2Img, process_images
from modules.shared import opts, state
W
w-e-w 已提交
13
from modules.sd_models import get_closet_checkpoint_match
14 15 16
import modules.shared as shared
import modules.processing as processing
from modules.ui import plaintext_to_html
A
AUTOMATIC 已提交
17
import modules.scripts
18

19

20
def process_batch(p, input_dir, output_dir, inpaint_mask_dir, args, to_scale=False, scale_by=1.0, use_png_info=False, png_info_props=None, png_info_dir=None):
W
w-e-w 已提交
21
    output_dir = output_dir.strip()
22 23
    processing.fix_seed(p)

24
    images = list(shared.walk_files(input_dir, allowed_extensions=(".png", ".jpg", ".jpeg", ".webp", ".tif", ".tiff")))
25

T
Thurion 已提交
26 27 28
    is_inpaint_batch = False
    if inpaint_mask_dir:
        inpaint_masks = shared.listfiles(inpaint_mask_dir)
29
        is_inpaint_batch = bool(inpaint_masks)
A
AUTOMATIC 已提交
30 31 32

        if is_inpaint_batch:
            print(f"\nInpaint batch is enabled. {len(inpaint_masks)} masks found.")
A
Andrii Skaliuk 已提交
33

34 35 36 37
    print(f"Will process {len(images)} images, creating {p.n_iter * p.batch_size} new images for each.")

    state.job_count = len(images) * p.n_iter

38
    # extract "default" params to use in case getting png info fails
39 40
    prompt = p.prompt
    negative_prompt = p.negative_prompt
41 42 43 44
    seed = p.seed
    cfg_scale = p.cfg_scale
    sampler_name = p.sampler_name
    steps = p.steps
W
w-e-w 已提交
45 46
    override_settings = p.override_settings
    sd_model_checkpoint_override = get_closet_checkpoint_match(override_settings.get("sd_model_checkpoint", None))
W
w-e-w 已提交
47 48
    batch_results = None
    discard_further_results = False
49 50
    for i, image in enumerate(images):
        state.job = f"{i+1} out of {len(images)}"
51 52
        if state.skipped:
            state.skipped = False
53 54 55 56

        if state.interrupted:
            break

Z
Z_nonymous 已提交
57 58
        try:
            img = Image.open(image)
W
w-e-w 已提交
59 60
        except UnidentifiedImageError as e:
            print(e)
Z
Z_nonymous 已提交
61
            continue
62
        # Use the EXIF orientation of photos taken by smartphones.
63
        img = ImageOps.exif_transpose(img)
A
ruffed  
Artem Kotov 已提交
64

A
Artem Kotov 已提交
65 66 67
        if to_scale:
            p.width = int(img.width * scale_by)
            p.height = int(img.height * scale_by)
A
ruffed  
Artem Kotov 已提交
68

69 70
        p.init_images = [img] * p.batch_size

71
        image_path = Path(image)
A
Andrii Skaliuk 已提交
72 73
        if is_inpaint_batch:
            # try to find corresponding mask for an image using simple filename matching
74
            if len(inpaint_masks) == 1:
A
Andrii Skaliuk 已提交
75
                mask_image_path = inpaint_masks[0]
76 77
            else:
                # try to find corresponding mask for an image using simple filename matching
78
                mask_image_dir = Path(inpaint_mask_dir)
79 80 81
                masks_found = list(mask_image_dir.glob(f"{image_path.stem}.*"))

                if len(masks_found) == 0:
82 83
                    print(f"Warning: mask is not found for {image_path} in {mask_image_dir}. Skipping it.")
                    continue
84 85 86 87 88

                # it should contain only 1 matching mask
                # otherwise user has many masks with the same name but different extensions
                mask_image_path = masks_found[0]

A
Andrii Skaliuk 已提交
89 90 91
            mask_image = Image.open(mask_image_path)
            p.image_mask = mask_image

92 93 94 95 96 97 98 99
        if use_png_info:
            try:
                info_img = img
                if png_info_dir:
                    info_img_path = os.path.join(png_info_dir, os.path.basename(image))
                    info_img = Image.open(info_img_path)
                geninfo, _ = imgutil.read_info_from_image(info_img)
                parsed_parameters = parse_generation_parameters(geninfo)
100 101 102 103 104 105 106 107 108 109
                parsed_parameters = {k: v for k, v in parsed_parameters.items() if k in (png_info_props or {})}
            except Exception:
                parsed_parameters = {}

            p.prompt = prompt + (" " + parsed_parameters["Prompt"] if "Prompt" in parsed_parameters else "")
            p.negative_prompt = negative_prompt + (" " + parsed_parameters["Negative prompt"] if "Negative prompt" in parsed_parameters else "")
            p.seed = int(parsed_parameters.get("Seed", seed))
            p.cfg_scale = float(parsed_parameters.get("CFG scale", cfg_scale))
            p.sampler_name = parsed_parameters.get("Sampler", sampler_name)
            p.steps = int(parsed_parameters.get("Steps", steps))
A
Andrii Skaliuk 已提交
110

W
w-e-w 已提交
111 112 113 114 115 116 117 118
            model_info = get_closet_checkpoint_match(parsed_parameters.get("Model hash", None))
            if model_info is not None:
                p.override_settings['sd_model_checkpoint'] = model_info.name
            elif sd_model_checkpoint_override:
                p.override_settings['sd_model_checkpoint'] = sd_model_checkpoint_override
            else:
                p.override_settings.pop("sd_model_checkpoint", None)

W
w-e-w 已提交
119 120 121
        if output_dir:
            p.outpath_samples = output_dir
            p.override_settings['save_to_dirs'] = False
122
            p.override_settings['save_images_replace_action'] = "Add number suffix"
123 124 125 126
            if p.n_iter > 1 or p.batch_size > 1:
                p.override_settings['samples_filename_pattern'] = f'{image_path.stem}-[generation_number]'
            else:
                p.override_settings['samples_filename_pattern'] = f'{image_path.stem}'
W
w-e-w 已提交
127

128
        proc = modules.scripts.scripts_img2img.run(p, *args)
W
w-e-w 已提交
129

130
        if proc is None:
131
            p.override_settings.pop('save_images_replace_action', None)
W
w-e-w 已提交
132 133 134 135 136 137 138 139 140 141 142 143 144 145 146
            proc = process_images(p)

        if not discard_further_results and proc:
            if batch_results:
                batch_results.images.extend(proc.images)
                batch_results.infotexts.extend(proc.infotexts)
            else:
                batch_results = proc

            if 0 <= shared.opts.img2img_batch_show_results_limit < len(batch_results.images):
                discard_further_results = True
                batch_results.images = batch_results.images[:int(shared.opts.img2img_batch_show_results_limit)]
                batch_results.infotexts = batch_results.infotexts[:int(shared.opts.img2img_batch_show_results_limit)]

    return batch_results
147 148


149
def img2img(id_task: str, mode: int, prompt: str, negative_prompt: str, prompt_styles, init_img, sketch, init_img_with_mask, inpaint_color_sketch, inpaint_color_sketch_orig, init_img_inpaint, init_mask_inpaint, steps: int, sampler_name: str, mask_blur: int, mask_alpha: float, inpainting_fill: int, n_iter: int, batch_size: int, cfg_scale: float, image_cfg_scale: float, denoising_strength: float, selected_scale_tab: int, height: int, width: int, scale_by: float, resize_mode: int, inpaint_full_res: bool, inpaint_full_res_padding: int, inpainting_mask_invert: int, img2img_batch_input_dir: str, img2img_batch_output_dir: str, img2img_batch_inpaint_mask_dir: str, override_settings_texts, img2img_batch_use_png_info: bool, img2img_batch_png_info_props: list, img2img_batch_png_info_dir: str, request: gr.Request, *args):
150 151
    override_settings = create_override_settings_dict(override_settings_texts)

152 153 154
    is_batch = mode == 5

    if mode == 0:  # img2img
155
        image = init_img
156 157
        mask = None
    elif mode == 1:  # img2img sketch
158
        image = sketch
159 160 161
        mask = None
    elif mode == 2:  # inpaint
        image, mask = init_img_with_mask["image"], init_img_with_mask["mask"]
162
        mask = processing.create_binary_mask(mask)
163 164 165 166 167 168 169 170 171 172 173
    elif mode == 3:  # inpaint sketch
        image = inpaint_color_sketch
        orig = inpaint_color_sketch_orig or inpaint_color_sketch
        pred = np.any(np.array(image) != np.array(orig), axis=-1)
        mask = Image.fromarray(pred.astype(np.uint8) * 255, "L")
        mask = ImageEnhance.Brightness(mask).enhance(1 - mask_alpha / 100)
        blur = ImageFilter.GaussianBlur(mask_blur)
        image = Image.composite(image.filter(blur), orig, mask.filter(blur))
    elif mode == 4:  # inpaint upload mask
        image = init_img_inpaint
        mask = init_mask_inpaint
174
    else:
175
        image = None
176 177
        mask = None

178
    # Use the EXIF orientation of photos taken by smartphones.
179
    if image is not None:
180
        image = ImageOps.exif_transpose(image)
181

A
Artem Kotov 已提交
182
    if selected_scale_tab == 1 and not is_batch:
183 184 185 186 187
        assert image, "Can't scale by because no image is selected"

        width = int(image.width * scale_by)
        height = int(image.height * scale_by)

188 189 190 191 192 193 194
    assert 0. <= denoising_strength <= 1., 'can only work with strength in [0.0, 1.0]'

    p = StableDiffusionProcessingImg2Img(
        sd_model=shared.sd_model,
        outpath_samples=opts.outdir_samples or opts.outdir_img2img_samples,
        outpath_grids=opts.outdir_grids or opts.outdir_img2img_grids,
        prompt=prompt,
195
        negative_prompt=negative_prompt,
196
        styles=prompt_styles,
197
        sampler_name=sampler_name,
198 199 200 201 202 203 204 205 206 207 208 209
        batch_size=batch_size,
        n_iter=n_iter,
        steps=steps,
        cfg_scale=cfg_scale,
        width=width,
        height=height,
        init_images=[image],
        mask=mask,
        mask_blur=mask_blur,
        inpainting_fill=inpainting_fill,
        resize_mode=resize_mode,
        denoising_strength=denoising_strength,
K
Kyle 已提交
210
        image_cfg_scale=image_cfg_scale,
211
        inpaint_full_res=inpaint_full_res,
212
        inpaint_full_res_padding=inpaint_full_res_padding,
A
AUTOMATIC 已提交
213
        inpainting_mask_invert=inpainting_mask_invert,
214
        override_settings=override_settings,
215
    )
216

D
dennissheng 已提交
217
    p.scripts = modules.scripts.scripts_img2img
218
    p.script_args = args
M
MalumaDev 已提交
219

220 221
    p.user = request.username

W
w-e-w 已提交
222
    if shared.opts.enable_console_prompts:
223
        print(f"\nimg2img: {prompt}", file=shared.progress_print_out)
224

225 226
    if mask:
        p.extra_generation_params["Mask blur"] = mask_blur
A
AUTOMATIC 已提交
227

228 229 230
    with closing(p):
        if is_batch:
            assert not shared.cmd_opts.hide_ui_dir_config, "Launched with --hide-ui-dir-config, batch img2img disabled"
W
w-e-w 已提交
231
            processed = process_batch(p, img2img_batch_input_dir, img2img_batch_output_dir, img2img_batch_inpaint_mask_dir, args, to_scale=selected_scale_tab == 1, scale_by=scale_by, use_png_info=img2img_batch_use_png_info, png_info_props=img2img_batch_png_info_props, png_info_dir=img2img_batch_png_info_dir)
232

W
w-e-w 已提交
233 234
            if processed is None:
                processed = Processed(p, [], p.seed, "")
235 236 237 238
        else:
            processed = modules.scripts.scripts_img2img.run(p, *args)
            if processed is None:
                processed = process_images(p)
239

240
    shared.total_tqdm.clear()
241

242 243 244 245
    generation_info_js = processed.js()
    if opts.samples_log_stdout:
        print(generation_info_js)

A
AUTOMATIC 已提交
246 247 248
    if opts.do_not_show_images:
        processed.images = []

249
    return processed.images, generation_info_js, plaintext_to_html(processed.info), plaintext_to_html(processed.comments, classname="comments")