deconvolution 0.2.1

Rust image deconvolution and restoration library.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! `ndarray` convenience APIs for 2D images and 3D microscopy volumes.
//!
//! 2D arrays use `(height, width)` order and 3D arrays use
//! `(depth, height, width)` order. Use [`known_psf`] for fixed-kernel solvers
//! and [`microscopy`] for volume deconvolution.

pub mod blind;
mod convert;
pub mod known_psf;
pub mod microscopy;

pub use convert::NdSample;