pub struct RawSurface {
pub height: Array2<f64>,
pub step_x: f64,
pub step_y: f64,
pub metadata: Metadata,
pub rgb_image: Option<Array3<u8>>,
}Expand description
The main return struct: height map (µm), pixel steps (µm), metadata, optional RGB image
Fields§
§height: Array2<f64>§step_x: f64§step_y: f64§metadata: Metadata§rgb_image: Option<Array3<u8>>Trait Implementations§
Auto Trait Implementations§
impl Freeze for RawSurface
impl RefUnwindSafe for RawSurface
impl Send for RawSurface
impl Sync for RawSurface
impl Unpin for RawSurface
impl UnwindSafe for RawSurface
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