-
What do "processing strength" and "fix frame strength" do? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 4 replies
-
Far as I can tell, a low "fix frame strength" is like setting denoise strength in img2img to 0. Processing strength somewhat seems to do that too, but not quite? I haven't quite figured it out yet, though so hoping for a better answer here. |
Beta Was this translation helpful? Give feedback.
-
With some simplifications, in both vid2vid and txt2vid cases the algorithm works with two img2img passes for each frame. First pass will restore occluded parts of warped previous frame and the second pass will process the whole image to fix any issues that are left after the first step. Technically the second pass is not necessary, but without it frames tend to blur out and have a lot of ghosting artifacts. "processing strength" is a denoising strength for first img2img pass and "fix frame strength" is a denoising strength for second img2img pass. "fix frame strength" should not be too high or too low. I found out that 0.15 works the best for vid2vid mode and 0.35 for txt2vid that's why they are set by default. |
Beta Was this translation helpful? Give feedback.
With some simplifications, in both vid2vid and txt2vid cases the algorithm works with two img2img passes for each frame. First pass will restore occluded parts of warped previous frame and the second pass will process the whole image to fix any issues that are left after the first step. Technically the second pass is not necessary, but without it frames tend to blur out and have a lot of ghosting artifacts. "processing strength" is a denoising strength for first img2img pass and "fix frame strength" is a denoising strength for second img2img pass. "fix frame strength" should not be too high or too low. I found out that 0.15 works the best for vid2vid mode and 0.35 for txt2vid that's why t…