We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
superfastblur/SuperfastBlur/GaussianBlur.cs
Line 133 in 1611c1a
Just a heads up for the author or anyone else trying to use this code, this line should be:
val += source[ri++] - source[li++];
Currently it is source - dest.
The text was updated successfully, but these errors were encountered:
Thanks! The image appeared to be shifted to the right somehow. Now it looks fine.
Sorry, something went wrong.
Noticed small aberrations appearing in the blurred image without this change, good catch!
Update GaussianBlur.cs
5bad1a1
Fixed bug mdymel#3
No branches or pull requests
superfastblur/SuperfastBlur/GaussianBlur.cs
Line 133 in 1611c1a
Just a heads up for the author or anyone else trying to use this code, this line should be:
val += source[ri++] - source[li++];
Currently it is source - dest.
The text was updated successfully, but these errors were encountered: