pub struct QsmartResult {
pub chi_qsmart: Vec<f64>,
pub chi_stage1: Vec<f64>,
pub chi_stage2: Vec<f64>,
pub lfs_stage1: Vec<f64>,
pub lfs_stage2: Vec<f64>,
pub vasc_mask: Vec<f64>,
}Expand description
Result of QSMART pipeline
Fields§
§chi_qsmart: Vec<f64>Final combined and offset-adjusted susceptibility map
chi_stage1: Vec<f64>Stage 1 susceptibility (whole ROI)
chi_stage2: Vec<f64>Stage 2 susceptibility (tissue only)
lfs_stage1: Vec<f64>Local field from stage 1
lfs_stage2: Vec<f64>Local field from stage 2
vasc_mask: Vec<f64>Vasculature mask (1 = tissue, 0 = vessel)
Auto Trait Implementations§
impl Freeze for QsmartResult
impl RefUnwindSafe for QsmartResult
impl Send for QsmartResult
impl Sync for QsmartResult
impl Unpin for QsmartResult
impl UnsafeUnpin for QsmartResult
impl UnwindSafe for QsmartResult
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more