mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
fix(nodes): fix seam painting
The problem was the same seed was getting used for the seam painting pass, causing the fried look. Same issue as if you do img2img on a txt2img with the same seed/prompt. Thanks to @hipsterusername for teaming up to debug this. We got pretty deep into the weeds.
This commit is contained in:
parent
928caff2a6
commit
fb0b63c580
@ -196,7 +196,7 @@ class Inpaint(Img2Img):
|
|||||||
|
|
||||||
seam_noise = self.get_noise(im.width, im.height)
|
seam_noise = self.get_noise(im.width, im.height)
|
||||||
|
|
||||||
result = make_image(seam_noise, seed)
|
result = make_image(seam_noise, seed=None)
|
||||||
|
|
||||||
return result
|
return result
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user