mirror of
https://github.com/python-pillow/Pillow.git
synced 2025-01-13 18:56:17 +03:00
Merge pull request #5481 from uploadcare/fix-boxblur-link
HTTP link is not valid (wrong redirect)
This commit is contained in:
commit
bfdb886f52
|
@ -287,7 +287,7 @@ ImagingGaussianBlur(Imaging imOut, Imaging imIn, float radius, int passes) {
|
||||||
float sigma2, L, l, a;
|
float sigma2, L, l, a;
|
||||||
|
|
||||||
sigma2 = radius * radius / passes;
|
sigma2 = radius * radius / passes;
|
||||||
// from http://www.mia.uni-saarland.de/Publications/gwosdek-ssvm11.pdf
|
// from https://www.mia.uni-saarland.de/Publications/gwosdek-ssvm11.pdf
|
||||||
// [7] Box length.
|
// [7] Box length.
|
||||||
L = sqrt(12.0 * sigma2 + 1.0);
|
L = sqrt(12.0 * sigma2 + 1.0);
|
||||||
// [11] Integer part of box radius.
|
// [11] Integer part of box radius.
|
||||||
|
|
Loading…
Reference in New Issue
Block a user