Skip to main content

fpm_rs/
lib.rs

1//! Reusable reconstruction and simulation for image-plane Fourier ptychography.
2//!
3//! The central boundary is [`model::ImagePlaneModel`]: experimental descriptions
4//! compile into this computational model, and algorithms only consume the model.
5
6pub mod algorithms;
7pub mod array;
8pub mod backend;
9pub mod benchmark;
10pub mod callbacks;
11pub mod complex;
12pub mod configuration;
13pub mod datasets;
14pub mod diagnostics;
15pub mod error;
16pub mod evaluation;
17pub mod experiment;
18mod image_io;
19pub mod measurements;
20pub mod metrics;
21pub mod model;
22pub mod reconstruction;
23pub mod simulation;
24
25pub use array::Array2;
26pub use error::{Error, Result};
27pub use num_complex::Complex64;