You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The byte order of the data is now embedded into NiftiHeader (endianness attribute). Constructors return only the header instead of a tuple. #14
NiftiError type contains two new variants: IncompatibleLength and InvalidCode.
Some methods were renamed to comply with naming guidelines. (#17) Deprecated function calls in your code must be updated before 0.7.0, when they will be removed.
InMemNiftiVolume::to_raw_data is deprecated in favour of into_raw_data
InMemNiftiVolume::get_raw_data and InMemNiftiVolume::get_raw_data_mut are deprecated, use InMemNiftiVolume::raw_data and InMemNiftiVolume::raw_data_mut instead
IntoNdarray::to_ndarray is deprecated. Consumers should only call and implement into_ndarray instead.
Validated enum types in the typedef module now have their methods called by value (self) rather than by reference (&self). #18