blud
A fast linear-time gaussian blur based on http://blog.ivank.net/fastest-gaussian-blur.html.
This implementation was based on https://github.com/lsr0/fastblur.
The function in this crate blurs a image, with any number of channels, and the given blur radius. Performance is roughly linear time, space is O(n).
Example
Blur an Image
Changes:
- Optimization (fmath)
- Optimization (bounds)