Replies: 1 comment 1 reply
-
On the wiki there is a sample script that allows you to save all the steps that leads you to a result. Normally that should give you what you seek. As for injecting your own noise, that's exactly what img2img is doing in fact. The basic difference between txt2img and img2img is that for txt the noise is generated by the code, while for img2img instead of noise you use a picture. That picture can be anything, including noise. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Is there a way to just generate the noise that is specific for a given seed and then save it as an image or in an object for processing?
I know about "shared.state.current_image" but grabbing this after the first step means the sampler already has done the first step.
Also, is it possible to "inject" my own noise image and overwrite whatever the seed would produce as noise? What class or class variables would need to be manipulated by lets say a script
I am not a very experienced python coder and trying to find this out myself by looking at code would probably fail or take ages
Beta Was this translation helpful? Give feedback.
All reactions