Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
S
Stable Diffusion Webui
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Packages
Packages
List
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issues
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
novelai-storage
Stable Diffusion Webui
Commits
a6e58464
Commit
a6e58464
authored
Nov 28, 2023
by
CodeHatchling
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Nerfs the aggressive post-processing step of overlaying the original image.
parent
e715e46b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
3 deletions
+11
-3
modules/processing.py
modules/processing.py
+11
-3
No files found.
modules/processing.py
View file @
a6e58464
...
...
@@ -1412,7 +1412,12 @@ class StableDiffusionProcessingImg2Img(StableDiffusionProcessing):
image_mask
=
Image
.
fromarray
(
np_mask
)
if
self
.
inpaint_full_res
:
self
.
mask_for_overlay
=
image_mask
np_mask
=
np
.
array
(
image_mask
)
.
astype
(
np
.
float32
)
np_mask
/=
255
np_mask
=
1
-
pow
(
1
-
np_mask
,
100
)
np_mask
*=
255
np_mask
=
np
.
clip
(
np_mask
,
0
,
255
)
.
astype
(
np
.
uint8
)
self
.
mask_for_overlay
=
Image
.
fromarray
(
np_mask
)
mask
=
image_mask
.
convert
(
'L'
)
crop_region
=
masking
.
get_crop_region
(
np
.
array
(
mask
),
self
.
inpaint_full_res_padding
)
crop_region
=
masking
.
expand_crop_region
(
crop_region
,
self
.
width
,
self
.
height
,
mask
.
width
,
mask
.
height
)
...
...
@@ -1423,8 +1428,11 @@ class StableDiffusionProcessingImg2Img(StableDiffusionProcessing):
self
.
paste_to
=
(
x1
,
y1
,
x2
-
x1
,
y2
-
y1
)
else
:
image_mask
=
images
.
resize_image
(
self
.
resize_mode
,
image_mask
,
self
.
width
,
self
.
height
)
np_mask
=
np
.
array
(
image_mask
)
np_mask
=
np
.
clip
((
np_mask
.
astype
(
np
.
float32
))
*
2
,
0
,
255
)
.
astype
(
np
.
uint8
)
np_mask
=
np
.
array
(
image_mask
)
.
astype
(
np
.
float32
)
np_mask
/=
255
np_mask
=
1
-
pow
(
1
-
np_mask
,
100
)
np_mask
*=
255
np_mask
=
np
.
clip
(
np_mask
,
0
,
255
)
.
astype
(
np
.
uint8
)
self
.
mask_for_overlay
=
Image
.
fromarray
(
np_mask
)
self
.
overlay_images
=
[]
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment