Added UI elements to control blending parameters.
This commit is contained in:
parent
a6e5846453
commit
debf836fcc
|
@ -116,7 +116,47 @@ def process_batch(p, input_dir, output_dir, inpaint_mask_dir, args, to_scale=Fal
|
||||||
process_images(p)
|
process_images(p)
|
||||||
|
|
||||||
|
|
||||||
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):
|
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,
|
||||||
|
mask_blend_power: float,
|
||||||
|
mask_blend_scale: float,
|
||||||
|
mask_blend_offset: 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):
|
||||||
override_settings = create_override_settings_dict(override_settings_texts)
|
override_settings = create_override_settings_dict(override_settings_texts)
|
||||||
|
|
||||||
is_batch = mode == 5
|
is_batch = mode == 5
|
||||||
|
@ -174,6 +214,9 @@ def img2img(id_task: str, mode: int, prompt: str, negative_prompt: str, prompt_s
|
||||||
init_images=[image],
|
init_images=[image],
|
||||||
mask=mask,
|
mask=mask,
|
||||||
mask_blur=mask_blur,
|
mask_blur=mask_blur,
|
||||||
|
mask_blend_power=mask_blend_power,
|
||||||
|
mask_blend_scale=mask_blend_scale,
|
||||||
|
mask_blend_offset=mask_blend_offset,
|
||||||
inpainting_fill=inpainting_fill,
|
inpainting_fill=inpainting_fill,
|
||||||
resize_mode=resize_mode,
|
resize_mode=resize_mode,
|
||||||
denoising_strength=denoising_strength,
|
denoising_strength=denoising_strength,
|
||||||
|
@ -194,6 +237,9 @@ def img2img(id_task: str, mode: int, prompt: str, negative_prompt: str, prompt_s
|
||||||
|
|
||||||
if mask:
|
if mask:
|
||||||
p.extra_generation_params["Mask blur"] = mask_blur
|
p.extra_generation_params["Mask blur"] = mask_blur
|
||||||
|
p.extra_generation_params["Mask blend power"] = mask_blend_power
|
||||||
|
p.extra_generation_params["Mask blend scale"] = mask_blend_scale
|
||||||
|
p.extra_generation_params["Mask blend offset"] = mask_blend_offset
|
||||||
|
|
||||||
with closing(p):
|
with closing(p):
|
||||||
if is_batch:
|
if is_batch:
|
||||||
|
|
|
@ -1349,6 +1349,9 @@ class StableDiffusionProcessingImg2Img(StableDiffusionProcessing):
|
||||||
mask_blur_x: int = 4
|
mask_blur_x: int = 4
|
||||||
mask_blur_y: int = 4
|
mask_blur_y: int = 4
|
||||||
mask_blur: int = None
|
mask_blur: int = None
|
||||||
|
mask_blend_power: float = 1
|
||||||
|
mask_blend_scale: float = 1
|
||||||
|
mask_blend_offset: float = 0
|
||||||
inpainting_fill: int = 0
|
inpainting_fill: int = 0
|
||||||
inpaint_full_res: bool = True
|
inpaint_full_res: bool = True
|
||||||
inpaint_full_res_padding: int = 0
|
inpaint_full_res_padding: int = 0
|
||||||
|
|
|
@ -277,6 +277,9 @@ class Sampler:
|
||||||
self.model_wrap_cfg.p = p
|
self.model_wrap_cfg.p = p
|
||||||
self.model_wrap_cfg.mask = p.mask if hasattr(p, 'mask') else None
|
self.model_wrap_cfg.mask = p.mask if hasattr(p, 'mask') else None
|
||||||
self.model_wrap_cfg.nmask = p.nmask if hasattr(p, 'nmask') else None
|
self.model_wrap_cfg.nmask = p.nmask if hasattr(p, 'nmask') else None
|
||||||
|
self.model_wrap_cfg.mask_blend_power = p.mask_blend_power if hasattr(p, 'mask_blend_power') else None
|
||||||
|
self.model_wrap_cfg.mask_blend_scale = p.mask_blend_scale if hasattr(p, 'mask_blend_scale') else None
|
||||||
|
self.model_wrap_cfg.mask_blend_offset = p.mask_blend_offset if hasattr(p, 'mask_blend_offset') else None
|
||||||
self.model_wrap_cfg.step = 0
|
self.model_wrap_cfg.step = 0
|
||||||
self.model_wrap_cfg.image_cfg_scale = getattr(p, 'image_cfg_scale', None)
|
self.model_wrap_cfg.image_cfg_scale = getattr(p, 'image_cfg_scale', None)
|
||||||
self.eta = p.eta if p.eta is not None else getattr(opts, self.eta_option_field, 0.0)
|
self.eta = p.eta if p.eta is not None else getattr(opts, self.eta_option_field, 0.0)
|
||||||
|
|
|
@ -732,6 +732,9 @@ def create_ui():
|
||||||
with FormRow():
|
with FormRow():
|
||||||
mask_blur = gr.Slider(label='Mask blur', minimum=0, maximum=64, step=1, value=4, elem_id="img2img_mask_blur")
|
mask_blur = gr.Slider(label='Mask blur', minimum=0, maximum=64, step=1, value=4, elem_id="img2img_mask_blur")
|
||||||
mask_alpha = gr.Slider(label="Mask transparency", visible=False, elem_id="img2img_mask_alpha")
|
mask_alpha = gr.Slider(label="Mask transparency", visible=False, elem_id="img2img_mask_alpha")
|
||||||
|
mask_blend_power = gr.Slider(label='Mask blend power', minimum=0, maximum=8, step=0.1, value=1, elem_id="img2img_mask_blend_power")
|
||||||
|
mask_blend_scale = gr.Slider(label='Mask blend scale', minimum=0, maximum=8, step=0.1, value=1, elem_id="img2img_mask_blend_scale")
|
||||||
|
mask_blend_offset = gr.Slider(label='Mask blend offset', minimum=-4, maximum=4, step=0.1, value=0, elem_id="img2img_mask_blend_offset")
|
||||||
|
|
||||||
with FormRow():
|
with FormRow():
|
||||||
inpainting_mask_invert = gr.Radio(label='Mask mode', choices=['Inpaint masked', 'Inpaint not masked'], value='Inpaint masked', type="index", elem_id="img2img_mask_mode")
|
inpainting_mask_invert = gr.Radio(label='Mask mode', choices=['Inpaint masked', 'Inpaint not masked'], value='Inpaint masked', type="index", elem_id="img2img_mask_mode")
|
||||||
|
@ -781,6 +784,9 @@ def create_ui():
|
||||||
sampler_name,
|
sampler_name,
|
||||||
mask_blur,
|
mask_blur,
|
||||||
mask_alpha,
|
mask_alpha,
|
||||||
|
mask_blend_power,
|
||||||
|
mask_blend_scale,
|
||||||
|
mask_blend_offset,
|
||||||
inpainting_fill,
|
inpainting_fill,
|
||||||
batch_count,
|
batch_count,
|
||||||
batch_size,
|
batch_size,
|
||||||
|
@ -879,6 +885,9 @@ def create_ui():
|
||||||
(toprow.ui_styles.dropdown, lambda d: d["Styles array"] if isinstance(d.get("Styles array"), list) else gr.update()),
|
(toprow.ui_styles.dropdown, lambda d: d["Styles array"] if isinstance(d.get("Styles array"), list) else gr.update()),
|
||||||
(denoising_strength, "Denoising strength"),
|
(denoising_strength, "Denoising strength"),
|
||||||
(mask_blur, "Mask blur"),
|
(mask_blur, "Mask blur"),
|
||||||
|
(mask_blend_power, "Mask blend power"),
|
||||||
|
(mask_blend_scale, "Mask blend scale"),
|
||||||
|
(mask_blend_offset, "Mask blend offset"),
|
||||||
*scripts.scripts_img2img.infotext_fields
|
*scripts.scripts_img2img.infotext_fields
|
||||||
]
|
]
|
||||||
parameters_copypaste.add_paste_fields("img2img", init_img, img2img_paste_fields, override_settings)
|
parameters_copypaste.add_paste_fields("img2img", init_img, img2img_paste_fields, override_settings)
|
||||||
|
|
|
@ -133,13 +133,16 @@ class Script(scripts.Script):
|
||||||
|
|
||||||
pixels = gr.Slider(label="Pixels to expand", minimum=8, maximum=256, step=8, value=128, elem_id=self.elem_id("pixels"))
|
pixels = gr.Slider(label="Pixels to expand", minimum=8, maximum=256, step=8, value=128, elem_id=self.elem_id("pixels"))
|
||||||
mask_blur = gr.Slider(label='Mask blur', minimum=0, maximum=64, step=1, value=8, elem_id=self.elem_id("mask_blur"))
|
mask_blur = gr.Slider(label='Mask blur', minimum=0, maximum=64, step=1, value=8, elem_id=self.elem_id("mask_blur"))
|
||||||
|
mask_blend_power = gr.Slider(label='Mask blend power', minimum=0, maximum=8, step=0.1, value=1, elem_id=self.elem_id("mask_blend_power"))
|
||||||
|
mask_blend_scale = gr.Slider(label='Mask blend scale', minimum=0, maximum=8, step=0.1, value=1, elem_id=self.elem_id("mask_blend_scale"))
|
||||||
|
mask_blend_offset = gr.Slider(label='Mask blend scale', minimum=-4, maximum=4, step=0.1, value=1, elem_id=self.elem_id("mask_blend_offset"))
|
||||||
direction = gr.CheckboxGroup(label="Outpainting direction", choices=['left', 'right', 'up', 'down'], value=['left', 'right', 'up', 'down'], elem_id=self.elem_id("direction"))
|
direction = gr.CheckboxGroup(label="Outpainting direction", choices=['left', 'right', 'up', 'down'], value=['left', 'right', 'up', 'down'], elem_id=self.elem_id("direction"))
|
||||||
noise_q = gr.Slider(label="Fall-off exponent (lower=higher detail)", minimum=0.0, maximum=4.0, step=0.01, value=1.0, elem_id=self.elem_id("noise_q"))
|
noise_q = gr.Slider(label="Fall-off exponent (lower=higher detail)", minimum=0.0, maximum=4.0, step=0.01, value=1.0, elem_id=self.elem_id("noise_q"))
|
||||||
color_variation = gr.Slider(label="Color variation", minimum=0.0, maximum=1.0, step=0.01, value=0.05, elem_id=self.elem_id("color_variation"))
|
color_variation = gr.Slider(label="Color variation", minimum=0.0, maximum=1.0, step=0.01, value=0.05, elem_id=self.elem_id("color_variation"))
|
||||||
|
|
||||||
return [info, pixels, mask_blur, direction, noise_q, color_variation]
|
return [info, pixels, mask_blur, mask_blend_power, mask_blend_scale, mask_blend_offset, direction, noise_q, color_variation]
|
||||||
|
|
||||||
def run(self, p, _, pixels, mask_blur, direction, noise_q, color_variation):
|
def run(self, p, _, pixels, mask_blur, mask_blend_power, mask_blend_scale, mask_blend_offset, direction, noise_q, color_variation):
|
||||||
initial_seed_and_info = [None, None]
|
initial_seed_and_info = [None, None]
|
||||||
|
|
||||||
process_width = p.width
|
process_width = p.width
|
||||||
|
@ -167,6 +170,9 @@ class Script(scripts.Script):
|
||||||
|
|
||||||
p.mask_blur_x = mask_blur_x*4
|
p.mask_blur_x = mask_blur_x*4
|
||||||
p.mask_blur_y = mask_blur_y*4
|
p.mask_blur_y = mask_blur_y*4
|
||||||
|
p.mask_blend_power = mask_blend_power
|
||||||
|
p.mask_blend_scale = mask_blend_scale
|
||||||
|
p.mask_blend_offset = mask_blend_offset
|
||||||
|
|
||||||
init_img = p.init_images[0]
|
init_img = p.init_images[0]
|
||||||
target_w = math.ceil((init_img.width + left + right) / 64) * 64
|
target_w = math.ceil((init_img.width + left + right) / 64) * 64
|
||||||
|
|
|
@ -22,16 +22,23 @@ class Script(scripts.Script):
|
||||||
|
|
||||||
pixels = gr.Slider(label="Pixels to expand", minimum=8, maximum=256, step=8, value=128, elem_id=self.elem_id("pixels"))
|
pixels = gr.Slider(label="Pixels to expand", minimum=8, maximum=256, step=8, value=128, elem_id=self.elem_id("pixels"))
|
||||||
mask_blur = gr.Slider(label='Mask blur', minimum=0, maximum=64, step=1, value=4, elem_id=self.elem_id("mask_blur"))
|
mask_blur = gr.Slider(label='Mask blur', minimum=0, maximum=64, step=1, value=4, elem_id=self.elem_id("mask_blur"))
|
||||||
|
mask_blend_power = gr.Slider(label='Mask blend power', minimum=0, maximum=8, step=0.1, value=1, elem_id=self.elem_id("mask_blend_power"))
|
||||||
|
mask_blend_scale = gr.Slider(label='Mask blend scale', minimum=0, maximum=8, step=0.1, value=1, elem_id=self.elem_id("mask_blend_scale"))
|
||||||
|
mask_blend_offset = gr.Slider(label='Mask blend offset', minimum=-4, maximum=4, step=0.1, value=0, elem_id=self.elem_id("mask_blend_offset"))
|
||||||
inpainting_fill = gr.Radio(label='Masked content', choices=['fill', 'original', 'latent noise', 'latent nothing'], value='fill', type="index", elem_id=self.elem_id("inpainting_fill"))
|
inpainting_fill = gr.Radio(label='Masked content', choices=['fill', 'original', 'latent noise', 'latent nothing'], value='fill', type="index", elem_id=self.elem_id("inpainting_fill"))
|
||||||
direction = gr.CheckboxGroup(label="Outpainting direction", choices=['left', 'right', 'up', 'down'], value=['left', 'right', 'up', 'down'], elem_id=self.elem_id("direction"))
|
direction = gr.CheckboxGroup(label="Outpainting direction", choices=['left', 'right', 'up', 'down'], value=['left', 'right', 'up', 'down'], elem_id=self.elem_id("direction"))
|
||||||
|
|
||||||
return [pixels, mask_blur, inpainting_fill, direction]
|
return [pixels, mask_blur, mask_blend_power, mask_blend_scale, mask_blend_offset, inpainting_fill, direction]
|
||||||
|
|
||||||
def run(self, p, pixels, mask_blur, inpainting_fill, direction):
|
def run(self, p, pixels, mask_blur, mask_blend_power, mask_blend_scale, mask_blend_offset, inpainting_fill, direction):
|
||||||
initial_seed = None
|
initial_seed = None
|
||||||
initial_info = None
|
initial_info = None
|
||||||
|
|
||||||
p.mask_blur = mask_blur * 2
|
p.mask_blur = mask_blur * 2
|
||||||
|
p.mask_blend_power = mask_blend_power
|
||||||
|
p.mask_blend_scale = mask_blend_scale
|
||||||
|
p.mask_blend_offset = mask_blend_offset
|
||||||
|
|
||||||
p.inpainting_fill = inpainting_fill
|
p.inpainting_fill = inpainting_fill
|
||||||
p.inpaint_full_res = False
|
p.inpaint_full_res = False
|
||||||
|
|
||||||
|
|
|
@ -24,6 +24,9 @@ def simple_img2img_request(img2img_basic_image_base64):
|
||||||
"inpainting_mask_invert": False,
|
"inpainting_mask_invert": False,
|
||||||
"mask": None,
|
"mask": None,
|
||||||
"mask_blur": 4,
|
"mask_blur": 4,
|
||||||
|
"mask_blend_power": 1,
|
||||||
|
"mask_blend_scale": 1,
|
||||||
|
"mask_blend_offset": 0,
|
||||||
"n_iter": 1,
|
"n_iter": 1,
|
||||||
"negative_prompt": "",
|
"negative_prompt": "",
|
||||||
"override_settings": {},
|
"override_settings": {},
|
||||||
|
|
Loading…
Reference in New Issue