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!("Summary: {:#?}", nd2.summary()?);
Ok(())
}Structs§
- Dataset
Summary - Nd2File
- Main reader for ND2 files
- Summary
Channel - Summary
Scaling
Enums§
Traits§
- Read
Seek - Type-erased readable/seekable source for ND2 parsing.