Module nifti::volume [] [src]

This module defines the voxel volume API, as well as data types for reading volumes from files. An integration with ndarray allows for more elegant and efficient approaches, and should be preferred when possible. In order to do so, you must add the ndarray_volumes feature to this crate.

Reexports

pub use self::inmem::*;

Modules

inmem

Module holding an in-memory implementation of a NIfTI volume.

Structs

SliceView

A view over a single slice of another volume. Slices are usually created by calling the get_slice method (see Sliceable). This implementation is generic and delegates most operations to the underlying volume.

Traits

NiftiVolume

Public API for NIFTI volume data, exposed as a multi-dimensional voxel array.

Sliceable

Interface for a volume that can be sliced.