Skip to content

Commit

Permalink
initial implementation of fast blur
Browse files Browse the repository at this point in the history
  • Loading branch information
torfmaster committed Aug 5, 2024
1 parent e176cd4 commit b64868e
Show file tree
Hide file tree
Showing 10 changed files with 222 additions and 0 deletions.
10 changes: 10 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -104,3 +104,13 @@ harness = false
[[bench]]
name = "copy_from"
harness = false

[[bench]]
path = "benches/fast_blur.rs"
name = "fast_blur"
harness = false

[[bench]]
path = "benches/blur.rs"
name = "blur"
harness = false
13 changes: 13 additions & 0 deletions benches/blur.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
use criterion::{criterion_group, criterion_main, Criterion};
use image::{imageops::blur, ImageBuffer, Rgb};

pub fn bench_fast_blur(c: &mut Criterion) {
let src = ImageBuffer::from_pixel(1024, 768, Rgb([255u8, 0, 0]));

c.bench_function("blur", |b| {
b.iter(|| blur(&src, 50.0));
});
}

criterion_group!(benches, bench_fast_blur);
criterion_main!(benches);
13 changes: 13 additions & 0 deletions benches/fast_blur.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
use criterion::{criterion_group, criterion_main, Criterion};
use image::{imageops::fast_blur, ImageBuffer, Rgb};

pub fn bench_fast_blur(c: &mut Criterion) {
let src = ImageBuffer::from_pixel(1024, 768, Rgb([255u8, 0, 0]));

c.bench_function("fast_blur", |b| {
b.iter(|| fast_blur(&src, 50.0));
});
}

criterion_group!(benches, bench_fast_blur);
criterion_main!(benches);
1 change: 1 addition & 0 deletions examples/fast_blur/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
lenna_blurred.png
Binary file added examples/fast_blur/lenna.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 12 additions & 0 deletions examples/fast_blur/main.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
use image::ImageReader;

fn main() {
let img = ImageReader::open("examples/fast_blur/lenna.png")
.unwrap()
.decode()
.unwrap();

let img2 = img.fast_blur(10.0);

img2.save("examples/fast_blur/lenna_blurred.png").unwrap();
}
10 changes: 10 additions & 0 deletions src/dynimage.rs
Original file line number Diff line number Diff line change
Expand Up @@ -824,11 +824,21 @@ impl DynamicImage {

/// Performs a Gaussian blur on this image.
/// `sigma` is a measure of how much to blur by.
/// Use [DynamicImage::fast_blur()] for a faster but less
/// accurate version.
#[must_use]
pub fn blur(&self, sigma: f32) -> DynamicImage {
dynamic_map!(*self, ref p => imageops::blur(p, sigma))
}

/// Performs a fast blur on this image.
/// `sigma` is the standard deviation of the
/// (approximated) Gaussian
#[must_use]
pub fn fast_blur(&self, sigma: f32) -> DynamicImage {
dynamic_map!(*self, ref p => imageops::fast_blur(p, sigma))
}

/// Performs an unsharpen mask on this image.
/// `sigma` is the amount to blur the image by.
/// `threshold` is a control of how much to sharpen.
Expand Down
144 changes: 144 additions & 0 deletions src/imageops/fast_blur.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,144 @@
use std::cmp::{max, min};

use crate::{ImageBuffer, Pixel, Primitive};

/// Approximation of Gaussian blur after
/// Kovesi, P.: Fast Almost-Gaussian Filtering The Australian Pattern
/// Recognition Society Conference: DICTA 2010. December 2010. Sydney.
pub fn fast_blur<P: Pixel>(
image_buffer: &ImageBuffer<P, Vec<P::Subpixel>>,
sigma: f32,
) -> ImageBuffer<P, Vec<P::Subpixel>> {
let (width, height) = image_buffer.dimensions();
let mut samples = image_buffer.as_flat_samples().samples.to_vec();
let num_passes = 3;

let boxes = boxes_for_gauss(sigma, num_passes);

for radius in boxes.iter().take(num_passes) {
let horizontally_blurred_transposed = my_fast_horizontal_blur::<P::Subpixel>(
&samples,
width as usize,
height as usize,
*radius,
P::CHANNEL_COUNT as usize,
);
samples = my_fast_horizontal_blur::<P::Subpixel>(
&horizontally_blurred_transposed,
height as usize,
width as usize,
*radius,
P::CHANNEL_COUNT as usize,
);
}
ImageBuffer::from_raw(width, height, samples).unwrap()
}

fn boxes_for_gauss(sigma: f32, n: usize) -> Vec<usize> {
let w_ideal = f32::sqrt((12.0 * sigma * sigma / (n as f32)) + 1.0);
let mut w_l = w_ideal.floor();
if w_l % 2.0 == 0.0 {
w_l -= 1.0
};
let w_u = w_l + 2.0;

let m_ideal = (12.0 * sigma * sigma
- (n as f32) * (w_l) * (w_l)
- 4.0 * (n as f32) * (w_l)
- 3.0 * (n as f32))
/ (-4.0 * (w_l) - 4.0);
let m = f32::round(m_ideal) as usize;

let mut box_sizes: Vec<usize> = vec![];
for i in 0..n {
box_sizes.push(if i < m { w_l as usize } else { w_u as usize });
}
box_sizes
}

fn channel_idx(channel: usize, idx: usize, channel_num: usize) -> usize {
channel_num * idx + channel
}

fn my_fast_horizontal_blur<P: Primitive>(
samples: &[P],
width: usize,
height: usize,
r: usize,
channel_num: usize,
) -> Vec<P> {
let channel_size = width * height;

let mut out_samples: Vec<P> = vec![P::from(0).unwrap(); channel_size * channel_num];
let mut vals = vec![0.0; channel_num];

let min_value = P::DEFAULT_MIN_VALUE.to_f32().unwrap();
let max_value = P::DEFAULT_MAX_VALUE.to_f32().unwrap();

for i in 0..height {
for (channel, value) in vals.iter_mut().enumerate().take(channel_num) {
*value = ((-(r as isize))..(r + 1) as isize)
.map(|x| {
extended_f(samples, width, height, x, i as isize, channel, channel_num)
.to_f32()
.unwrap_or(0.0)
})
.sum()
}

for j in 0..width {
for channel in 0..channel_num {
let val = vals[channel] / (2.0 * r as f32 + 1.0);
let val = if val < min_value {
min_value
} else if val > max_value {
max_value
} else {
val
};
let val = P::from(val).unwrap();

out_samples[channel_idx(channel, i + j * height, channel_num)] = val;
vals[channel] = vals[channel]
- extended_f(
samples,
width,
height,
j as isize - r as isize,
i as isize,
channel,
channel_num,
)
.to_f32()
.unwrap_or(0.0)
+ extended_f(
samples,
width,
height,
{ j + r + 1 } as isize,
i as isize,
channel,
channel_num,
)
.to_f32()
.unwrap_or(0.0)
}
}
}

out_samples
}

fn extended_f<P: Primitive>(
samples: &[P],
width: usize,
height: usize,
x: isize,
y: isize,
channel: usize,
channel_num: usize,
) -> P {
let x = min(width as isize - 1, max(0, x)) as usize;
let y = min(height as isize - 1, max(0, y)) as usize;
samples[channel_idx(channel, y * width + x, channel_num)]
}
17 changes: 17 additions & 0 deletions src/imageops/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,11 @@ mod affine;
// Public only because of Rust bug:
// https://github.com/rust-lang/rust/issues/18241
pub mod colorops;
mod fast_blur;
mod sample;

pub use fast_blur::fast_blur;

/// Return a mutable view into an image
/// The coordinates set the position of the top left corner of the crop.
pub fn crop<I: GenericImageView>(
Expand Down Expand Up @@ -483,4 +486,18 @@ mod tests {
let image = RgbaImage::new(50, 50);
let _ = super::blur(&image, 0.0);
}

#[test]
/// Test blur doesn't panick when passed 0.0
fn test_fast_blur_zero() {
let image = RgbaImage::new(50, 50);
let _ = super::fast_blur(&image, -1.0);
}

#[test]
/// Test blur doesn't panick when passed negative numbers
fn test_fast_blur_negative() {
let image = RgbaImage::new(50, 50);
let _ = super::fast_blur(&image, -1.0);
}
}
2 changes: 2 additions & 0 deletions src/imageops/sample.rs
Original file line number Diff line number Diff line change
Expand Up @@ -953,6 +953,8 @@ where

/// Performs a Gaussian blur on the supplied image.
/// ```sigma``` is a measure of how much to blur by.
/// Use [crate::imageops::fast_blur()] for a faster but less
/// accurate version.
pub fn blur<I: GenericImageView>(
image: &I,
sigma: f32,
Expand Down

0 comments on commit b64868e

Please sign in to comment.