blud 0.0.0

An implementation of "Fastest Gaussian Blur" for N-channel image slices
Documentation
  • Coverage
  • 100%
    2 out of 2 items documented1 out of 2 items with examples
  • Size
  • Source code size: 976.97 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 1.21 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 14s Average build duration of successful builds.
  • all releases: 14s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • bend-n/blud
    1 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • bend-n

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

fn blur_fast(image: &mut fimg::Image<&mut [u8], 4>, radius: f32) {
    blud::blur(image, unsafe { umath::FF32::new(radius) })
}

Changes:

  • Optimization (fmath)
  • Optimization (bounds)