mirror of
https://github.com/lllyasviel/stable-diffusion-webui-forge.git
synced 2026-02-27 10:13:56 +00:00
Fixed a math mistake.
This commit is contained in:
@@ -969,7 +969,7 @@ def get_gaussian_kernel(stddev_radius=1.0, max_radius=2):
|
||||
x = coordinate[0] ** 2.0 + coordinate[1] ** 2.0
|
||||
x = gaussian(x)
|
||||
x -= gauss_zero
|
||||
x /= gauss_kernel_scale
|
||||
x *= gauss_kernel_scale
|
||||
x = max(0.0, x)
|
||||
return x
|
||||
|
||||
|
||||
Reference in New Issue
Block a user