aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--modules/images.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/images.py b/modules/images.py
index 6648097e..94953498 100644
--- a/modules/images.py
+++ b/modules/images.py
@@ -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