diff options
author | CodeHatchling <steve@codehatch.com> | 2023-11-29 05:35:07 +0000 |
---|---|---|
committer | CodeHatchling <steve@codehatch.com> | 2023-11-29 05:35:07 +0000 |
commit | c5c7fa06aae1ae9f8b6d29ae2da3874921d4729b (patch) | |
tree | 27a4fff92fcd4c979601a465cd20f279d3a09f50 /modules/processing.py | |
parent | debf836fcc8d9becc3da8b1a29e33f40b0d9ef3e (diff) | |
download | stable-diffusion-webui-gfx803-c5c7fa06aae1ae9f8b6d29ae2da3874921d4729b.tar.gz stable-diffusion-webui-gfx803-c5c7fa06aae1ae9f8b6d29ae2da3874921d4729b.tar.bz2 stable-diffusion-webui-gfx803-c5c7fa06aae1ae9f8b6d29ae2da3874921d4729b.zip |
Added slider for detail preservation strength, removed largely needless offset parameter, changed labels in UI and for saving to/pasting data from PNG files.
Diffstat (limited to 'modules/processing.py')
-rw-r--r-- | modules/processing.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/processing.py b/modules/processing.py index da4d6fda..361e8b05 100644 --- a/modules/processing.py +++ b/modules/processing.py @@ -1351,7 +1351,7 @@ class StableDiffusionProcessingImg2Img(StableDiffusionProcessing): mask_blur: int = None
mask_blend_power: float = 1
mask_blend_scale: float = 1
- mask_blend_offset: float = 0
+ inpaint_detail_preservation: float = 16
inpainting_fill: int = 0
inpaint_full_res: bool = True
inpaint_full_res_padding: int = 0
|