mirror of
https://github.com/AUTOMATIC1111/stable-diffusion-webui.git
synced 2025-08-08 05:12:35 +00:00
Added UI elements to control blending parameters.
This commit is contained in:
@@ -116,7 +116,47 @@ def process_batch(p, input_dir, output_dir, inpaint_mask_dir, args, to_scale=Fal
|
||||
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)
|
||||
|
||||
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],
|
||||
mask=mask,
|
||||
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,
|
||||
resize_mode=resize_mode,
|
||||
denoising_strength=denoising_strength,
|
||||
@@ -194,6 +237,9 @@ def img2img(id_task: str, mode: int, prompt: str, negative_prompt: str, prompt_s
|
||||
|
||||
if mask:
|
||||
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):
|
||||
if is_batch:
|
||||
|
Reference in New Issue
Block a user