Expand description
nd2-rs: Pure Rust library for reading Nikon ND2 microscopy files
This library provides functionality to read metadata from modern ND2 files (versions 2.0, 2.1, and 3.0) created by Nikon NIS Elements software.
§Example
use nd2_rs::Nd2File;
fn main() -> nd2_rs::Result<()> {
let mut nd2 = Nd2File::open("image.nd2")?;
println!("Version: {:?}", nd2.version());
println!("Attributes: {:#?}", nd2.attributes()?);
Ok(())
}Re-exports§
Modules§
Structs§
- Nd2File
- Main reader for ND2 files