cryiorust
Rust implementation of IO routines to read and write images produced by various
2D X-ray detectors.
Supported formats
- Bruker
- Dectris Eiger HDF5 with bitshuffle plugin
- Dectris MiniCBF
- Agilent (Oxford) Crysalis Esperanto compressed bitfield
- ESRF data format EDF
- Mar345
- Tif (including int32 tifs produced by Dectis Pilatus)
Usage example:
```rust
use std::{io, fmt};
use cryiorust::frame::{self, Frame};
use std::path::Path;
fn test_cbf + fmt::Debug>(path: P) -> io::Result> {
let testfile = path;
let cbf: Box = frame::open(testfile)?;
println!("Frame size: {}x{}", cbf.dim1(), cbf.dim2());
println!("Frame sum: {}", cbf.sum());
Ok(cbf)
}
```
License: GPL-3.0+