6 releases (breaking)

0.5.1 May 26, 2024
0.4.1 May 19, 2024
0.3.1 May 18, 2024
0.2.2 May 17, 2024
0.1.1 May 16, 2024

#184 in Images

Download history 449/week @ 2024-05-13 196/week @ 2024-05-20 25/week @ 2024-05-27

670 downloads per month

GPL-3.0-only

36KB
371 lines

Image Pyramid

Maintenance crates-io api-docs dependency-status

Overview

This is a small Rust crate that facilitates quickly generating an image pyramid from a user-provided image.

Usage

See the crates.io page for installation instructions, then check out the examples directory for example code. Below is a simple illustrative example of computing a default pyramid (Gaussian where each level is half resolution).

use image_pyramid::*;

let image = todo!();
let pyramid = match ImagePyramid::create(&image, None) {
    Ok(pyramid) => pyramid,
    Err(e) => {
        eprintln!("Error creating image pyramid: {}", e);
        return;
    }
};

Or a slightly more complex example, illustrating how to create a bandpass pyramid where each octave is $2\over{3}$ the resolution, smoothed using a triangle (linear) filter.

use image_pyramid::*;

let image = todo!();
let params = ImagePyramidParams {
    scale_factor: (2.0 / 3.0).into_unit_interval().unwrap(),
    pyramid_type: ImagePyramidType::Bandpass,
    smoothing_type: SmoothingType::Triangle
};
let pyramid = match ImagePyramid::create(&image, Some(&params)) {
    Ok(pyramid) => pyramid,
    Err(e) => {
        eprintln!("Error creating image pyramid: {}", e);
        return;
    }
};

The scale_factor field is a UnitIntervalValue, which must be in the interval $(0, 1)$. Creating a value of this type yields a Result and will contain an error if the value is not valid.

Support

Open an Issue with questions or bug reports, and feel free to open a PR with proposed changes.

Contributing

Follow standard Rust conventions, and be sure to add tests for any new code added.

Dependencies

~19MB
~211K SLoC