## load a MRIaggr object
data("MRIaggr.Pat1_red", package = "MRIaggr")
## select all normalization values
res <- selectNormalization(MRIaggr.Pat1_red)
names(res)
## select specific normalization normalization values
# computed on the whole brain
res <- selectNormalization(MRIaggr.Pat1_red, type = "global",
mu = TRUE, sigma = FALSE, hemisphere = "both")
# idem but only for DWI_t0
res <- selectNormalization(MRIaggr.Pat1_red, type = "global",
mu = TRUE, sigma = FALSE, param = "DWI_t0")
# computed by slice
res <- selectNormalization(MRIaggr.Pat1_red, type="slice",
mu = TRUE,sigma = FALSE, hemisphere = "both")
# idem for slice 1
res <- selectNormalization(MRIaggr.Pat1_red, type = "slice",
mu = TRUE, sigma = FALSE, num = 1)
# computed on 3 consecutive slices
res <- selectNormalization(MRIaggr.Pat1_red, type = "3slices", mu = FALSE, sigma = TRUE,
hemisphere = "left", num = 2, param = "T2_FLAIR_t2")
Run the code above in your browser using DataLab