Merge pull request #5481 from uploadcare/fix-boxblur-link

HTTP link is not valid (wrong redirect)
This commit is contained in:
Alexander Karpinsky 2021-05-10 14:18:05 +03:00 committed by GitHub
commit bfdb886f52
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -287,7 +287,7 @@ ImagingGaussianBlur(Imaging imOut, Imaging imIn, float radius, int passes) {
float sigma2, L, l, a;
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.
L = sqrt(12.0 * sigma2 + 1.0);
// [11] Integer part of box radius.