deconvolution 0.2.1

Rust image deconvolution and restoration library.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Image preprocessing helpers used before restoration.
//!
//! Use [`normalize_range`] to map image values into a solver-friendly range,
//! [`edgetaper()`] to reduce boundary ringing, and [`estimate_nsr`] to estimate
//! a scalar noise-to-signal ratio.

pub mod apodize;
mod boundary;
pub mod edgetaper;
pub mod estimate;
pub mod normalize;
mod padding;

pub use apodize::apodize;
pub use edgetaper::edgetaper;
pub use estimate::estimate_nsr;
pub use normalize::normalize_range;
pub(crate) use normalize::normalize_range_3d;