neuroatlas: R package for neuroimaging atlas operations Primary uses: Loading brain templates, accessing standard atlases, manipulating brain parcellations Core capabilities: Template loading, atlas operations, coordinate transformations
get_template(name = "MNI152NLin2009cAsym", desc = "brain", resolution = 1, suffix = "T1w")
- MNI152NLin2009cAsym (default) - MNI152NLin6Asym - OASIS30ANTs - NKI - WHS
- brain: Brain-extracted template - head: Full head template - mask: Binary brain mask - probseg: Probability maps (GM/WM/CSF)
template <- get_template()
template_2mm <- get_template(resolution = 2)
mask <- get_template_brainmask()
get_glasser_atlas(outspace = NULL)
get_schaefer_atlas(parcels = c("100","200","300","400","500","600","800","1000"), networks = c("7","17"), resolution = c("1","2"), outspace = NULL)
get_schaefer_surfatlas(parcels = "400", networks = "17", surf = c("inflated", "white", "pial"))
glasser <- get_glasser_atlas()
schaefer <- get_schaefer_atlas(parcels = "400", networks = "17")
surf_atlas <- get_schaefer_surfatlas(parcels = "400", networks = "17", surf = "inflated")
merge_atlases(atlas1, atlas2)
get_roi(atlas, label = NULL, id = NULL)
ggseg_schaefer(atlas, vals, thresh = c(0,0), interactive = TRUE)
plot_glasser(atlas, ...)
merged <- merge_atlases(atlas1, atlas2)
roi <- get_roi(atlas, label = "hippocampus")
ggseg_schaefer(atlas, values, thresh = c(-2, 2))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.