pub struct TiffStackInfo {
pub n_frames: usize,
pub height: usize,
pub width: usize,
}Expand description
Metadata about a loaded TIFF stack.
Fields§
§n_frames: usizeNumber of TOF frames.
height: usizeImage height in pixels.
width: usizeImage width in pixels.
Implementations§
Source§impl TiffStackInfo
impl TiffStackInfo
Sourcepub fn from_array(arr: &Array3<f64>) -> Self
pub fn from_array(arr: &Array3<f64>) -> Self
Extract info from a loaded 3D array.
Trait Implementations§
Source§impl Clone for TiffStackInfo
impl Clone for TiffStackInfo
Source§fn clone(&self) -> TiffStackInfo
fn clone(&self) -> TiffStackInfo
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for TiffStackInfo
impl RefUnwindSafe for TiffStackInfo
impl Send for TiffStackInfo
impl Sync for TiffStackInfo
impl Unpin for TiffStackInfo
impl UnsafeUnpin for TiffStackInfo
impl UnwindSafe for TiffStackInfo
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more