| Type: | Package |
| Title: | Managing and Visualizing Brain Surface Data |
| Version: | 1.0.0 |
| Maintainer: | Tim Schäfer <ts+code@rcmd.org> |
| Description: | Provides high-level access to neuroimaging data from standard software packages like 'FreeSurfer' https://freesurfer.net/ on the level of subjects and groups. Load morphometry data, surfaces and brain parcellations based on atlases. Mask data using labels, load data for specific atlas regions only, and visualize data and statistical results directly in 'R'. |
| License: | MIT + file LICENSE |
| Copyright: | Tim Schäfer (package code); the optional data files that can be downloaded at runtime are owned by their respective copyright holders, see 'inst/COPYRIGHTS'. |
| Encoding: | UTF-8 |
| URL: | https://github.com/dfsp-spirit/fsbrain |
| BugReports: | https://github.com/dfsp-spirit/fsbrain/issues |
| Imports: | freesurferformats (≥ 1.1.0), pkgfilecache (≥ 0.4.1), rgl, squash, fields, viridis, magick, methods |
| Suggests: | knitr, rmarkdown, scimesh (≥ 0.4.0), testthat (≥ 2.1.0), misc3d, oro.nifti, RColorBrewer, Rvcg (≥ 0.20.2), igraph, pracma, withr |
| VignetteBuilder: | knitr |
| Config/roxygen2/version: | 8.0.0 |
| RoxygenNote: | 7.3.3 |
| NeedsCompilation: | no |
| Packaged: | 2026-09-26 18:26:55 UTC; ts |
| Author: | Tim Schäfer |
| Repository: | CRAN |
| Date/Publication: | 2026-09-26 20:40:02 UTC |
The default anti-aliasing factor of the scimesh backend
Description
The anti-aliasing factor used for scimesh renders when neither the fsbrain option 'fsbrain.scimesh.aa_samples' nor the scimesh-wide option 'scimesh.aa_samples' is set. scimesh renders without anti-aliasing by default, which is most visible on thin lines (they show a staircase pattern, unlike the hardware-drawn lines of the rgl backend), so fsbrain requests 2x2 supersampling. Set 'fsbrain.scimesh.aa_samples' to 1 to turn anti-aliasing off, or to 4 for higher quality.
Usage
FSBRAIN_SCIMESH_DEFAULT_AA
Convert a misc3d Triangles3D iso-surface to a coloredmesh.
Description
Convert a misc3d::contour3d(draw = FALSE) result (an iso-surface mesh of class 'Triangles3D', e.g., as returned by volvis.contour) into an fs.coloredmesh. This allows rendering volume iso-surfaces with ANY renderer backend: while the rgl backend can render 'Triangles3D' instances directly, the scimesh backend requires fs.coloredmesh instances and converts them automatically, so you normally do not need to call this function yourself.
Usage
Triangles3D.to.coloredmesh(tris, hemi = NULL, add_normals = TRUE)
Arguments
tris |
a 'Triangles3D' instance as returned by |
hemi |
character string or NULL, the hemisphere for the resulting coloredmesh. 'Triangles3D' iso-surfaces are not hemisphere-specific, so this defaults to NULL. See |
add_normals |
logical, whether to compute per-vertex normals for the mesh. Required for correct lighting in the scimesh backend, defaults to TRUE. |
Value
an fs.coloredmesh instance, or a list of such instances if 'tris' is a list.
See Also
Other coloredmesh functions:
coloredmesh.from.annot(),
coloredmesh.from.color(),
coloredmesh.from.label(),
coloredmesh.from.mask(),
coloredmesh.from.morph.native(),
coloredmesh.from.morph.standard(),
coloredmesh.from.morphdata(),
coloredmeshes.from.color()
Reshape aggregated region data from long to wide format.
Description
Internal helper. Takes a long-format dataframe with one row per subject and atlas region (as returned by subject.atlas.agg) and reshapes it into a wide dataframe with one row per subject and one column per atlas region, plus a leading character column named 'subject' which holds the subject identifiers. Region columns are sorted alphabetically. Cells for which no data is available are set to NA.
Usage
agg.res.long.to.wide(agg_all_subjects, subjects_list, agg_fun = NULL)
Arguments
agg_all_subjects |
dataframe in long format. Must contain the columns 'subject', 'region' and 'aggregated'. Each combination of 'subject' and 'region' must be unique. |
subjects_list |
vector of character strings, the subject identifiers. Also determines the row order of the result. |
agg_fun |
function or NULL. If given, it is used to aggregate all values which occur for the same subject and region combination. If NULL, the single value for each combination is used directly. |
Value
dataframe in wide format, with one row per subject. The first column is named 'subject' and holds the subject identifiers, the remaining columns are named after the atlas regions and hold the aggregated values.
Perform alpha blending for pairs of RGBA colors.
Description
Implements the over alpha blending operation.
Usage
alphablend(front_color, back_color, silent = TRUE)
Arguments
front_color |
rgba color strings, the upper color layer or foreground |
back_color |
rgba color strings, the lower color layer or background |
silent |
logical, whether to suppress messages |
Value
rgba color strings, the alpha-blended colors
References
see the Alpha blending section on https://en.wikipedia.org/wiki/Alpha_compositing
See Also
Other color functions:
desaturate()
Compute outline vertex colors from annotation.
Description
For each region in an atlas, compute the outer border and color the respective vertices in the region-specific color from the annot's colortable.
Usage
annot.outline(
annotdata,
surface_mesh,
background = "white",
silent = TRUE,
expand_inwards = 0L,
outline_color = NULL,
limit_to_regions = NULL
)
Arguments
annotdata |
an annotation, as returned by functions like |
surface_mesh |
brain surface mesh, as returned by functions like |
background |
color, the background color to assign to the non-border parts of the regions. Defaults to 'white'. |
silent |
logical, whether to suppress status messages. |
expand_inwards |
integer, additional thickness of the borders. Increases computation time, defaults to 0L. |
outline_color |
NULL or a color string (like 'black' or '#000000'), the color to use for the borders. If left at the default value |
limit_to_regions |
vector of character strings or NULL, a list of regions for which to draw the outline (see |
Value
vector of colors, one color for each mesh vertex
Note
Sorry for the computational time, the mesh datastructure is not ideal for neighborhood search.
Compute the border vertices for each region in an annot.
Description
Compute the border vertices for each region in an annot.
Usage
annot.outline.border.vertices(
annotdata,
surface_mesh,
silent = TRUE,
expand_inwards = 0L,
limit_to_regions = NULL
)
Arguments
annotdata |
an annotation, as returned by functions like |
surface_mesh |
brain surface mesh, as returned by functions like |
silent |
logical, whether to suppress status messages. |
expand_inwards |
integer, additional thickness of the borders. Increases computation time, defaults to 0L. |
limit_to_regions |
vector of character strings or NULL, a list of regions for which to draw the outline (see |
Value
named list, the keys are the region names and the values are vectors of integers encoding vertex indices.
Apply a 4x4 affine matrix to vertex coordinates.
Description
Internal helper, applies the matrix to homogeneous column vectors, i.e., v' = M %*% v.
Usage
apply.affine.to.coords(coords, affine_matrix)
Arguments
coords |
Nx3 matrix of vertex coordinates (or a vector of length 3). |
affine_matrix |
a 4x4 affine matrix. |
Value
Nx3 matrix of transformed coordinates.
Load a label from file and apply it to morphometry data.
Description
This function will set all values in morphdata which are not part of the label loaded from the file to NA (or whatever is specified by 'masked_data_value'). This is typically used to ignore values which are not part of the cortex (or any other label) during your analysis.
Usage
apply.label.to.morphdata(
morphdata,
subjects_dir,
subject_id,
hemi,
label,
masked_data_value = NA
)
Arguments
morphdata |
numerical vector, the morphometry data for one hemisphere |
subjects_dir |
string. The FreeSurfer SUBJECTS_DIR, i.e., a directory containing the data for all your subjects, each in a subdir named after the subject identifier. |
subject_id |
string. The subject identifier |
hemi |
string, one of 'lh', 'rh' or 'both'. The hemisphere name. Used to construct the names of the annotation and morphometry data files to be loaded. |
label |
string, |
masked_data_value |
numerical, the value to set for all morphometry data values of vertices which are not part of the label. Defaults to NA. |
Value
numerical vector, the masked data.
See Also
Other label functions:
apply.labeldata.to.morphdata(),
subject.lobes(),
subject.mask(),
vis.labeldata.on.subject(),
vis.subject.label()
Other morphometry data functions:
apply.labeldata.to.morphdata(),
group.morph.native(),
group.morph.standard(),
subject.morph.native(),
subject.morph.standard()
Apply a label to morphometry data.
Description
This function will set all values in morphdata which are not part of the labeldata to NA (or whatever is specified by 'masked_data_value'). This is typically used to ignore values which are not part of the cortex (or any other label) during your analysis.
Usage
apply.labeldata.to.morphdata(morphdata, labeldata, masked_data_value = NA)
Arguments
morphdata |
numerical vector, the morphometry data for one hemisphere |
labeldata |
integer vector or |
masked_data_value |
numerical, the value to set for all morphometry data values of vertices which are not part of the label. Defaults to NA. |
Value
numerical vector, the masked data.
See Also
Other label functions:
apply.label.to.morphdata(),
subject.lobes(),
subject.mask(),
vis.labeldata.on.subject(),
vis.subject.label()
Other morphometry data functions:
apply.label.to.morphdata(),
group.morph.native(),
group.morph.standard(),
subject.morph.native(),
subject.morph.standard()
Extract the alpha value from resolved style parameters
Description
Extract the alpha value from resolved style parameters
Usage
apply.style.alpha(style_params)
Arguments
style_params |
a named list of style parameters (rgl material3d style). |
Value
numeric scalar alpha in 0..1, defaults to 1 (opaque) if not set.
Apply affine transformation to input.
Description
Apply an affine transformation, like a vox2ras_tkr transformation, to input. This is just matrix multiplication for different input objects. Supported input types are coordinate vectors, coordinate matrices, fs.surface meshes (the vertex coordinates are transformed, the face indices stay the same), renderable objects like fs.coloredmesh, fs.coloredvoxels, fs.coloredpaths or misc3d Triangles3D, rgl mesh3d/tmesh3d instances (including their normals, if any), and (hemi-)lists of such objects (which are transformed element-wise).
Usage
apply.transform(object, matrix_fun)
Arguments
object |
numerical vector/matrix, |
matrix_fun |
a 4x4 affine matrix or a function returning such a matrix. If |
Value
the input after application of the affine matrix (matrix multiplication)
Note
The affine matrix is applied in the standard way: the coordinates are interpreted as homogeneous column vectors, i.e., a vertex v is transformed as v' = M %*% v. Note that rgl, and fsbrain functions that are implemented on top of rgl (like the camera transforms used internally for views), use the transposed convention for their rotation matrices, see rotationMatrix. For pure translations and scalings, both conventions are identical.
Meshes keep their orientation: if the linear part of the matrix has a negative determinant, the transformation mirrors the object (this is the case for the FreeSurfer vox2ras_tkr matrix, which flips and permutes axes), which would invert all surface normals and make the mesh render inside-out. In that case, the vertex order within each face is reversed to preserve the original orientation, and the stored normals (if any) are transformed with the linear part of the matrix so that they stay consistent with the faces.
Examples
## Not run:
# Transform the vertex coordinates of a surface mesh:
cube_file = system.file("extdata", "cube.ply", package = "fsbrain");
cube = freesurferformats::read.fs.surface(cube_file);
translation = matrix(c(1,0,0,10, 0,1,0,20, 0,0,1,30, 0,0,0,1), nrow = 4L, byrow = TRUE);
cube_moved = apply.transform(cube, translation);
## End(Not run)
Apply an affine transformation matrix to an object.
Description
Internal workhorse of apply.transform, assumes that the matrix has already been resolved from the 'matrix_fun' parameter.
Usage
apply.transform.matrix(object, affine_matrix)
Arguments
object |
the object to transform. |
affine_matrix |
a 4x4 affine matrix. |
Value
the transformed object.
Apply a 4x4 transformation matrix to tracts.
Description
Apply a 4x4 transformation matrix to tracts.
Usage
apply.transform.to.tracts(tracts, transform_matrix)
Arguments
tracts |
an |
transform_matrix |
a 4x4 numeric matrix. |
Value
the fs.tracts instance with transformed coordinates.
Combine several brainview images into a new figure.
Description
Create a new image from several image tiles, the exact layout depends on the number of given images.
Usage
arrange.brainview.images(
brainview_images,
output_img,
colorbar_img = NULL,
silent = TRUE,
grid_like = TRUE,
border_geometry = "5x5",
background_color = "white",
map_bg_to_transparency = FALSE
)
Arguments
brainview_images |
vector of character strings, paths to the brainview images, usually in PNG format |
output_img |
path to output image that including the file extension |
colorbar_img |
path to the main image containing the separate colorbar, usually an image in PNG format |
silent |
logical, whether to suppress messages |
grid_like |
logical, whether to arrange the images in a grid-like fashion. If FALSE, they will all be merged horizontally. |
border_geometry |
string, a geometry string passed to |
background_color |
hex color string, such as "#DDDDDD" or "#FFFFFF". The color to use when extending images (e.g., when creating the border). WARNING: Do not use color names (like 'gray'), as their interpretation differs between rgl and image magick! |
map_bg_to_transparency |
logical, whether to map the background_color to transparency for the final PNG export. |
Value
named list with entries: 'brainview_images': vector of character strings, the paths to the input images. 'output_img_path': character string, path to the output image. 'merged_img': the magick image instance.
Combine several brainview images as a grid into a new figure.
Description
Create a new image from several image tiles, the exact layout is a grid with n per row.
Usage
arrange.brainview.images.grid(
brainview_images,
output_img,
colorbar_img = NULL,
silent = TRUE,
num_per_row = 10L,
border_geometry = "5x5",
background_color = "white",
captions = NULL
)
Arguments
brainview_images |
vector of character strings, paths to the brainview images, usually in PNG format |
output_img |
path to output image that including the file extension |
colorbar_img |
path to the main image containing the separate colorbar, usually an image in PNG format |
silent |
logical, whether to suppress messages |
num_per_row |
positive integer, the number of image tiles per row. |
border_geometry |
string, a geometry string passed to |
background_color |
hex color string, such as "#DDDDDD" or "#FFFFFF". The color to use when extending images (e.g., when creating the border). WARNING: Do not use color names (like 'gray'), as their interpretation differs between rgl and image magick! |
captions |
vector of character strings or NULL, the (optional) text annotations for the images. Useful to print the subject identifier onto the individual tiles. Length must match number of image tiles in 'brainview_images'. |
Value
named list with entries: 'brainview_images': vector of character strings, the paths to the input images. 'output_img_path': character string, path to the output image. 'merged_img': the magick image instance.
Note
The tiles are written row-wise, in the order in which they occur in the parameter 'brainview_images'.
Turn the various supported tract inputs into a list of bundles.
Description
Turn the various supported tract inputs into a list of bundles.
Usage
as.tract.bundle.list(
tracts,
coords = "ras",
transform_matrix = NULL,
max_tracks = Inf,
skip_tracks = 0L,
bbox = NULL,
silent = FALSE
)
Arguments
tracts |
see |
coords, transform_matrix, max_tracks, skip_tracks, bbox, silent |
parameters
passed on to |
Value
named list of fs.tracts instances.
Compute the bounding sphere of a set of 3D vertices.
Description
Computes the sphere that encloses the axis-aligned bounding box
(AABB) of the given vertices, using the same convention as rgl's
Sphere(AABB) auto-framing (see rgl src/geom.cpp) and scimesh's
camera_auto(rgl_compat=TRUE): the center is the AABB center and the
radius is half the length of the AABB diagonal.
Usage
bounding_sphere(vertices)
Arguments
vertices |
an Nx3 numeric matrix of vertex coordinates, or a
|
Value
a list with entries center (numeric vector of length 3) and
radius (numeric scalar). For an empty/zero-extent input, radius
is 0 and the center is the single vertex (or NA if no vertices).
Compute the coordinates of the 8 corners of a 3D box.
Description
Given the extreme values (min and max) along the 3 axes, compute the coordinates of the 8 corners of a 3D box.
Usage
boxcoords.from.bbox(axes_min, axes_max)
Arguments
axes_min |
numerical vector of length 3, the min values of the 3 axes |
axes_max |
numerical vector of length 3, the max values of the 3 axes |
Value
numerical matrix with 3 columns and 8 rows, the edge coordinates
Create fsbrain instance from 2 coloredmeshes.
Description
Create fsbrain instance from 2 coloredmeshes.
Usage
brain(lh_cm, rh_cm)
Arguments
lh_cm |
coloredmesh for left hemisphere |
rh_cm |
coloredmesh for right hemisphere |
Value
fsbrain instance
Visualize a list of colored meshes from a single defined angle.
Description
Visualize a list of colored meshes from a single defined angle.
Usage
brainview.sd(
coloredmeshes,
view_angle,
background = "white",
skip_all_na = TRUE,
style = "default",
rgloptions = rglo(),
rglactions = list(),
draw_colorbar = FALSE
)
Arguments
coloredmeshes |
list of coloredmesh. A coloredmesh is a named list as returned by the |
view_angle |
character string, the view angle. One of 'lateral_lh', 'dorsal', 'lateral_rh', 'medial_lh', 'ventral', 'medial_rh', 'rostral' or 'caudal'. See |
background |
string, background color passed to |
skip_all_na |
logical, whether to skip (i.e., not render) meshes in the list that have the property 'render' set to FALSE. Defaults to TRUE. Practically, this means that a hemisphere for which the data was not given is not rendered, instead of being rendered in a single color. |
style |
a named list of style parameters or a string specifying an available style by name (e.g., 'shiny'). Defaults to 'default', the default style. |
rgloptions |
named list. Parameters passed to |
rglactions |
named list. A list in which the names are from a set of pre-defined actions. The values can be used to specify parameters for the action. |
draw_colorbar |
logical, whether to draw a colorbar. WARNING: The colorbar is drawn to a subplot, and this only works if there is enough space for it. You will have to increase the plot size using the 'rlgoptions' parameter for the colorbar to show up. Defaults to FALSE. |
Visualize a list of colored meshes from a single viewpoint, interactively.
Description
Visualize a list of colored meshes from a single viewpoint, interactively.
Usage
brainview.si(
coloredmeshes,
background = "white",
skip_all_na = TRUE,
style = "default",
draw_labels = FALSE,
rgloptions = rglo(),
rglactions = list(),
draw_colorbar = FALSE
)
Arguments
coloredmeshes |
list of coloredmesh. A coloredmesh is a named list as returned by the coloredmesh.from.* functions. It has the entries 'mesh' of type tmesh3d, a 'col', which is a color specification for such a mesh. |
background |
string, background color passed to |
skip_all_na |
logical, whether to skip (i.e., not render) meshes in the list that have the property 'render' set to FALSE. Defaults to TRUE. Practically, this means that a hemisphere for which the data was not given is not rendered, instead of being rendered in a single color. |
style |
a named list of style parameters or a string specifying an available style by name (e.g., 'shiny'). Defaults to 'default', the default style. |
draw_labels |
logical, whether to draw label text for the different views that show information on the view direction and hemisphere displayed in a subplot. Defaults to FALSE. |
rgloptions |
named list. Parameters passed to |
rglactions |
named list. A list in which the names are from a set of pre-defined actions. Defaults to the empty list. |
draw_colorbar |
logical, whether to draw a colorbar. WARNING: The colorbar is drawn to a subplot, and this only works if there is enough space for it. You will have to increase the plot size using the 'rlgoptions' parameter for the colorbar to show up. Defaults to FALSE. |
Visualize a list of colored meshes, rotating the camera around them.
Description
Visualize a list of colored meshes, rotating the camera around them.
Usage
brainview.sr(
coloredmeshes,
background = "white",
skip_all_na = TRUE,
style = "default",
draw_labels = FALSE,
x = 0,
y = 1,
z = 0,
rpm = 6,
duration = 10,
rgloptions = rglo(),
rglactions = list(),
draw_colorbar = FALSE
)
Arguments
coloredmeshes |
list of coloredmesh. A coloredmesh is a named list as returned by the coloredmesh.from.* functions. It has the entries 'mesh' of type tmesh3d, a 'col', which is a color specification for such a mesh. |
background |
string, background color passed to |
skip_all_na |
logical, whether to skip (i.e., not render) meshes in the list that have the property 'render' set to FALSE. Defaults to TRUE. Practically, this means that a hemisphere for which the data was not given is not rendered, instead of being rendered in a single color. |
style |
a named list of style parameters or a string specifying an available style by name (e.g., 'shiny'). Defaults to 'default', the default style. |
draw_labels |
logical, whether to draw label text for the different views that show information on the view direction and hemisphere displayed in a subplot. Defaults to FALSE. |
x |
rotation x axis value, passed to |
y |
rotation y axis value, passed to |
z |
rotation z axis value, passed to |
rpm |
rotation rpm value, passed to |
duration |
rotation duration value, passed to |
rgloptions |
named list. Parameters passed to |
rglactions |
named list. A list in which the names are from a set of pre-defined actions. Defaults to the empty list. |
draw_colorbar |
logical, whether to draw a colorbar. WARNING: The colorbar is drawn to a subplot, and this only works if there is enough space for it. You will have to increase the plot size using the 'rlgoptions' parameter for the colorbar to show up. Defaults to FALSE. |
Visualize a list of colored meshes from four angles.
Description
Visualize a list of colored meshes from four angles.
Usage
brainview.t4(
coloredmeshes,
background = "white",
skip_all_na = TRUE,
style = "default",
draw_labels = FALSE,
rgloptions = rglo(),
rglactions = list(),
draw_colorbar = FALSE
)
Arguments
coloredmeshes |
list of coloredmesh. A coloredmesh is a named list as returned by the coloredmesh.from.* functions. It has the entries 'mesh' of type tmesh3d, a 'col', which is a color specification for such a mesh. |
background |
string, background color passed to |
skip_all_na |
logical, whether to skip (i.e., not render) meshes in the list that have the property 'render' set to FALSE. Defaults to TRUE. Practically, this means that a hemisphere for which the data was not given is not rendered, instead of being rendered in a single color. |
style |
a named list of style parameters or a string specifying an available style by name (e.g., 'shiny'). Defaults to 'default', the default style. |
draw_labels |
logical, whether to draw label text for the different views that show information on the view direction and hemisphere displayed in a subplot. Defaults to FALSE. |
rgloptions |
named list. Parameters passed to |
rglactions |
named list. A list in which the names are from a set of pre-defined actions. The values can be used to specify parameters for the action. |
draw_colorbar |
logical, whether to draw a colorbar. WARNING: The colorbar is drawn to a subplot, and this only works if there is enough space for it. You will have to increase the plot size using the 'rlgoptions' parameter for the colorbar to show up. Defaults to FALSE. |
Visualize a list of colored meshes from nine angles.
Description
Visualize a list of colored meshes from nine angles.
Usage
brainview.t9(
coloredmeshes,
background = "white",
skip_all_na = TRUE,
style = "default",
draw_labels = FALSE,
rgloptions = rglo(),
rglactions = list(),
draw_colorbar = FALSE
)
Arguments
coloredmeshes |
list of coloredmesh. A coloredmesh is a named list as returned by the coloredmesh.from.* functions. It has the entries 'mesh' of type tmesh3d, a 'col', which is a color specification for such a mesh. |
background |
string, background color passed to |
skip_all_na |
logical, whether to skip (i.e., not render) meshes in the list that have the property 'render' set to FALSE. Defaults to TRUE. Practically, this means that a hemisphere for which the data was not given is not rendered, instead of being rendered in a single color. |
style |
a named list of style parameters or a string specifying an available style by name (e.g., 'shiny'). Defaults to 'default', the default style. |
draw_labels |
logical, whether to draw label text for the different views that show information on the view direction and hemisphere displayed in a subplot. Defaults to FALSE. |
rgloptions |
named list. Parameters passed to |
rglactions |
named list. A list in which the names are from a set of pre-defined actions. The values can be used to specify parameters for the action. |
draw_colorbar |
logical, whether to draw a colorbar. WARNING: The colorbar is drawn to a subplot, and this only works if there is enough space for it. You will have to increase the plot size using the 'rlgoptions' parameter for the colorbar to show up. Defaults to FALSE. |
Show one or more views of the given meshes in rgl windows.
Description
Show one or more views of the given meshes in rgl windows.
Usage
brainviews(
views,
coloredmeshes,
rgloptions = rglo(),
rglactions = list(),
style = "default",
draw_colorbar = FALSE,
background = "white"
)
Arguments
views |
list of strings. Valid entries include: 'si': single interactive view. |
coloredmeshes |
list of coloredmesh or renderable. A coloredmesh is a named list as returned by the coloredmesh.from.* functions. It has the entries 'mesh' of type tmesh3d, a 'col', which is a color specification for such a mesh. |
rgloptions |
option list passed to |
rglactions |
named list. A list in which the names are from a set of pre-defined actions. The values can be used to specify parameters for the action. |
style |
character string, a rendering style, e.g., 'default', 'shiny' or 'semitransparent'. |
draw_colorbar |
logical, whether to draw a colorbar. WARNING: The colorbar is drawn to a subplot, and this only works if there is enough space for it. You will have to increase the plot size using the 'rlgoptions' parameter for the colorbar to show up. Defaults to FALSE. See |
background |
the background color for the visualization, e.g., 'white' or '#FF0000'. Note that alpha/transparency is not supported by rgl. |
Value
list of coloredmeshes. The coloredmeshes used for the visualization.
See Also
Determine whether colorbar can be plotted with given metadata.
Description
Determine whether colorbar can be plotted with given metadata.
Usage
can.plot.colorbar(combined_data_range, makecmap_options)
Arguments
combined_data_range |
numerical vector of length 2, the combined data range of the meshes as returned by |
makecmap_options |
the 'makecmap_options' from the metadata field of the 'coloredmeshes', see |
Value
logical, whether the metadata suffices to plot a colorbar
Determine whether colorbar can be plotted with given coloredmeshes.
Description
Determine whether colorbar can be plotted with given coloredmeshes.
Usage
can.plot.colorbar.from.coloredmeshes(coloredmeshes)
Arguments
coloredmeshes |
hemilist of coloredmeshes |
Value
logical, whether the metadata suffices to plot a colorbar
Check whether a matrix is a valid point matrix for coloredpaths.
Description
Check whether a matrix is a valid point matrix for coloredpaths.
Usage
check.segment.points(x, arg_name)
Arguments
x |
the object to check. |
arg_name |
character string, the name of the parameter, used in error messages. |
Value
an (n, 3) numeric matrix.
Report subjects missing files
Description
Report subjects missing files
Usage
check.subjects.files(
subjects_dir,
subjects_list,
sfiles = c("surf/lh.thickness", "surf/rh.thickness", "surf/lh.white", "surf/rh.white",
"label/lh.aparc.annot", "label/rh.aparc.annot")
)
Arguments
subjects_dir |
string. The FreeSurfer SUBJECTS_DIR, i.e., a directory containing the data for all your subjects, each in a subdir named after the subject identifier. |
subjects_list |
vector of strings. The subject identifiers. |
sfiles |
vector of character strings, the file names, relative to the data dir of the subject. |
Value
vector of character strings, the subjects missing any of the files.
Check whether the subjects_list looks good, warn if not.
Description
Check whether the subjects_list looks good, warn if not.
Usage
check.subjectslist(
subjects_list,
subjects_dir = NULL,
report_name = "subjects_list"
)
Arguments
subjects_list |
vector of character strings, the subject IDs. |
subjects_dir |
optional, character string. The full path to the subjects directory containing all subjects. If given, extra checks will be performed, e.g., whether the subjects exist in this directory. |
report_name |
character string, the variable name that should be used for the list in the messages. |
Note
This function will stop if subjects dirs are missing.
Check a transformation matrix.
Description
Check a transformation matrix.
Usage
check.transform.matrix(transform_matrix)
Arguments
transform_matrix |
the object to check. |
Value
the matrix, as a 4x4 numeric matrix.
Clip data at quantiles to remove outliers.
Description
Set all data values outside the given quantile range to the border values. This is useful to properly visualize morphometry data that includes outliers. These outliers negatively affect the colormap, as all the non-outlier values become hard to distinguish. This function can be used to filter the data before plotting it.
Usage
clip.data(data, lower = 0.05, upper = 0.95)
Arguments
data |
numeric vector. The input data. Can also be a |
lower |
numeric. The probability for the lower quantile, defaults to |
upper |
numeric. The probability for the upper quantile, defaults to |
Value
numeric vector. The output data.
See Also
The clip_fun function is more convenient when used in rglactions, as it allows specification of custom quantiles.
Examples
full_data = rnorm(50, 3, 1);
clipped = clip.data(full_data);
Get data clipping function.
Description
Get data clipping function to use in rglactions as 'trans_fun' to transform data. This is typically used to limit the colorbar in a plot to a certain range. This uses percentiles to clip. Clipping means that values more extreme than the gíven quantiles will be set to the quantile values.
Usage
clip_fun(lower = 0.05, upper = 0.95)
Arguments
lower |
numeric. The probability for the lower quantile, defaults to |
upper |
numeric. The probability for the upper quantile, defaults to |
Value
a function that takes as argument the data, and clips it to the requested range. I.e., values outside the range will be set to the closest border value. Designed to be used as rglactions$trans_fun in vis functions, to limit the colorbar and data range.
See Also
Examples
rglactions = list("trans_fun"=clip_fun(0.10, 0.90));
rglactions = list("trans_fun"=clip_fun());
f = clip_fun();
f(rnorm(100));
Compute the alpha value of a cluster shell.
Description
The shells of a cluster are more transparent the closer they are to the threshold, and fully opaque at the highest level of their sign.
Usage
cluster.shell.alpha(level, threshold, levels, alpha_range = c(0.08, 1))
Arguments
level |
single number, the iso-level of the shell. |
threshold |
single positive number, the cluster threshold. |
levels |
numerical vector of all iso-levels, see |
alpha_range |
numerical vector of length 2, the alpha value of the outermost and the innermost shell. |
Value
single number between 0 and 1, the alpha value of the shell.
Get cyan blue red yellow colormap function.
Description
Get cyan blue red yellow colormap function.
Usage
cm.cbry()
Note
Returns a diverging palette with negative values in blue/cyan and positive ones in red/yellow, suitable for visualizing data that is centered around zero. Often used for clusters in neuroscience.
Return the standard fsbrain diverging colormap.
Description
Return the standard fsbrain diverging colormap.
Usage
cm.div(report = FALSE)
Arguments
report |
logical, whether to print a message with a name of the chosen colormap, in format |
Note
Returns some diverging palette, suitable for visualizing data that is centered around zero.
Return the standard fsbrain heat colormap.
Description
Return the standard fsbrain heat colormap.
Usage
cm.heat(report = FALSE)
Arguments
report |
logical, whether to print a message with a name of the chosen colormap, in format |
Note
The heat palette is a sequential, single-hue palette.
Return the standard fsbrain qualitative colormap.
Description
Return the standard fsbrain qualitative colormap.
Usage
cm.qual(report = FALSE)
Arguments
report |
logical, whether to print a message with a name of the chosen colormap, in format |
Note
Returns some qualitative palette, suitable for visualizing categorical data.
Return the standard fsbrain sequential colormap.
Description
Return the standard fsbrain sequential colormap.
Usage
cm.seq(report = FALSE)
Arguments
report |
logical, whether to print a message with a name of the chosen colormap, in format |
Note
This returns a sequential, multi-hue palette.
Compute binarized mean curvature surface color layer.
Description
Compute a binarized mean curvature surface color layer, this is intended as a background color layer. You can merge it with your data layer using collayers.merge.
Usage
collayer.bg(subjects_dir, subject_id, bg, hemi = "both")
Arguments
subjects_dir |
character string, the FreeSurfer SUBJECTS_DIR. |
subject_id |
character string, the subject identifier. |
bg |
character string, a background name. One of 'curv', 'curv_light', 'sulc', 'sulc_light', or 'aparc'. If this is already a colorlayer in a hemilist, it will be returned as-is. |
hemi |
character string, one of 'lh', 'rh', or 'both'. The latter will merge the data for both hemis into a single vector. |
Value
a color layer, i.e., vector of color strings in a hemilist
See Also
You can plot the return value using vis.color.on.subject.
Other surface color layer:
collayer.bg.atlas(),
collayer.bg.meancurv(),
collayer.bg.sulc(),
collayer.from.annot(),
collayer.from.annotdata(),
collayer.from.mask.data(),
collayer.from.morphlike.data(),
collayers.merge()
Compute atlas or annotation surface color layer.
Description
Compute atlas or annotation surface color layer.
Usage
collayer.bg.atlas(
subjects_dir,
subject_id,
hemi = "both",
atlas = "aparc",
grayscale = FALSE,
outline = FALSE,
outline_surface = "white"
)
Arguments
subjects_dir |
character string, the FreeSurfer SUBJECTS_DIR. |
subject_id |
character string, the subject identifier. |
hemi |
character string, one of 'lh', 'rh', or 'both'. The latter will merge the data for both hemis into a single vector. |
atlas |
character string, the atlas name. E.g., "aparc", "aparc.2009s", or "aparc.DKTatlas". Used to construct the name of the annotation file to be loaded. |
grayscale |
logical, whether to convert the atlas colors to grayscale |
outline |
logical, whether to draw an outline only instead of filling the regions. Defaults to |
outline_surface |
character string, the surface to load. Only relevant when 'outline' is used. (In that case the surface mesh is needed to compute the vertices forming the region borders.) |
Value
a color layer, i.e., vector of color strings in a hemilist
Note
Using 'outline' mode is quite slow, and increasing the border thickness makes it even slower.
See Also
You can plot the return value using vis.color.on.subject.
Other surface color layer:
collayer.bg(),
collayer.bg.meancurv(),
collayer.bg.sulc(),
collayer.from.annot(),
collayer.from.annotdata(),
collayer.from.mask.data(),
collayer.from.morphlike.data(),
collayers.merge()
Compute binarized mean curvature surface color layer.
Description
Compute a binarized mean curvature surface color layer, this is intended as a background color layer. You can merge it with your data layer using collayers.merge.
Usage
collayer.bg.meancurv(
subjects_dir,
subject_id,
hemi = "both",
cortex_only = FALSE,
bin_colors = c("#898989", "#5e5e5e"),
bin_thresholds = c(0)
)
Arguments
subjects_dir |
character string, the FreeSurfer SUBJECTS_DIR. |
subject_id |
character string, the subject identifier. |
hemi |
character string, one of 'lh', 'rh', or 'both'. The latter will merge the data for both hemis into a single vector. |
cortex_only |
logical, whether to restrict pattern computation to the cortex. |
bin_colors |
vector of two character strings, the two colors to use. |
bin_thresholds |
vector of 1 or 2 double values, the curvature threshold values used to separate gyri from sulci. |
Value
a color layer, i.e., vector of color strings in a hemilist
See Also
You can plot the return value using vis.color.on.subject.
Other surface color layer:
collayer.bg(),
collayer.bg.atlas(),
collayer.bg.sulc(),
collayer.from.annot(),
collayer.from.annotdata(),
collayer.from.mask.data(),
collayer.from.morphlike.data(),
collayers.merge()
Compute binarized sulcal depth surface color layer.
Description
Compute a binarized sulcal depth surface color layer, this is intended as a background color layer. You can merge it with your data layer using collayers.merge.
Usage
collayer.bg.sulc(
subjects_dir,
subject_id,
hemi = "both",
cortex_only = FALSE,
bin_colors = c("#898989", "#5e5e5e"),
bin_thresholds = c(0)
)
Arguments
subjects_dir |
character string, the FreeSurfer SUBJECTS_DIR. |
subject_id |
character string, the subject identifier. |
hemi |
character string, one of 'lh', 'rh', or 'both'. The latter will merge the data for both hemis into a single vector. |
cortex_only |
logical, whether to restrict pattern computation to the cortex. |
bin_colors |
vector of two character strings, the two colors to use. |
bin_thresholds |
vector of 1 or 2 double values, the curvature threshold values used to separate gyri from sulci. |
Value
a color layer, i.e., vector of color strings in a hemilist
See Also
You can plot the return value using vis.color.on.subject.
Other surface color layer:
collayer.bg(),
collayer.bg.atlas(),
collayer.bg.meancurv(),
collayer.from.annot(),
collayer.from.annotdata(),
collayer.from.mask.data(),
collayer.from.morphlike.data(),
collayers.merge()
Compute surface color layer from annotation or atlas data.
Description
Compute surface color layer from annotation or atlas data.
Usage
collayer.from.annot(subjects_dir, subject_id, hemi, atlas)
Arguments
subjects_dir |
character string, the FreeSurfer SUBJECTS_DIR. |
subject_id |
character string, the subject identifier. |
hemi |
character string, one of 'lh', 'rh', or 'both'. |
atlas |
character string, the atlas name. E.g., "aparc", "aparc.2009s", or "aparc.DKTatlas". Used to construct the name of the annotation file to be loaded. |
Value
named hemi list, each entry is a vector of color strings, one color per surface vertex. The coloring represents the atlas data.
See Also
You can plot the return value using vis.color.on.subject.
Other surface color layer:
collayer.bg(),
collayer.bg.atlas(),
collayer.bg.meancurv(),
collayer.bg.sulc(),
collayer.from.annotdata(),
collayer.from.mask.data(),
collayer.from.morphlike.data(),
collayers.merge()
Compute surface color layer from annotation or atlas data.
Description
Compute surface color layer from annotation or atlas data.
Usage
collayer.from.annotdata(lh_annotdata = NULL, rh_annotdata = NULL)
Arguments
lh_annotdata |
loaded annotation data for left hemi, as returned by |
rh_annotdata |
loaded annotation data for right hemi |
Value
named hemi list, each entry is a vector of color strings, one color per surface vertex. The coloring represents the atlas data.
See Also
You can plot the return value using vis.color.on.subject.
Other surface color layer:
collayer.bg(),
collayer.bg.atlas(),
collayer.bg.meancurv(),
collayer.bg.sulc(),
collayer.from.annot(),
collayer.from.mask.data(),
collayer.from.morphlike.data(),
collayers.merge()
Compute surface color layer from morph-like data.
Description
Compute surface color layer from morph-like data.
Usage
collayer.from.mask.data(
lh_data = NULL,
rh_data = NULL,
makecmap_options = list(colFn = label.colFn)
)
Arguments
lh_data |
integer vector, can be NULL |
rh_data |
numerical vector, can be NULL |
makecmap_options |
named list of parameters to pass to |
Value
named hemi list, each entry is a vector of color strings, one color per surface vertex. The coloring represents the label data.
See Also
You can plot the return value using vis.color.on.subject.
Other surface color layer:
collayer.bg(),
collayer.bg.atlas(),
collayer.bg.meancurv(),
collayer.bg.sulc(),
collayer.from.annot(),
collayer.from.annotdata(),
collayer.from.morphlike.data(),
collayers.merge()
Compute surface color layer from morph-like data.
Description
Compute surface color layer from morph-like data.
Usage
collayer.from.morphlike.data(
lh_morph_data = NULL,
rh_morph_data = NULL,
makecmap_options = list(colFn = cm.seq()),
return_metadata = FALSE
)
Arguments
lh_morph_data |
numerical vector, can be NULL |
rh_morph_data |
numerical vector, can be NULL |
makecmap_options |
named list of parameters to pass to |
return_metadata |
logical, whether to return additional metadata as entry 'metadata' in the returned list |
Value
named hemi list, each entry is a vector of color strings, one color per surface vertex. The coloring represents the morph data.
See Also
You can plot the return value using vis.color.on.subject.
Other surface color layer:
collayer.bg(),
collayer.bg.atlas(),
collayer.bg.meancurv(),
collayer.bg.sulc(),
collayer.from.annot(),
collayer.from.annotdata(),
collayer.from.mask.data(),
collayers.merge()
Merge two or more color layers based on their transparency values.
Description
Merge several color layers into one based on their transparency and alpha blending. In the final result, the lower layers are visible through the transparent or NA parts (if any) of the upper layers.
Usage
collayers.merge(collayers, opaque_background = "#FFFFFF")
Arguments
collayers |
named list, the values must be vectors, matrices or arrays of color strings (as produced by |
opaque_background |
a single color string or |
Value
a color layer, i.e., vector of color strings in a hemilist
See Also
Other surface color layer:
collayer.bg(),
collayer.bg.atlas(),
collayer.bg.meancurv(),
collayer.bg.sulc(),
collayer.from.annot(),
collayer.from.annotdata(),
collayer.from.mask.data(),
collayer.from.morphlike.data()
Convert an R color to an RGBA float vector
Description
Converts an R color specification (hex string like "#FF0000", color name like "white", or "#FF0000FF") to a length-4 RGBA numeric vector with values in the range 0..1.
Usage
color_to_rgba(color)
Arguments
color |
character string, any valid R color specification. |
Value
numeric vector of length 4, RGBA values in 0..1 range.
Create a coloredmesh from an annotation of an atlas.
Description
Create a coloredmesh from an annotation of an atlas.
Usage
coloredmesh.from.annot(
subjects_dir,
subject_id,
atlas,
hemi,
surface = "white",
outline = FALSE
)
Arguments
subjects_dir |
string. The FreeSurfer SUBJECTS_DIR, i.e., a directory containing the data for all your subjects, each in a subdir named after the subject identifier. |
subject_id |
string. The subject identifier. |
atlas |
string or a loaded annotation. If a string, interpreted as the atlas name that should be loaded to get te annotation. E.g., "aparc", "aparc.2009s", or "aparc.DKTatlas". Used to construct the name of the annotation file to be loaded. |
hemi |
string, one of 'lh' or 'rh'. The hemisphere name. Used to construct the names of the label data files to be loaded. |
surface |
character string or |
outline |
logical, whether to draw an outline only instead of filling the regions. Defaults to FALSE. Only makes sense if you did not pass an outline already. The current implementation for outline computation is rather slow, so setting this to TRUE will considerably increase computation time. |
Value
coloredmesh. A named list with entries: "mesh" the tmesh3d mesh object. "col": the mesh colors. "render", logical, whether to render the mesh. "hemi": the hemisphere, one of 'lh' or 'rh'.
See Also
Other coloredmesh functions:
Triangles3D.to.coloredmesh(),
coloredmesh.from.color(),
coloredmesh.from.label(),
coloredmesh.from.mask(),
coloredmesh.from.morph.native(),
coloredmesh.from.morph.standard(),
coloredmesh.from.morphdata(),
coloredmeshes.from.color()
Create a coloredmesh from a mesh and pre-defined colors.
Description
Create a coloredmesh from a mesh and pre-defined colors.
Usage
coloredmesh.from.color(
subjects_dir,
subject_id,
color_data,
hemi,
surface = "white",
metadata = list(),
style = NULL
)
Arguments
subjects_dir |
string. The FreeSurfer SUBJECTS_DIR, i.e., a directory containing the data for all your subjects, each in a subdir named after the subject identifier. |
subject_id |
string. The subject identifier. |
color_data |
vector of hex color strings, a single one or one per vertex. |
hemi |
string, one of 'lh' or 'rh'. The hemisphere name. Used to construct the names of the label data files to be loaded. |
surface |
character string or |
metadata |
a named list, can contain whatever you want. Typical entries are: 'src_data' a hemilist containing the source data from which the 'color_data' was created, optional. If available, it is encoded into the coloredmesh and can be used later to plot a colorbar. 'makecmap_options': the options used to created the colormap from the data. |
style |
|
Value
coloredmesh. A named list with entries: "mesh" the tmesh3d mesh object. "col": the mesh colors. "render", logical, whether to render the mesh. "hemi": the hemisphere, one of 'lh' or 'rh'. If not NULL, also "style": the rendering style for this mesh.
Note
You will usually not call this directly, but use coloredmeshes.from.color or vis.color.on.subject instead. It is exported for cases in which you want to build a single hemisphere of a scene manually.
See Also
Other coloredmesh functions:
Triangles3D.to.coloredmesh(),
coloredmesh.from.annot(),
coloredmesh.from.label(),
coloredmesh.from.mask(),
coloredmesh.from.morph.native(),
coloredmesh.from.morph.standard(),
coloredmesh.from.morphdata(),
coloredmeshes.from.color()
Create a coloredmesh from a label.
Description
Create a coloredmesh from a label.
Usage
coloredmesh.from.label(
subjects_dir,
subject_id,
label,
hemi,
surface = "white",
makecmap_options = list(colFn = squash::rainbow2),
binary = TRUE
)
Arguments
subjects_dir |
string. The FreeSurfer SUBJECTS_DIR, i.e., a directory containing the data for all your subjects, each in a subdir named after the subject identifier. |
subject_id |
string. The subject identifier. |
label |
string or vector of integers. If a string, the name of the label file, without the hemi part (if any), but including the '.label' suffix. E.g., 'cortex.label' for '?h.cortex.label'. Alternatively, the already loaded label data as a vector of integers. |
hemi |
string, one of 'lh' or 'rh'. The hemisphere name. Used to construct the names of the label data files to be loaded. |
surface |
character string or |
makecmap_options |
named list of parameters to pass to |
binary |
logical, whether to treat the label as binary |
Value
coloredmesh. A named list with entries: "mesh" the tmesh3d mesh object. "col": the mesh colors. "render", logical, whether to render the mesh. "hemi": the hemisphere, one of 'lh' or 'rh'.
See Also
Other coloredmesh functions:
Triangles3D.to.coloredmesh(),
coloredmesh.from.annot(),
coloredmesh.from.color(),
coloredmesh.from.mask(),
coloredmesh.from.morph.native(),
coloredmesh.from.morph.standard(),
coloredmesh.from.morphdata(),
coloredmeshes.from.color()
Create a coloredmesh from a mask.
Description
Create a coloredmesh from a mask.
Usage
coloredmesh.from.mask(
subjects_dir,
subject_id,
mask,
hemi,
surface = "white",
surface_data = NULL,
makecmap_options = list(colFn = squash::rainbow2)
)
Arguments
subjects_dir |
string. The FreeSurfer SUBJECTS_DIR, i.e., a directory containing the data for all your subjects, each in a subdir named after the subject identifier. |
subject_id |
string. The subject identifier. |
mask |
logical vector, contains one logical value per vertex. |
hemi |
string, one of 'lh' or 'rh'. The hemisphere name. Used to construct the names of the label data files to be loaded. |
surface |
character string or |
surface_data |
optional surface mesh object, as returned by |
makecmap_options |
named list of parameters to pass to |
Value
coloredmesh. A named list with entries: "mesh" the tmesh3d mesh object. "col": the mesh colors. "render", logical, whether to render the mesh. "hemi": the hemisphere, one of 'lh' or 'rh'.
See Also
Other mask functions:
mask.from.labeldata.for.hemi(),
vis.mask.on.subject()
Other coloredmesh functions:
Triangles3D.to.coloredmesh(),
coloredmesh.from.annot(),
coloredmesh.from.color(),
coloredmesh.from.label(),
coloredmesh.from.morph.native(),
coloredmesh.from.morph.standard(),
coloredmesh.from.morphdata(),
coloredmeshes.from.color()
Create a coloredmesh from native space morphometry data.
Description
Create a coloredmesh from native space morphometry data.
Usage
coloredmesh.from.morph.native(
subjects_dir,
subject_id,
measure,
hemi,
surface = "white",
clip = NULL,
cortex_only = FALSE,
makecmap_options = mkco.seq()
)
Arguments
subjects_dir |
string. The FreeSurfer SUBJECTS_DIR, i.e., a directory containing the data for all your subjects, each in a subdir named after the subject identifier. |
subject_id |
string. The subject identifier. |
measure |
string. The morphometry data to use. E.g., 'area' or 'thickness'. Pass NULL to render the surface in white, without any data. One can also pass the pre-loaded morphometry data as a numerical vector, the length of which must match the number of surface vertices. |
hemi |
string, one of 'lh' or 'rh'. The hemisphere name. Used to construct the names of the label data files to be loaded. |
surface |
character string or |
clip |
numeric vector of length 2 or NULL. If given, the 2 values are interpreted as lower and upper percentiles, and the morph data is clipped at the given lower and upper percentile (see |
cortex_only |
logical, whether to mask the medial wall, i.e., whether the morphometry data for all vertices which are not part of the cortex (as defined by the label file |
makecmap_options |
named list of parameters to pass to |
Value
coloredmesh. A named list with entries: "mesh" the tmesh3d mesh object. "col": the mesh colors. "render", logical, whether to render the mesh. "hemi": the hemisphere, one of 'lh' or 'rh'.
See Also
Other coloredmesh functions:
Triangles3D.to.coloredmesh(),
coloredmesh.from.annot(),
coloredmesh.from.color(),
coloredmesh.from.label(),
coloredmesh.from.mask(),
coloredmesh.from.morph.standard(),
coloredmesh.from.morphdata(),
coloredmeshes.from.color()
Create a coloredmesh from standard space morphometry data.
Description
Create a coloredmesh from standard space morphometry data.
Usage
coloredmesh.from.morph.standard(
subjects_dir,
subject_id,
measure,
hemi,
fwhm,
surface = "white",
template_subject = "fsaverage",
template_subjects_dir = NULL,
clip = NULL,
cortex_only = FALSE,
makecmap_options = mkco.seq()
)
Arguments
subjects_dir |
string. The FreeSurfer SUBJECTS_DIR, i.e., a directory containing the data for all your subjects, each in a subdir named after the subject identifier. |
subject_id |
string. The subject identifier. |
measure |
string. The morphometry data to use. E.g., 'area' or 'thickness'. Pass NULL to render the surface in white, without any data. One can also pass the pre-loaded morphometry data as a numerical vector, the length of which must match the number of surface vertices. |
hemi |
string, one of 'lh' or 'rh'. The hemisphere name. Used to construct the names of the label data files to be loaded. |
fwhm |
string, smoothing setting. The smoothing part of the filename, typically something like '0', '5', '10', ..., or '25'. |
surface |
character string or |
template_subject |
The template subject used. This will be used as part of the filename, and its surfaces are loaded for data visualization. Defaults to 'fsaverage'. |
template_subjects_dir |
The template subjects dir. If |
clip |
numeric vector of length 2 or NULL. If given, the 2 values are interpreted as lower and upper percentiles, and the morph data is clipped at the given lower and upper percentile (see |
cortex_only |
logical, whether to mask the medial wall, i.e., whether the morphometry data for all vertices which are not part of the cortex (as defined by the label file |
makecmap_options |
named list of parameters to pass to |
Value
coloredmesh. A named list with entries: "mesh" the tmesh3d mesh object. "col": the mesh colors. "render", logical, whether to render the mesh. "hemi": the hemisphere, one of 'lh' or 'rh'.
See Also
Other coloredmesh functions:
Triangles3D.to.coloredmesh(),
coloredmesh.from.annot(),
coloredmesh.from.color(),
coloredmesh.from.label(),
coloredmesh.from.mask(),
coloredmesh.from.morph.native(),
coloredmesh.from.morphdata(),
coloredmeshes.from.color()
Create a coloredmesh from arbitrary data.
Description
Create a coloredmesh from arbitrary data.
Usage
coloredmesh.from.morphdata(
subjects_dir,
vis_subject_id,
morph_data,
hemi,
surface = "white",
makecmap_options = mkco.seq()
)
Arguments
subjects_dir |
string. The FreeSurfer SUBJECTS_DIR, i.e., a directory containing the data for all your subjects, each in a subdir named after the subject identifier. |
vis_subject_id |
string. The subject identifier from which to obtain the surface for data visualization. Example: 'fsaverage'. |
morph_data |
string. The morphometry data to use. E.g., 'area' or 'thickness.' |
hemi |
string, one of 'lh' or 'rh'. The hemisphere name. Used to construct the names of the label data files to be loaded. |
surface |
character string or |
makecmap_options |
named list of parameters to pass to |
Value
coloredmesh. A named list with entries: "mesh" the tmesh3d mesh object. "col": the mesh colors. "render", logical, whether to render the mesh. "hemi": the hemisphere, one of 'lh' or 'rh'.
See Also
Other coloredmesh functions:
Triangles3D.to.coloredmesh(),
coloredmesh.from.annot(),
coloredmesh.from.color(),
coloredmesh.from.label(),
coloredmesh.from.mask(),
coloredmesh.from.morph.native(),
coloredmesh.from.morph.standard(),
coloredmeshes.from.color()
Generate coloredmesh from loaded data.
Description
Generate coloredmesh from loaded data.
Usage
coloredmesh.from.preloaded.data(
fs_surface,
morph_data = NULL,
col = NULL,
hemi = "lh",
makecmap_options = mkco.seq()
)
Arguments
fs_surface |
an fs.surface instance or a character string, which will be interpreted as the path to a file and loaded with |
morph_data |
numerical vector, per-vertex data (typically morphometry) for the mesh. If given, takes precedence over 'col' parameter. |
col |
vector of colors, typically hex color strings like '#FF00FF'. The per-vertex-colors for the mesh. Alternative to morph_data. |
hemi |
character string, one of 'lh' or 'rh'. Metadata, the hemisphere. May be used by visualization functions to decide whether to draw the mesh in certain views. |
makecmap_options |
named list of parameters to pass to |
Value
as fs.coloredmesh instance
Create a coloredmesh that draws a set of spheres (e.g., connectome nodes).
Description
Builds one mesh containing all spheres, with a per-vertex color taken from the color of the sphere the vertex belongs to. The result is a regular fs.coloredmesh instance, so it can be rendered, transformed and exported like any other mesh. Note that the vertices of a sphere are not shared with any other sphere, so each sphere can have its own radius and color.
Usage
coloredmesh.from.spheres(
centers,
radii = 1,
col = "#FF0000",
subdivisions = 2L,
metadata = list(),
hemi = NULL,
style = NULL
)
Arguments
centers |
n x 3 numeric matrix, the sphere centers. |
radii |
numeric vector of length n or a single number, the sphere radii. |
col |
vector of hex color strings, a single one or one per sphere. |
subdivisions |
non-negative integer, the number of subdivisions of the unit icosphere. Defaults to 2L. |
metadata |
named list, metadata for the resulting coloredmesh. See |
hemi |
character string or NULL, the hemisphere this renderable belongs to. Defaults to NULL (not hemisphere-specific). |
style |
|
Value
fs.coloredmesh instance.
Examples
centers = rbind(c(0, 0, 0), c(10, 0, 0));
cm = fsbrain:::coloredmesh.from.spheres(centers, c(1, 2), c("#FF0000", "#00FF00"));
class(cm);
Draw colorbar for coloredmeshes in separate 2D plot.
Description
Draw a colorbar for the coloredmeshes to a separate 2D plot. Due to the suboptimal handling of colorbar drawing in the three-dimensional multi-panel views, it is often desirable to plot the colorbar in a separate window, export it from there and then manually add it to the final plot version in some image manipulation software like Inkscape. If you need more control over the colormap than offered by this function (e.g., setting the color value for NA values or making a symmetric colormap to ensure that the zero point for divergent colormaps is a neutral color), you should write custom code, and the return value from this function will come in handy to do that.
Usage
coloredmesh.plot.colorbar.separate(
coloredmeshes,
show = FALSE,
image.plot_extra_options = list(horizontal = FALSE, legend.cex = 1.8, legend.width = 2,
legend.mar = 12, axis.args = list(cex.axis = 5)),
png_options = list(filename = "fsbrain_cbar.png", width = 1400, height = 1400, bg =
"#FFFFFF00"),
silent = FALSE,
trim_png = TRUE,
log_breaks = FALSE
)
Arguments
coloredmeshes |
list of coloredmeshes. A coloredmesh is a named list as returned by the |
show |
logical, Whether to open the resulting plot. Defaults to |
image.plot_extra_options |
named list of extra optins to pass to |
png_options |
Options to pass to |
silent |
logical, whether to suppress messages. Defaults to |
trim_png |
logical, whether to trim the output PNG image using image magick, i.e., remove everything but the foreground. Ignored unless an output PNG image is actually written (see 'png_options') and the 'magick' package is installed. |
log_breaks |
logical, scalar int, or vector of ints. Whether to use log10 scale for plotting the cbar. If logical and TRUE, uses log scale with default number (=5) ticks auto-computed from the data. If a single integer N, uses N ticks auto-computed from the data instead. If a numeric vector, uses the supplied values in the vector as ticks, note that they must be on a |
Value
named list, entries: 'output_img_path': character string, the path to the output file, or NULL.
Note
If you increase the output resolution of the colorbar (using 'png_options'), you will have to increase the font sizes as well (using 'image.plot_extra_options'), otherwise the axis and legend labels will be hard to read.
See Also
Other colorbar functions:
combine.colorbar.with.brainview.animation(),
combine.colorbar.with.brainview.image()
Examples
## Not run:
fsbrain::download_optional_data();
subjects_dir = fsbrain::get_optional_data_filepath("subjects_dir");
coloredmeshes = vis.subject.morph.native(subjects_dir, 'subject1',
'thickness', 'lh', views=c('t4'));
coloredmesh.plot.colorbar.separate(coloredmeshes);
# Or plot a colorbar with a label:
coloredmesh.plot.colorbar.separate(coloredmeshes,
image.plot_extra_options = list("legend.lab"="Thickness [mm]",
horizontal=TRUE, legend.cex=1.5, legend.line=-3));
## End(Not run)
Convert a single fs.coloredmesh to a scimesh mesh descriptor
Description
Convert a single fs.coloredmesh to a scimesh mesh descriptor
Usage
coloredmesh_to_scimesh(cmesh, style = "default")
Arguments
cmesh |
an fs.coloredmesh instance. |
style |
a rendering style: a style name, a named list of style parameters, or 'from_mesh' (use cmesh$style). Only the alpha value is consumed here (per-mesh vertex alpha). |
Value
a scimesh mesh descriptor list with vertices, triangles, and colors.
Retrieve combined data range from hemilist of coloredmeshes.
Description
Retrieve combined data range from hemilist of coloredmeshes.
Usage
coloredmeshes.combined.data.range(coloredmeshes)
Arguments
coloredmeshes |
hemilist of coloredmeshes |
Value
numeric vector of length 2, the finite data range
Create coloredmeshes for both hemis using pre-defined colors.
Description
Create coloredmeshes for both hemis using pre-defined colors.
Usage
coloredmeshes.from.color(
subjects_dir,
subject_id,
color_data,
hemi,
surface = "white",
metadata = list(),
style = NULL
)
Arguments
subjects_dir |
string. The FreeSurfer SUBJECTS_DIR, i.e., a directory containing the data for all your subjects, each in a subdir named after the subject identifier. |
subject_id |
string. The subject identifier. |
color_data |
a hemilist containing vectors of hex color strings |
hemi |
string, one of 'lh' or 'rh'. The hemisphere name. Used to construct the names of the label data files to be loaded. |
surface |
character string or |
metadata |
a named list, can contain whatever you want. Typical entries are: 'src_data' a hemilist containing the source data from which the 'color_data' was created, optional. If available, it is encoded into the coloredmesh and can be used later to plot a colorbar. 'makecmap_options': the options used to created the colormap from the data. |
style |
|
Value
named list of coloredmeshes. Each entry is a named list with entries: "mesh" the tmesh3d mesh object. "col": the mesh colors. "render", logical, whether to render the mesh. "hemi": the hemisphere, one of 'lh' or 'rh'. If not NULL, also "style": the rendering style for the mesh.
See Also
Other coloredmesh functions:
Triangles3D.to.coloredmesh(),
coloredmesh.from.annot(),
coloredmesh.from.color(),
coloredmesh.from.label(),
coloredmesh.from.mask(),
coloredmesh.from.morph.native(),
coloredmesh.from.morph.standard(),
coloredmesh.from.morphdata()
Retrieve metadata from hemilist of coloredmeshes.
Description
Retrieve metadata from hemilist of coloredmeshes.
Usage
coloredmeshes.get.md(coloredmeshes, mdname)
Arguments
coloredmeshes |
hemilist of coloredmeshes |
mdname |
the key in the named metadata list |
Value
the metadata value at the given key/mdname
Convert a hemilist of fs.coloredmeshes to a list of scimesh mesh descriptors
Description
Convert a hemilist of fs.coloredmeshes to a list of scimesh mesh descriptors
Usage
coloredmeshes_to_scimesh(coloredmeshes, style = "default")
Arguments
coloredmeshes |
a named list with entries "lh" and/or "rh", each an fs.coloredmesh instance. |
style |
a rendering style (see |
Value
a named list of scimesh mesh descriptors, with the same hemilist
structure. Only meshes with render=TRUE are included.
Get the number of segments of an fs.coloredpaths instance.
Description
Get the number of segments of an fs.coloredpaths instance.
Usage
coloredpaths.length(x)
Arguments
x |
an fs.coloredpaths instance. |
Value
positive integer, the number of segments.
Convert an fs.coloredpaths instance to scimesh line layers
Description
Line segments have no mesh representation, so they cannot be
passed to the scimesh renderer as meshes. They are converted to scimesh
line layers instead (see scimesh::line_layer), which the scimesh
rasterizer draws directly, without creating any geometry. This is the
cheap way to draw many thin lines, like the edges of a connectome.
Usage
coloredpaths_to_scimesh(cpaths, style = "default")
Arguments
cpaths |
an fs.coloredpaths instance. |
style |
a rendering style, see |
Value
a list of scimesh line layers (class 'scimesh_lines'). One layer per distinct line width, because the width is a property of the layer.
Return diverging color list
Description
Return diverging color list
Usage
colorlist.brain.clusters(num_colors)
Arguments
num_colors |
integer, the number of colors you want |
Value
vector of colors
Check for the given color strings whether they represent gray scale colors.
Description
Check for the given color strings whether they represent gray scale colors.
Usage
colors.are.grayscale(col_strings, accept_col_names = TRUE)
Arguments
col_strings |
vector of RGB(A) color strings, like |
accept_col_names |
logical, whether to accept color names like 'white'. Disables all sanity checks. |
Value
logical vector
Examples
colors.are.grayscale(c("#FFFFFF", "#FF00FF"));
all((colors.are.grayscale(c("#FFFFFF00", "#ABABABAB"))));
Check for the given color strings whether they have transparency, i.e., an alpha channel value != fully opaque.
Description
Check for the given color strings whether they have transparency, i.e., an alpha channel value != fully opaque.
Usage
colors.have.transparency(col_strings, accept_col_names = TRUE)
Arguments
col_strings |
vector of RGB(A) color strings, like |
accept_col_names |
logical, whether to accept color names like 'white'. Disables all sanity checks. |
Value
logical vector
Examples
colors.have.transparency(c("#FFFFFF", "#FF00FF", "#FF00FF00", "red", "#FF00FFDD"));
all((colors.have.transparency(c("#FFFFFF00", "#ABABABAB"))));
Combine a colorbar and a brain animation in gif format into a new animation.
Description
Combine a colorbar and a brain animation in gif format into a new animation.
Usage
combine.colorbar.with.brainview.animation(
brain_animation,
colorbar_img,
output_animation,
offset = "+0+0",
extend_brainview_img_height_by = 0L,
silent = FALSE,
allow_colorbar_shrink = TRUE,
background_color = "white"
)
Arguments
brain_animation |
path to the brain animation in GIF format |
colorbar_img |
path to the main image containing the separate colorbar, usually an image in PNG format |
output_animation |
path to output image in gif format, must include the '.gif' file extension |
offset |
offset string passed to |
extend_brainview_img_height_by |
integer value in pixels, the size of the lower border to add to the brainview_img. Use this if the lower part of the colorbar is off the image canvas. |
silent |
logical, whether to silence all messages |
allow_colorbar_shrink |
logical, whether to shrink the colorbar to the width of the animation in case it is considerably wider (more than 20 percent). Defaults to TRUE. |
background_color |
color string, the background color to use. Use 'transparency_color' if you want a transparent background. |
See Also
Other colorbar functions:
coloredmesh.plot.colorbar.separate(),
combine.colorbar.with.brainview.image()
Combine a colorbar and a brainview image into a new figure.
Description
Combine a colorbar and a brainview image into a new figure.
Usage
combine.colorbar.with.brainview.image(
brainview_img = "fsbrain_arranged.png",
colorbar_img = "fsbrain_cbar.png",
output_img = "fsbrain_merged.png",
offset = "+0+0",
extend_brainview_img_height_by = NULL,
silent = FALSE,
allow_colorbar_shrink = TRUE,
horizontal = FALSE,
background_color = "#FFFFFF",
transparency_color = NULL,
delete_colorbar_img = TRUE
)
Arguments
brainview_img |
path to the main image containing the view of the brain, usually an image in PNG format. |
colorbar_img |
path to the main image containing the separate colorbar, usually an image in PNG format. |
output_img |
path to output image, including the file extension. |
offset |
offset string passed to |
extend_brainview_img_height_by |
integer value in pixels, the size of the lower border to add to the brainview_img. Increase this if the lower part of the colorbar is off the image canvas. |
silent |
logical, whether to silence all messages |
allow_colorbar_shrink |
logical, whether to shrink the colorbar to the width of the animation in case it is considerably wider (more than 20 percent). Defaults to TRUE. |
horizontal |
logical, whether the colorbar is horizontal. If so, it will be added below the 'brainview_img'. If it is vertical, it will be added to the right of the 'brainview_img'. |
background_color |
color string, the background color to use. Use 'transparency_color' if you want a transparent background. |
transparency_color |
the temporary background color that will get mapped to transparency, or NULL if you do not want a transparent background. If used, it can be any color that does not occur in the foreground. Try 'white' or 'black' if in doubt. |
delete_colorbar_img |
logical, whether to delete the colorbar_img after the combine operation. |
Value
named list with entries 'output_img_path': character string, path to saved image. 'merged_img': magick image instance, the merged image
See Also
Other colorbar functions:
coloredmesh.plot.colorbar.separate(),
combine.colorbar.with.brainview.animation()
Combine a vertical colorbar and a brainview image into a new figure.
Description
Combine a vertical colorbar and a brainview image into a new figure.
Usage
combine.colorbar.with.brainview.image.vertical(
brainview_img,
colorbar_img,
output_img,
offset = "+0+0",
extend_brainview_img_width_by = NULL,
silent = FALSE,
allow_colorbar_shrink = TRUE,
background_color = "#FFFFFF",
transparency_color = NULL,
delete_colorbar_img = TRUE
)
Arguments
brainview_img |
path to the main image containing the view of the brain, usually an image in PNG format. |
colorbar_img |
path to the main image containing the separate colorbar, usually an image in PNG format. |
output_img |
path to output image, including the file extension. |
offset |
offset string passed to |
extend_brainview_img_width_by |
integer value in pixels, the size of the right border to add to the brainview_img. Increase this if the right part of the colorbar is off the image canvas. |
silent |
logical, whether to silence all messages |
allow_colorbar_shrink |
logical, whether to shrink the colorbar to the width of the animation in case it is considerably wider (more than 20 percent). Defaults to TRUE. |
background_color |
color string, the background color to use. Use 'transparency_color' if you want a transparent background. |
transparency_color |
the temporary background color that will get mapped to transparency, or NULL if you do not want a transparent background. If used, it can be any color that does not occur in the foreground. Try 'white' or 'black' if in doubt. |
delete_colorbar_img |
logical, whether to delete the colorbar_img after the combine operation. |
Combine two bounding boxes.
Description
Combine two bounding boxes.
Usage
combine_bboxes(bbox1, bbox2)
Arguments
bbox1 |
numeric vector of length 6 or NULL, see
|
bbox2 |
numeric vector of length 6. |
Value
numeric vector of length 6, the box that contains both input boxes.
Get cmap and colorlayer from data and makecmap_options.
Description
Applies a requested 'range' setting if present in makecmap_options. A shared colormap is used for the data of both hemispheres (if present).
Usage
common.makecmap.range(
makecmap_options,
lh_data = NULL,
rh_data = NULL,
return_metadata = FALSE
)
Arguments
makecmap_options |
named list of parameters to pass to |
lh_data |
numeric vector, data for left hemisphere. |
rh_data |
numeric vector, data for right hemisphere. |
return_metadata |
logical, whether to return additional metadata as entry 'metadata' in the returned list |
Value
named list, with entries 'map': named list, the squash cmap, and 'collayer': hemilist of color vectors
Compute surface contour slice images (internal).
Description
Internal helper that loads a volume and surface meshes, computes the intersection contours of each surface with each slice plane, and draws them onto individual magick slice images. Used by both volvis.lb.with.surface (which grids the results) and volvis.slices.with.surface (which exports them individually).
Usage
compute.surface.contour.slices(
subjects_dir,
subject_id,
volume = "brain",
surface = "white",
hemi = "both",
surface_color = "#FF0000",
surface_lwd = 1,
slices = -5,
axis = 1L,
scale = 1L,
silent = TRUE
)
Arguments
subjects_dir |
character string, the FreeSurfer SUBJECTS_DIR. |
subject_id |
character string, the subject identifier. |
volume |
numeric 3D array or character string. Either a 3D brain volume or the name of a volume file to load from the subject's |
surface |
character string or vector of strings, the surface(s) to use for contour extraction. |
hemi |
character string, one of |
surface_color |
character string or vector, color(s) for the contour lines. |
surface_lwd |
numeric, line width for contours. |
slices |
passed to |
axis |
integer, the slice axis. 1 = sagittal, 2 = coronal, 3 = axial. Defaults to |
scale |
integer >= 1, the factor by which to upscale the slice images in both dimensions using nearest-neighbor interpolation (keeps the MRI pixels sharp, which is good for QA). The surface contour lines are drawn on a high-resolution transparent overlay which is downsampled to the final size, so the lines appear thin and smooth. Defaults to |
silent |
logical, whether to suppress messages. |
Value
named list with entries: images (list of magick images, one per slice), slice_indices (integer vector of 1-based slice indices used), has_contour (logical vector, TRUE if at least one contour segment was drawn on the slice). Also includes metadata entries axis, surfaces, hemis, subject_id for downstream use.
Convert an edge list to a connectivity matrix.
Description
Convert an edge list to a connectivity matrix.
Usage
connectivity.matrix.from.edge.list(edge_list)
Arguments
edge_list |
data.frame with the columns 'source', 'target' and 'weight'. |
Value
named list with entries 'matrix' (the connectivity matrix) and 'names' (the node names).
Get vertex data for a single fs.surface or a hemilist of surfaces.
Description
Get vertex data for a single fs.surface or a hemilist of surfaces.
Usage
constant.pervertexdata(surfaces, value = NA)
Arguments
surfaces |
an fs.surface instance or a |
value |
the morphometry data value you want. |
Value
a vector or hemilist of vectors of values
Resolve the subjects dir for a context mesh.
Description
Determine the subjects dir from which the requested context mesh can be loaded, if the user did not pass one. For the template subject 'fsaverage' the surfaces are downloaded into the package cache if they are not available, for other subjects the standard search locations are checked, see find.subjectsdir.of.
Usage
context.mesh.resolve.subjects.dir(subject_id = "fsaverage", context = NULL)
Arguments
subject_id |
string, the subject identifier. |
context |
the context mesh definition, as passed by the user, see |
Value
string, the path to the subjects dir to use, or NULL if the context mesh does not have to be loaded from disk (e.g., because it was passed as a pre-built mesh).
Return triangles for a 3D cube or cuboid.
Description
Each row of the returned matrix encodes a point (the x, y, and z coordinates), and 3 consecutive rows encode a triangle. Obvisouly, a point will occur several times (as part of several triangles). The result can be passed to triangles3d to render a 3D box. The defaults for the parameters will create a cube with edge length 1 centered at (0, 0, 0).
Usage
cube3D.tris(
xmin = -0.5,
xmax = 0.5,
ymin = -0.5,
ymax = 0.5,
zmin = -0.5,
zmax = 0.5,
center = NULL,
edge_length = 1
)
Arguments
xmin |
numeric, minimal x coordinate |
xmax |
numeric, maximal x coordinate |
ymin |
numeric, minimal y coordinate |
ymax |
numeric, maximal y coordinate |
zmin |
numeric, minimal z coordinate |
zmax |
numeric, maximal z coordinate |
center |
numeric vector of length 3 or NULL, coordinates where to center a cube with the edge length defined in parameter |
edge_length |
numeric, the edge length of the cube. Only used if parameter |
Value
numerical matrix with 36 rows and 3 columns, the 3D coordinates. Each row encodes a point (the x, y, and z coordinates), and 3 consecutive rows encode a triangle.
Examples
# Create a cube with edge length 2, centered at (3,4,5):
cube_coords = cube3D.tris(center=c(3,4,5), edge_length=2.0);
# Create the same cube using the min/max method:
cube_coords = cube3D.tris(xmin=2, xmax=4, ymin=3, ymax=5, zmin=4, zmax=6);
# Create a cuboid:
cuboid_coords = cube3D.tris(xmin=2, xmax=4, ymin=3, ymax=9, zmin=4, zmax=5);
# To render the cuboid:
#rgl::triangles3d(cuboid_coords, col="red");
Vectorized version of cube3D.tris
Description
Vectorized version of cube3D.tris
Usage
cubes3D.tris(centers, edge_length = 1)
Arguments
centers |
numerical matrix with 3 columns. Each column represents the x, y, z coordinates of a center at which to create a cube. |
edge_length |
numerical vector or scalar, the edge length. Must have length 1 (same edge length for all cubes), or the length must be identical to the number of rows in parameter |
Value
matrix of triangle coordinates, see cube3D.tris.
Examples
# Plot a 3D cloud of 20000 voxels:
centers = matrix(rnorm(20000*3)*100, ncol=3);
rgl::triangles3d(cubes3D.tris(centers));
Write deepcopy list for longitudinal subjects.
Description
Write deepcopy list for longitudinal subjects.
Usage
deepcopylist.long(
measures = c("thickness", "area", "volume"),
fwhms = c("5", "10", "15"),
hemis = c("lh", "rh"),
long_measures = c("avg", "rate", "spc", "pc1"),
template = "fsaverage",
has_stacked_file = TRUE,
output_file = NULL
)
Value
vector of character strings, the file entries. Set ouput_file to also write them to a file.
Convert degree to radians
Description
Convert degree to radians
Usage
deg2rad(deg)
Delete all data in the package cache.
Description
Delete all data in the package cache.
Usage
delete_all_optional_data()
Value
integer. The return value of the unlink() call: 0 for success, 1 for failure. See the unlink() documentation for details.
Show demo visualization to test whether fsbrain is setup correctly.
Description
Show demo visualization to test whether fsbrain is setup correctly.
Usage
demo()
Note
This function will try to download optional data from the internet (unless the data have already been downloaded).
Write FreeSurfer Group Descriptor (FSGD) file from demographics dataframe.
Description
Write FreeSurfer Group Descriptor (FSGD) file from demographics dataframe.
Usage
demographics.to.fsgd.file(
filepath,
demographics_df,
group_column_name = "group",
subject_id_column_name = "id",
var_columns = NULL,
ftitle = "OSGM",
fsgd_flag_lines = c("DeMeanFlag 1", "ReScaleFlag 1")
)
Arguments
filepath |
character string, the path to the output file in FSGD format |
demographics_df |
data.frame, as returned by |
group_column_name |
character string, the column name of the group column in the 'demographics_df' |
subject_id_column_name |
character string, the column name of the subject identifier column in the 'demographics_df' |
var_columns |
vector of character strings, the column names to include as variables in the FSGD file. If NULL (the default), all columns will be included (with the exception of the group column and the subject id column). |
ftitle |
character string, freeform title for the FSGD file |
fsgd_flag_lines |
vector of character strings, extra flag lines to write to the file. The default setting will activate de-meaning and rescaling. |
Value
vector of character strings, the lines written to the 'filepath', invisible.
See Also
Other metadata functions:
read.md.demographics(),
read.md.subjects(),
report.on.demographics()
Convert a dataframe containing demographics data to a qdec.table.dat file and related files.
Description
This creates the qdec.table.dat and all required related files (the factor level files) in a directory.
Usage
demographics.to.qdec.table.dat(
df,
output_path = ".",
long = FALSE,
add_fake_level2 = FALSE,
long_timecolumn = "years",
qdec_file_name = "qdec.table.dat"
)
Arguments
df |
a data.frame containing demographics information. Make sure to have factors encoded as factors (not strings), so that the QDEC level files get created for them. Must contain a column named 'fsid' with the subject IDs as first column. If you want a long table, make sure to use |
output_path |
character string, existing directory into which to write the QDEC files. If the last directory level does not exist, it will be created. |
long |
logical, whether this is for a longitudinal run. If so, the df must contain a column named 'fsid-base' as the second column. It must also contain some column that gives the inter-scan time (from this scan timepoint to the previous one). The time unit (years, days, ...) is up to you, but typically one is interested in yearly change, the unit should be years. The name of the column (e.g., 'years') must be given to 'mris_slopes' later on the command line with the |
add_fake_level2 |
logical, whether to add a 2nd fake level to the level files of factors with only a single level. Such factors make little sense, but QDEC refuses to open the resulting files at all in such a case, which seems a bit overkill. If TRUE, a 2nd level named 'level2' will be added so that one can open the output in QDEC. |
long_timecolumn |
character string, the name of the column holding the inter-scan time. Ignored unless parameter |
qdec_file_name |
character string, the filename of the QDEC file to write. Must be only the file name (with extension if you want). See |
Note
IMPORTANT: If you import the dataframe from a text file with functions like read.table, they will by default replace dashes in column names with dots. So if you have a column named fsid-base in there, after loading it will be named fsid.base. See the check.names parameter for read.table to prevent that.
See Also
The function qdec.table.skeleton to generate the data.frame used as the 'df' argument for this function.
Examples
## Not run:
dem = readxl::read_xls("~/data/study1/demographics.xsl");
# or: dem = read.table("~/demographics.csv", check.names=FALSE);
# You may want to rearrange/rename/delete some columns here.
demographics.to.qdec.table.dat(dem, "~/data/study1/qdec/");
#
# a second one with real data:
dem = data.frame("ID"=paste("subject", seq(5), sep=""),
"age"=sample.int(20, 5)+10L, "isi"=rnorm(5, 2.0, 0.1)); #sample data.
long_table = qdec.table.skeleton(dem$ID, dem$isi);
demographics.to.qdec.table.dat(long_table, long=TRUE);
## End(Not run)
Perform simple desaturation or grayscale conversion of RGBA colors.
Description
Perform simple desaturation or grayscale conversion of RGBA colors.
Usage
desaturate(color, gamma_correct = FALSE)
Arguments
color |
rgba color strings |
gamma_correct |
logical, whether to apply non-linear gamma correction. First performs gamma expansion, then applies the gray-scale channel weights, then gamma compression. |
Value
rgba color strings, the gray-scale colors. The information from one of the three RGB channels would be enough. The alpha value is not touched.
Note
Assumes sRGB color space.
References
see https://en.wikipedia.org/wiki/Grayscale#Converting_color_to_grayscale
See Also
Other color functions:
alphablend()
Download atlas files for the fs_LR 32k template.
Description
Download a set of cortical atlas files (annotations) defined in the space of the fs_LR 32k template (the HCP-style surface space), based on a declarative manifest file shipped with this package. The atlases (e.g., Schaefer 100-1000, Brainnetome, AAL3) are not part of FreeSurfer and are not subject to the FreeSurfer license. This data is not required for the package to work.
Usage
download_fs_LR_32_atlases(scheme = "https")
Arguments
scheme |
character string, the URL scheme to use. Either |
Value
Named list. The list has entries: "available": vector of strings. The names of the files that are available in the local file cache. You can access them using get_optional_data_filepath(). "missing": vector of strings. The names of the files that this function was unable to retrieve.
See Also
Other fs_LR 32k template functions:
download_fs_LR_32_labels(),
download_fs_LR_32_meshes()
Download label files for the fs_LR 32k template.
Description
Download a set of label files for the fs_LR 32k template (the HCP-style surface space), based on a declarative manifest file shipped with this package. Currently this is the cortex label (?h.cortex.label), which defines the medial wall: all vertices which are not part of the label are medial wall vertices. It can be used to mask the medial wall when projecting volume data to the fs_LR 32k surface, see template.vol2surf (parameter cortex_only). This data is not required for the package to work.
Usage
download_fs_LR_32_labels(scheme = "https")
Arguments
scheme |
character string, the URL scheme to use. Either |
Value
Named list. The list has entries: "available": vector of strings. The names of the files that are available in the local file cache. You can access them using get_optional_data_filepath(). "missing": vector of strings. The names of the files that this function was unable to retrieve.
See Also
Other fs_LR 32k template functions:
download_fs_LR_32_atlases(),
download_fs_LR_32_meshes()
Examples
## Not run:
fsbrain::download_fs_LR_32_labels();
subjects_dir = fsbrain::get_optional_data_filepath("subjects_dir");
cortex_lh = subject.label(subjects_dir, "fs_LR_32", "cortex.label", "lh");
## End(Not run)
Download surface meshes for the fs_LR 32k template.
Description
Download a set of surface mesh files for the fs_LR 32k template (the HCP-style surface space), based on a declarative manifest file shipped with this package. The meshes include the white, pial, inflated, very inflated, midthickness, sphere and flat surfaces for both hemispheres. This data is not required for the package to work.
Usage
download_fs_LR_32_meshes(scheme = "https")
Arguments
scheme |
character string, the URL scheme to use. Either |
Value
Named list. The list has entries: "available": vector of strings. The names of the files that are available in the local file cache. You can access them using get_optional_data_filepath(). "missing": vector of strings. The names of the files that this function was unable to retrieve.
See Also
Other fs_LR 32k template functions:
download_fs_LR_32_atlases(),
download_fs_LR_32_labels()
Download the FreeSurfer v6 fsaverage subject.
Description
Download some relevant files from the FreeSurfer v6 fsaverage subject. The files are subject to the FreeSurfer software license, see parameter 'accept_freesurfer_license' for details. This data is not required for the package to work. If you are working on a machine that has FreeSurfer installed, you already have this data anyways and do not need to download it. If not, it is very convenient to have it if you are using the fsaverage template subject to analyze your standard space data, as it is required for visualization of such data.
Usage
download_fsaverage(accept_freesurfer_license = FALSE, scheme = "https")
Arguments
accept_freesurfer_license |
logical, whether you accept the FreeSurfer license for fsaverage, available at https://surfer.nmr.mgh.harvard.edu/fswiki/FreeSurferSoftwareLicense. Defaults to FALSE. |
scheme |
character string, the URL scheme to use. Either |
Value
Named list. The list has entries: "available": vector of strings. The names of the files that are available in the local file cache. You can access them using get_optional_data_file(). "missing": vector of strings. The names of the files that this function was unable to retrieve.
Download the FreeSurfer v6 low-resolution fsaverage3 subject.
Description
Download some relevant files from the FreeSurfer v6 fsaverage3 subject. The files are subject to the FreeSurfer software license, see parameter 'accept_freesurfer_license' for details. This data is not required for the package to work. If you are working on a machine that has FreeSurfer installed, you already have this data anyways and do not need to download it.
Usage
download_fsaverage3(accept_freesurfer_license = FALSE, scheme = "https")
Arguments
accept_freesurfer_license |
logical, whether you accept the FreeSurfer license for fsaverage, available at https://surfer.nmr.mgh.harvard.edu/fswiki/FreeSurferSoftwareLicense. Defaults to FALSE. |
scheme |
character string, the URL scheme to use. Either |
Value
Named list. The list has entries: "available": vector of strings. The names of the files that are available in the local file cache. You can access them using get_optional_data_file(). "missing": vector of strings. The names of the files that this function was unable to retrieve.
Note
The subject fsaverage3 is a downsampled (low mesh resolution) version of the standard fsaverage. If you never heard about fsaverage3, you do not need it. You will have to manually re-sample your data in FreeSurfer if you want to use it with fsaverage3.
Download the FreeSurfer v6 fsaverage6 subject.
Description
Download some relevant files from the FreeSurfer v6 fsaverage6 subject. The files are subject to the FreeSurfer software license, see parameter 'accept_freesurfer_license' for details. This data is not required for the package to work. If you are working on a machine that has FreeSurfer installed, you already have this data anyways and do not need to download it.
Usage
download_fsaverage6(accept_freesurfer_license = FALSE, scheme = "https")
Arguments
accept_freesurfer_license |
logical, whether you accept the FreeSurfer license for fsaverage, available at https://surfer.nmr.mgh.harvard.edu/fswiki/FreeSurferSoftwareLicense. Defaults to FALSE. |
scheme |
character string, the URL scheme to use. Either |
Value
Named list. The list has entries: "available": vector of strings. The names of the files that are available in the local file cache. You can access them using get_optional_data_file(). "missing": vector of strings. The names of the files that this function was unable to retrieve.
Note
The subject fsaverage6 is a slightly downsampled (low mesh resolution) version of the standard fsaverage. If you never heard about fsaverage6, you do not need it. You will have to manually re-sample your data in FreeSurfer if you want to use it with fsaverage6.
Download atlas files for the fsaverage template subject.
Description
Download a set of atlas files defined in the space of the fsaverage template subject, based on a declarative manifest file shipped with this package. The atlases (e.g., Schaefer 100-1000, Brainnetome, HCP-MMP1, AAL3) are defined in fsaverage space, but they are not part of FreeSurfer and are not subject to the FreeSurfer license. This data is not required for the package to work. Note that some atlases are not defined on the cortical surface and ship their own surface mesh, e.g., the subcortical atlas of the ENIGMA aseg structures: for those, the 'surf/lh.subcortical' and 'label/lh.subcortical.annot' files (and the same for the right hemisphere) are downloaded, see vis.subcortical.region.values.
Usage
download_fsaverage_atlases(scheme = "https")
Arguments
scheme |
character string, the URL scheme to use. Either |
Value
Named list. The list has entries: "available": vector of strings. The names of the files that are available in the local file cache. You can access them using get_optional_data_filepath(). "missing": vector of strings. The names of the files that this function was unable to retrieve.
Download only essential FreeSurfer v6 fsaverage files for quick visualization.
Description
Download a minimal subset of files from the FreeSurfer v6 fsaverage subject, containing only the white surfaces, cortex labels, and curvature files needed for basic 3D visualization (e.g., in a Shiny app). This is much faster than download_fsaverage which downloads 19 files. The files are subject to the FreeSurfer software license, see parameter 'accept_freesurfer_license' for details.
Usage
download_fsaverage_minimal(accept_freesurfer_license = FALSE, scheme = "https")
Arguments
accept_freesurfer_license |
logical, whether you accept the FreeSurfer license for fsaverage, available at https://surfer.nmr.mgh.harvard.edu/fswiki/FreeSurferSoftwareLicense. Defaults to FALSE. |
scheme |
character string, the URL scheme to use. Either |
Value
Named list. The list has entries: "available": vector of strings. The names of the files that are available in the local file cache. You can access them using get_optional_data_file(). "missing": vector of strings. The names of the files that this function was unable to retrieve.
Note
This downloads approximately 8 files instead of the 19 downloaded by download_fsaverage, making it suitable for environments with startup time constraints (e.g., Posit Connect Cloud, shinyapps.io).
Download optional data for this package if required.
Description
Ensure that the optioanl data is available locally in the package cache. Will try to download the data only if it is not available. This data is not required for the package to work, but it is used in the examples, in the unit tests and also in the example code from the vignette. Downloading it is highly recommended. This function also calls download_fsaverage_atlases, so the atlases defined in fsaverage space (including the subcortical atlas, see vis.subcortical.region.values) become available as well.
Usage
download_optional_data(scheme = "https")
Arguments
scheme |
character string, the URL scheme to use. Either |
Value
Named list. The list has entries: "available": vector of strings. The names of the files that are available in the local file cache. You can access them using get_optional_data_file(). "missing": vector of strings. The names of the files that this function was unable to retrieve.
Download extra data to reproduce the figures from the fsbrain paper.
Description
Download extra data to reproduce the figures from the fsbrain paper.
Usage
download_optional_paper_data(scheme = "https")
Arguments
scheme |
character string, the URL scheme to use. Either |
Value
Named list. The list has entries: "available": vector of strings. The names of the files that are available in the local file cache. You can access them using get_optional_data_file(). "missing": vector of strings. The names of the files that this function was unable to retrieve.
Note
Called for side effect of data download.
Download a white matter tract atlas (streamlines).
Description
Download one of the tract atlases that are distributed as
streamlines in TrackVis TRK format, one file per white matter bundle. The
bundle files (and the provenance and attribution files that document them) are
downloaded into the fsbrain file cache, where
get_optional_data_filepath can be used to access them.
The bundles can then be read with read.tract.bundles
and plotted with vis.tracts.
Usage
download_xtract_tracts(
atlas = "xtract_medium",
download = TRUE,
scheme = "https",
silent = FALSE
)
Arguments
atlas |
character string, the atlas to download. One of 'xtract_tiny' (the smallest one, useful for quick tests), 'xtract_small', 'xtract_medium' (the default) or 'xtract_large' (the most detailed one). |
download |
logical, whether to download the files if they are not in the cache. If FALSE, the function only reports the status of the files. |
scheme |
character string, the URL scheme to use, see the 'scheme'
parameter of |
silent |
logical, whether to suppress the progress messages. |
Details
The atlases are the XTRACT atlas of the 42 major white matter tracts
(Warrington et al., 2020, doi:10.1126/sciadv.aba8245), whose streamlines were
converted from the probabilistic tract atlases and are available in four levels
of spatial detail. Note that the bundles are defined in MNI152 space, while the
fs_LR_32 and fsaverage templates of fsbrain use a different (fsaverage-like)
space: the two spaces are very similar, so the tracts align with the template
surfaces well enough for visualization, but they are not identical. If you need
an exact alignment, register the template to MNI152 and pass the resulting
matrix to the parameter transform_matrix of
vis.tracts.
The files are hosted on the rcmd.org server of this project, in the same way as
the other optional data of the package, see
download_optional_data. They are redistributed from the
archives of the MIT licensed 'yabplot' Python package, which uses the same
streamlines; the attribution and provenance files that come with them document
the origin (see tracts/xtract.attribution.json and the per-level
tracts/xtract_<level>/xtract_<level>.provenance.json in the file cache). This
data is not required for the package to work.
Value
named list. The list has the entries "available" (vector of character strings, the paths of the bundle files that are available in the local file cache) and "missing" (vector of character strings, the files that could not be retrieved).
Note
The levels of detail do not only differ in the number of streamlines, but
also in the set of bundles they contain: 'xtract_tiny' has 37 bundles,
'xtract_small' and 'xtract_medium' have 40, and 'xtract_large' has 42 (the
bundles 'SLF1_L' and 'Cing_PeriGen_L' are only present in the large one).
Since the bundles are selected by name (see the parameter 'bundle_values' of
vis.tracts), data that is mapped to bundles has to match
the atlas that is actually used.
See Also
Other tracts functions:
read.tract.bundles(),
vis.tracts()
Examples
## Not run:
# Download the small version of the XTRACT atlas:
download_xtract_tracts("xtract_small");
# The bundle files are now in the cache:
atlas_dir = file.path(get_optional_data_filepath("tracts"), "xtract_small");
list.files(atlas_dir);
## End(Not run)
Draw colorbar into background of current plot.
Description
Requires a rgl 3d visualisation to be open that already contains a rendered object. Uses bgplot3d to add a colorbar in the background of the plot using image.plot. Experimental.
Usage
draw.colorbar(coloredmeshes, horizontal = FALSE, ...)
Arguments
coloredmeshes |
fs.coloredmesh as returned by the coloredmesh.from.* functions. |
horizontal |
logical, whether the colorbar should be drawn in horizontal orientation. Defaults to |
... |
extra params passed to |
Note
To adapt or change the colormap, you should use the 'makecmap_options' parameter of the vis.* function used to construct the coloredmeshes (e.g., vis.subject.morph.native).
Draw contour segments onto a magick image.
Description
Draws a set of line segments (as returned by mesh.slice.intersection) onto a magick image. Individual mesh triangles produce small segments, which collectively trace the contour boundary when drawn together.
Usage
draw.segments.on.image(
img,
segments,
slice_axis,
row_axis,
col_axis,
color = "#FF0000",
lwd = 1,
coord_scale = 1L
)
Arguments
img |
a magick image instance (a single 2D slice image). |
segments |
list of 2×2 matrices, each a line segment in 0-based CRS coordinates on the two orthogonal axes. |
slice_axis |
integer, the axis (1,2,3) perpendicular to the slice plane. |
row_axis |
integer, which CRS axis (1, 2, or 3) maps to the image row dimension. |
col_axis |
integer, which CRS axis (1, 2, or 3) maps to the image column dimension. |
color |
character string, the color for the contour lines. |
lwd |
numeric, line width passed to |
coord_scale |
positive integer, the factor by which the CRS coordinates must be multiplied to map them to image pixel coordinates. Defaults to 1L, which maps coordinates 1:1 to pixels (as is the case when the image is at native resolution). Use larger values when drawing onto a scaled-up image or overlay. |
Value
the modified magick image (invisibly).
Internal function to get some demo EEG electrode coordinates. Will be removed from public API. Do not use this.
Description
Internal function to get some demo EEG electrode coordinates. Will be removed from public API. Do not use this.
Usage
eeg_coords(label_subset = NULL)
Arguments
label_subset |
vector of character strings, electrode names like 'Nz' or 'RPA'. ÖLeave at the default value |
Value
data.frame with one row per electrode, and the following 3 columns: 'label': the electrode name, 'theta': the azimuth in degrees, 'phi': the latitude in degrees.
Note
There are lots of different naming conventions for spherical coordinates, see https://en.wikipedia.org/wiki/Spherical_coordinate_system.
References
See http://wiki.besa.de/index.php?title=Electrodes_and_Surface_Locations
Check whether parameter is an fs.surface instance.
Description
Check whether parameter is an fs.surface instance.
Usage
ensure.fs.surface(surface)
Arguments
surface |
an fs.surface instance which will be returned as-is, a tmesh3d which will be converted to a surface using |
Value
an fs.surface instance, unless an error occurs.
Ensure the mesh is a tmesh3d instance. Will convert fs.surfaces to one automatically.
Description
Ensure the mesh is a tmesh3d instance. Will convert fs.surfaces to one automatically.
Usage
ensure.tmesh3d(mesh)
Arguments
mesh |
whatever, but hopefully an |
Value
tmesh3d instance, the input or converted from the input.
Note
This function will stop if the mesh cannot be converted to tmesh3d.
Export high-quality brainview image with a colorbar.
Description
This function serves as an easy (but slightly inflexible) way to export a high-quality, tight-layout, colorbar figure to disk. If no colorbar is required, one can use vislayout.from.coloredmeshes instead. It is an alias for vis.export.from.coloredmeshes that requires less typing.
Usage
export(
coloredmeshes,
colorbar_legend = NULL,
img_only = TRUE,
draw_colorbar = "horizontal",
horizontal = NULL,
silent = TRUE,
quality = 1L,
output_img = "fsbrain_arranged.png",
image.plot_extra_options = NULL,
large_legend = TRUE,
view_angles = get.view.angle.names(angle_set = "t4"),
style = "default",
grid_like = TRUE,
background_color = "white",
transparency_color = NULL,
...
)
Arguments
coloredmeshes |
list of coloredmesh. A coloredmesh is a named list as returned by the |
colorbar_legend |
character string or NULL, the title for the colorbar. |
img_only |
logical, whether to return only the resulting image |
draw_colorbar |
logical or one of the character strings 'vertical' or 'horizontal', whether to draw a colorbar. Defaults to 'horizontal'. |
horizontal |
deprecated (since 0.5.0) and ignored, use parameter 'draw_colorbar' instead. |
silent |
logical, whether to suppress messages |
quality |
integer, an arbitrary quality. This is the resolution per tile before trimming, divided by 1000, in pixels. Example: 1L means 1000x1000 pixels per tile before trimming. Currently supported values: |
output_img |
string, path to the output file. Defaults to "fsbrain_arranged.png" |
image.plot_extra_options |
named list, custom options for fields::image.plot. Overwrites those derived from the quality setting. If in doubt, leave this alone. |
large_legend |
logical, whether to plot extra large legend text, affects the font size of the colorbar_legend and the tick labels. |
view_angles |
list of strings. See |
style |
the rendering style, see |
grid_like |
logical, passed to |
background_color |
hex color string (like '#FFFFFF'), the color to use for the background. Ignored if 'transparency_color' is not NULL. To get a transparent background, use 'transparency_color' instead of this parameter. WARNING: Do not use color names (like 'gray'), as their interpretation differs between rgl and image magick! |
transparency_color |
hex color string (like '#FFFFFF'), the temporary background color that will get mapped to transparency, or NULL if you do not want a transparent background. If used, it can be any color that does not occur in the foreground. Try '#FFFFFF' (white) or '#000000' (black) if in doubt. WARNING: Do not use color names (like 'gray'), as their interpretation differs between rgl and image magick! |
... |
extra arguments passed to |
Value
magick image instance or named list, depending on the value of 'img_only'. If the latter, the list contains the fields 'rev_vl', 'rev_cb', and 'rev_ex', which are the return values of the functions vislayout.from.coloredmeshes, coloredmesh.plot.colorbar.separate, and combine.colorbar.with.brainview.image, respectively.
Note
Note that your screen resolution has to be high enough to generate the final image in the requested resolution, see the 'fsbrain FAQ' vignette for details and solutions if you run into trouble.
Examples
## Not run:
rand_data = rnorm(327684, 5, 1.5);
cm = vis.data.on.fsaverage(morph_data_both=rand_data,
rglactions=list('no_vis'=T));
export(cm, colorbar_legend='Random data',
output_img="~/fsbrain_arranged.png");
## End(Not run)
Export a coloredmeshes with vertexcolors in PLY format.
Description
Exports coloredmeshes with vertex coloring to standard mesh files in Stanford Triangle (PLY) format. This is very hand for rendering in external standard 3D modeling software like Blender.
Usage
export.coloredmesh.ply(filepath, coloredmesh)
Arguments
filepath |
The export filepath, including file name and extension. |
coloredmesh |
an 'fs.coloredmesh' instance, as returned (silently) by all surface visualization functions, like |
Examples
## Not run:
fsbrain::download_optional_data();
subjects_dir = fsbrain::get_optional_data_filepath("subjects_dir");
coloredmeshes = vis.subject.morph.native(subjects_dir, 'subject1', 'thickness');
export.coloredmesh.ply('~/subject1_thickness_lh.ply', coloredmeshed$lh);
## End(Not run)
Recursive computation of neighborhoods, see surf.sphere.dist
Description
Compute neighborhood of the current vertex (=target vertex). The computation follows the mesh edges while there are still vertices which fullfil the dotproduct distance threshold.
Usage
extend_neighbors(
spherical_surface,
targetvidx,
currentvidx,
min_dotp_thresh,
ref_visited,
ref_neighbors,
ref_neighbor_dpdists
)
Arguments
spherical_surface |
an fs.surface instance representing the spherical version ( |
targetvidx |
positive integer, initial target vertex. The vertex for which to compute the neighborhood. |
currentvidx |
positive integer, initial current vertex. Pass identical value as in targetvidx, this is changed later in the recursion. |
min_dotp_thresh |
double, the minimal dotproduct distance threshold to use. Only vertices along the structural mesh neighborhood with values greater this will be included in the neighborhood. Yes, greater. |
ref_visited |
pass-by-reference (via RefClasses) integer vector of length |
ref_neighbors |
pass-by-reference (via RefClasses) integer vector of length |
ref_neighbor_dpdists |
pass-by-reference (via RefClasses) double vector of length |
Value
integer, invisible. Either 0L or 1L. Used in the recursion only, ignore. The return values of interest are in the 3 ref_* parameters.
Try to extract a 3D volume from the input argument.
Description
Check whether it already is such an array, whether it is a filename that can be loaded with freesurferformats::read.fs.volume into such an array, etc.
Usage
extract.volume.3D(stats, silent = getOption("fsbrain.silent", default = FALSE))
Arguments
stats |
a 3D array, 4D array or a string that can be treated as a filename to a volume image containing such an array. |
silent |
logical, whether to suppress file reading messages. |
Value
the obtained 3D array
Note
This function stops with an error if the input cannot be returned as a 3D array.
Enumerate all edges of the given faces or mesh.
Description
Compute edges of a tri-mesh. Can compute all edges, or only a subset, given by the face indices in the mesh.
Usage
face.edges(surface_mesh, face_indices = "all")
Arguments
surface_mesh |
surface mesh, as loaded by |
face_indices |
integer vector, the face indices. Can also be the character string 'all' to use all faces. |
Value
integer matrix of size (n, 2) where n is the number of edges. The indices (source and target vertex) in each row are not sorted, and the edges are not unique. I.e., each undirected edge u, v (with the exception of edges on the mesh border) will occur twice in the result: once as u, v and once as v, u.
See Also
Other surface mesh functions:
label.border(),
mesh.vertex.included.faces(),
mesh.vertex.neighbors(),
subject.surface(),
vis.path.along.verts()
Filter a scimesh scene to the meshes visible from a given view
Description
Filter a scimesh scene to the meshes visible from a given view
Usage
filter_scene_by_view(scene, hemi_filter)
Arguments
scene |
a named list of scimesh mesh descriptors (with "lh" and/or "rh" entries). |
hemi_filter |
character string, one of "lh", "rh", or "both". |
Value
a flat list of scimesh mesh descriptors for the given view.
Find the FREESURFER_HOME directory on disk.
Description
Try to find directory containing the FreeSurfer installation, based on environment variables and educated guessing.
Usage
find.freesurferhome(mustWork = FALSE)
Arguments
mustWork |
logical. Whether the function should with an error stop if the directory cannot be found. If this is TRUE, the return value will be only the 'found_at' entry of the list (i.e., only the path of the FreeSurfer installation dir). |
Value
named list with the following entries: "found": logical, whether it was found. "found_at": Only set if found=TRUE, the path to the FreeSurfer installation directory (including the directory itself). See 'mustWork' for important information.
See Also
Find the subject directory containing the fsaverage subject (or others) on disk.
Description
Try to find directory containing the fsaverage subject (or any other subject) by checking in the following places and returning the first path where it is found: first, the directory given by the environment variable SUBJECTS_DIR, then in the subir 'subjects' of the directory given by the environment variable FREESURFER_HOME, and finally the base dir of the package cache. See the function download_fsaverage if you want to download fsaverage to your package cache and ensure it always gets found, no matter whether the environment variables are set or not. Note that a subject directory in the package cache is only considered complete if it contains the essential files of a subject, see subject.dir.has.core.files: the cache can contain a subject which only has some atlas files (see download_fsaverage_atlases), and such a directory would make all functions that need the surfaces of the subject fail.
Usage
find.subjectsdir.of(subject_id = "fsaverage", mustWork = FALSE)
Arguments
subject_id |
string, the subject id of the subject. Defaults to 'fsaverage'. |
mustWork |
logical. Whether the function should with an error stop if the directory cannot be found. If this is TRUE, the return value will be only the 'found_at' entry of the list (i.e., only the path of the subjects dir). |
Value
named list with the following entries: "found": logical, whether it was found. "found_at": Only set if found=TRUE, the path to the fsaverage directory (NOT including the fsaverage dir itself). "found_all_locations": list of all locations in which the subject directory exists, including locations at which the subject is incomplete (see the description). See 'mustWork' for important information.
See Also
Given a list of path coordinates, create matrix containing only the first and last point of each path.
Description
Given a list of path coordinates, create matrix containing only the first and last point of each path.
Usage
flc(coords_list)
Arguments
coords_list |
list of |
Value
m x 6 numeric matrix, containing the first and last point of a path per row (two 3D xyz-coords, so 6 values per row).
Change data to ensure requested data_range.
Description
Change data to ensure requested data_range.
Usage
force.to.range(x, data_range, allow_append = FALSE)
Arguments
x |
numerical vector, the input data. |
data_range |
numerical vector of length 2, the range into which to force the data values in 'x'. If |
allow_append |
logical, whether to allow adding of more extreme data values. Allows a range larger than the data range. If set to |
Value
Modified version of x. The data will be clamped and / or at most 2 values may be appended to x.
Note
This is an artificial modification of the data used for plotting a colormap with a fixed range.
fs.coloredmesh constructor
Description
fs.coloredmesh constructor
Usage
fs.coloredmesh(
mesh,
col,
hemi,
render = TRUE,
metadata = NULL,
add_normals = FALSE
)
Arguments
mesh |
a |
col |
vector of vertex colors for the mesh, one color per vertex. Expanded if exactly one color. |
hemi |
character string, one of 'lh' or 'rh'. This may be used by visualization functions to decide whether or not to show this mesh in a certain view. |
render |
logical, whether to render this mesh during visualization |
metadata |
optional, named list containing metadata |
add_normals |
logical, whether to compute normals and save them in the mesh. |
Value
an fs.coloredmesh instance. The only fields one should use in client code are 'mesh', 'hemi' and 'col', all others are considered internal and may change without notice.
Create fs.coloredpaths instance from 2 point matrices.
Description
Create a renderable that draws the line segments from from to to, with one color and (optionally) one width per segment. This is the line equivalent of a coloredmesh, see the details.
Usage
fs.coloredpaths(
from,
to,
col = "#FF0000",
width = 1,
depth_test = TRUE,
lit = FALSE,
hemi = NULL,
metadata = list(),
render = TRUE,
style = NULL
)
Arguments
from |
numeric matrix of size (n, 3), the start points of the n segments. |
to |
numeric matrix of size (n, 3), the end points of the n segments. |
col |
vector of hex color strings, either a single one or one per segment. |
width |
vector of positive numbers or a single one, the line width(s) in pixels. |
depth_test |
logical, whether the lines should be hidden by geometry which is closer to the camera. Defaults to TRUE. Set to FALSE to draw the lines on top of everything, which is useful for annotations. |
lit |
logical, whether to apply lighting to the lines. Defaults to FALSE, which means the color is used as-is (like hardware-rendered lines, and like |
hemi |
character string or NULL, the hemisphere this renderable belongs to. Defaults to NULL, which means that it is not hemisphere-specific and is rendered in the views of both hemispheres. |
metadata |
named list, metadata for this renderable. See the details. |
render |
logical, whether to render this instance. Meshes with |
style |
|
Details
Both renderer backends support this class. The rgl backend renders the segments as hardware lines (rgl::segments3d), the headless scimesh backend uses a scimesh line layer (see scimesh::line_layer), which rasterizes the lines directly instead of creating tube geometry. Note that the width of lines is measured in pixels and is a screen-space property, so lines do not get thinner when the camera moves away (this is what hardware line rendering does, and it also means that a line is always visible, even when it is very thin).
The metadata field works exactly like the one of a coloredmesh: if it contains the entries 'src_data' and 'makecmap_options', a colorbar can be plotted for this renderable, see coloredmesh.plot.colorbar.separate.
Value
fs.coloredpaths instance. A named list with entries: "from" (the start points), "to" (the end points), "col" (the colors), "width" (the line widths), "depth_test", "lit", "hemi", "render", and "metadata".
Examples
# A single white line segment from the origin to (10, 0, 0):
p = fs.coloredpaths(matrix(c(0, 0, 0), ncol = 3), matrix(c(10, 0, 0), ncol = 3), col = "#FFFFFF");
p;
# Two segments in different colors, both of them with a width of 2 pixels:
from = matrix(c(0, 0, 0, 0, 0, 10), ncol = 3, byrow = TRUE);
to = matrix(c(10, 0, 0, 0, 10, 10), ncol = 3, byrow = TRUE);
p2 = fs.coloredpaths(from, to, col = c("#FF0000", "#00FF00"), width = 2);
Return FreeSurfer path.
Description
Return FreeSurfer path.
Usage
fs.home()
Value
the FreeSurfer path, typically what the environment variable FREESURFER_HOME points to.
Note
This function will stop (i.e., raise an error) if the directory cannot be found.
Turn surface mesh into a igraph and return its adjacency list representation.
Description
Turn surface mesh into a igraph and return its adjacency list representation.
Usage
fs.surface.as.adjacencylist(surface)
Arguments
surface |
an fs.surface instance as returned by |
Value
list of integer vectors, the adjacency list.
Create igraph undirected graph from a brain surface mesh.
Description
Create igraph undirected graph from a brain surface mesh.
Usage
fs.surface.to.igraph(surface)
Arguments
surface |
an fs.surface instance as returned by |
Value
igraph::graph instance
Examples
## Not run:
# Find the one-ring neighbors of vertex 15 on the fsaverage left hemi:
sf = subject.surface(fsaverage.path(T), "fsaverage", "white", "lh");
g = fs.surface.to.igraph(sf);
igraph::neighborhood(g, order = 1, nodes = 15);
## End(Not run)
Get an rgl tmesh3d instance from a brain surface mesh.
Description
Get an rgl tmesh3d instance from a brain surface mesh.
Usage
fs.surface.to.tmesh3d(surface)
Arguments
surface |
an fs.surface instance, as returned by |
Value
a tmesh3d instance, see rgl::tmesh3d for details.
Compute vertex neighborhoods or the full adjacency list for a mesh using the Rvcg or igraph library.
Description
This is a faster replacement for mesh.vertex.neighbors that requires the optional dependency package 'igraph' or 'Rvcg'.
Usage
fs.surface.vertex.neighbors(
surface,
nodes = NULL,
order = 1L,
simplify = TRUE,
include_self = FALSE
)
Arguments
surface |
an fs.surface instance as returned by |
nodes |
the source vertex. Passed on to |
order |
integer, the max graph distance of vertices to consider neighbors (number of neighborhood rings). Passed on to |
simplify |
logical, whether to return only an integer vector if the 'nodes' parameter has length 1 (instead of a list where the first element is such a vector). |
include_self |
logical, whether to include vertices in their own neighborhood |
Value
named list of integer vectors (see igraph::neighborhood), unless 'simplify' is TRUE, see there for details.
Note
If you intend to call several functions on the igraph, it is faster to construct it with fs.surface.to.igraph and keep it.
See Also
The fs.surface.as.adjacencylist function computes the 1-ring neighborhood for the whole graph.
Create a named value list from a dataframe.
Description
Given the result of the group.agg.atlas.native() function, extract a named region value list (typically for use with the spread.values.over.annot() function) for a single subject.
Usage
fs.value.list.from.agg.res(agg_res, subject_id)
Arguments
agg_res |
a dataframe. The result of calling group.agg.atlas.native(). |
subject_id |
string. A subject identifier, must occur in the subject column of the dataframe agg_res. |
Value
region_value_list, named list of strings. Each name must is a region name from the annotation, and the value is a scalar that resulting from aggregating the morphometry data for that region and subject.
Return path to fsaverage dir.
Description
Return path to fsaverage dir.
Usage
fsaverage.path(allow_fetch = FALSE)
Arguments
allow_fetch |
logical, whether to allow trying to download it. |
Value
the path to the fsaverage directory (NOT including the 'fsaverage' dir itself).
Note
This function will stop (i.e., raise an error) if the directory cannot be found. The fsaverage template is part of FreeSurfer, and distributed under the FreeSurfer software license.
Check whether object can be rendered by fsbrain
Description
Check whether object can be rendered by fsbrain
Usage
fsbrain.renderable(x)
Arguments
x |
any |
Value
TRUE if x is an instance of a class that can be rendered by fsbrain visualization functions, and FALSE otherwise. Currently, the following types are renderable: fs.coloredvoxels, fs.coloredmesh, fs.coloredpaths, Triangles3D.
See Also
Set default figure size for fsbrain visualization functions.
Description
Set default figure size for fsbrain visualization functions.
Usage
fsbrain.set.default.figsize(width, height, xstart = 50L, ystart = 50L)
Arguments
width |
integer, default figure width in pixels |
height |
integer, default figure height in pixels |
xstart |
integer, default horizontal position of plot window on screen, left border is 0. The max value (right border) depends on your screen resolution. |
ystart |
integer, default vertical position of plot window on screen, upper border is 0. The max value (lower border) depends on your screen resolution. |
Note
This function overwrites options("fsbrain.rgloptions"). Output size is limited by your screen resolution. To set your preferred figure size for future R sessions, you could call this function in your '~/.Rprofile' file.
Map an fsbrain rendering style to scimesh render options
Description
Translates fsbrain style names ("default", "shiny",
"semitransparent", "glass", "edges") to scimesh render_options()
parameters.
Usage
fsbrain_style_to_scimesh_options(
style = "default",
bg_rgba = c(1, 1, 1, 1),
width = 800L,
height = 600L
)
Arguments
style |
character string, an fsbrain style name. See
|
bg_rgba |
numeric vector of length 4, the background color in RGBA (0-1 scale). |
width |
integer, output image width in pixels. Defaults to 800. |
height |
integer, output image height in pixels. Defaults to 600. |
Value
a scimesh render options list from render_options().
Get subject names from sub directories of FreeSurfer long directory.
Description
Find all subject names for which the FreeSurfer longitudinal pipeline may have finished. These are the subjects that have the _MR1 and _MR2 directories.
Usage
fslong.subjects.detect(subjects_dir, timepoint_names = c("_MR1", "_MR2"))
Arguments
subjects_dir |
character string, path to a single recon-all longitudinal output dir from FreeSurfer. |
Find completely run FreeSurfer long subjects in a recon-all long output folder.
Description
This finds all subjects for which the FreeSurfer long pipeline finished. It can work without a subjects file, by scanning the directory names to find all potential subjects. It checks only whether the expected folder for each subject exists. For a subject named 'subject1' and 2 timepoints, these folders are checked for existence: subject1, subject1_MR1, subject1_MR2, subject1_MR1.long.subject1, subject1_MR2.long.subject1
Usage
fslong.subjects.finished(
subjects_dir,
subjects_to_check = NULL,
timepoints = seq.int(2)
)
Arguments
subjects_dir |
char, the recon-all long output directory |
subjects_to_check |
a vector of chars, the subject names (the cross-sectional names, without the '_MR1' or '_MR2' or 'long' suffixes). If NULL, the folder will be scanned for subjects, by looking for all '_MR1' folders and stripping the '_MR1' suffix. |
timepoints |
vector of integers, the timepoints to check. E.g., |
Value
a named list with entries 'subjects_okay' and 'subjects_missing_dirs'. Each of these two keys contains a vector of character strings, the respective subjects (a subset if 'subjects_to_check'). In 'subjects_okay' are all subjects for which the expected long directories were found, the rest is in 'subjects_missing_dirs'.
Transform first character of a string to uppercase.
Description
Transform first character of a string to uppercase. This is useful when labeling plots. Important: this function does not know about different encodings, languages or anything, it just calls toupper for the first character.
Usage
fup(word)
Arguments
word |
string. Any string. |
Value
string, the input string with the first character transformed to uppercase.
Examples
word_up = fup("word");
Generate test 3D volume of integers. The volume has an outer background area (intensity value 'bg') and an inner foreground areas (intensity value 200L).
Description
Generate test 3D volume of integers. The volume has an outer background area (intensity value 'bg') and an inner foreground areas (intensity value 200L).
Usage
gen.test.volume(vdim = c(256L, 256L, 256L), bg = NA)
Arguments
vdim |
integer vector of length 3, the dimensions |
bg |
value to use for outer background voxels. Typically |
Value
a 3d array of integers
Note
This function exists for software testing purposes only, you should not use it in client code.
Generate color overlay from geodesic patches around several vertices.
Description
Works across hemispheres (for a whole brain) if you pass a hemilist of meshes as parameter 'mesh', see below.
Usage
geod.patches.color.overlay(
mesh,
vertex,
color = "#FF0000",
bg_color = "#FEFEFE",
...
)
Arguments
mesh |
a single |
vertex |
positive integer (or vector of the latter), the index of the source vertex in the mesh. If a vector, the neighborhoods for all vertices will be computed separately. |
color |
single color string like |
bg_color |
character string, the background color. |
... |
extra arguments passed to |
Value
vector of color strings (or a hemilist of 2 such vectors if 'mesh' is a hemilist), an overlay suitable for visualization using vis.color.on.subject.
Examples
## Not run:
sjd = fsaverage.path(TRUE);
surfaces = subject.surface(sjd, 'fsaverage', surface = "white", hemi = "both");
colors = geod.patches.color.overlay(surfaces, vertex = c(12345L, 45L),
color = c("#FF0000", "#00FF00"), max_distance = 45.0);
vis.color.on.subject(sjd, 'fsaverage', color_lh=colors$lh, color_rh=colors$rh);
## End(Not run)
Generate color overlay from geodesic patches around several vertices for a single hemi.
Description
Generate color overlay from geodesic patches around several vertices for a single hemi.
Usage
geod.patches.color.overlay.singlehemi(
mesh,
vertex,
color = "#FF0000",
bg_color = "#FEFEFE",
...
)
Arguments
mesh |
a single |
vertex |
positive integer (or vector of the latter), the index of the source vertex in the mesh. If a vector, the neighborhoods for all vertices will be computed separately. |
color |
single color string like |
bg_color |
character string, the background color. |
... |
extra arguments passed to |
Generate per-vertex distance data from geodesic patches around several vertices.
Description
Works across hemispheres (for a whole brain) if you pass a hemilist of meshes as parameter 'mesh', see below.
Usage
geod.patches.pervertexdata(mesh, vertex, ...)
Arguments
mesh |
a single |
vertex |
positive integer (or vector of the latter), the index of the source vertex in the mesh. If a vector, the neighborhoods for all vertices will be computed separately. |
... |
extra arguments passed to |
Value
vector of doubles (or a hemilist of 2 such vectors if 'mesh' is a hemilist), the per-vertex distance data. Data for vertices outside neighborhoods will be NA.
Examples
## Not run:
sjd = fsaverage.path(TRUE);
surfaces = subject.surface(sjd, 'fsaverage',
surface = "white", hemi = "both");
res = geod.patches.pervertexdata(surfaces,
vertex = c(12345L, 45L),
max_distance = 25.0);
# res$lh and res$rh now hold the per-vertex data.
## End(Not run)
Generate per-vertex distance data from geodesic patches around several vertices for a single hemi.
Description
Generate per-vertex distance data from geodesic patches around several vertices for a single hemi.
Usage
geod.patches.pervertexdata.singlehemi(mesh, vertex, ...)
Arguments
mesh |
a single |
vertex |
positive integer (or vector of the latter), the index of the source vertex in the mesh. If a vector, the neighborhoods for all vertices will be computed separately. |
... |
extra arguments passed to |
See Also
geod.patches.pervertexdata
Compute all vertices within given geodesic distance on the mesh.
Description
Compute all vertices within given geodesic distance on the mesh.
Usage
geod.vert.neighborhood(
mesh,
vertex,
max_distance = 5,
include_max = TRUE,
return_distances = TRUE
)
Arguments
mesh |
an instance of |
vertex |
positive integer (or vector of the latter), the index of the source vertex in the mesh. If a vector, the neighborhoods for all vertices will be computed separately. |
max_distance |
double, the neighborhood size. All mesh vertices in geodesic distance smaller than / up to this distance will be returned. |
include_max |
logical, whether the max_distance value is inclusive. |
return_distances |
logical, whether to compute the 'distances' entry in the returned list. Doing so is a little bit slower, so it can be turned off if not needed. |
Value
named list with the following entries: 'vertices': integer vector, the indices of all vertices in the neigborhood. 'distances': double vector, the distances to the respective vertices (unless 'return_distances' is FALSE).
Note
This function uses the pseudo-geodesic distance along the mesh edges.
Examples
## Not run:
sjd = fsaverage.path(TRUE);
surface = subject.surface(sjd, 'fsaverage', surface = "white", hemi = "lh");
res = geod.vert.neighborhood(surface, 12345L, max_distance = 10.0);
res$vertices;
## End(Not run)
Compute the average (pseudo-) geodesic distance on the mesh from each vertex to all other vertices.
Description
Compute the average (pseudo-) geodesic distance on the mesh from each vertex to all other vertices.
Usage
geodesic.average.distance(surfaces)
Arguments
surfaces |
fs.surface instance or a |
Note
This may take a while. It requires the 'Rvcg' package.
Compute geodesic ball area and perimeter at location defined by geodists for all radii.
Description
Compute geodesic ball area and perimeter at location defined by geodists for all radii.
Usage
geodesic.ballstats(mesh, geodist, sample_at_radii)
Arguments
mesh |
tmesh3d instance |
geodist |
vector of geodesic distance for current mesh vertex under consideration (no need for the index) |
sample_at_radii |
double vector, the different ball radii for which to perform the computation |
Value
named list with entries: 'ball_area': vector of double, ball area at each sample radius. 'ball_perimeter': vector of double, ball perimeter at each sample radius.
Note
This is called from geodesic.circles, there should be no need to call it directly.
Compute geodesic circles and ball stats for given vertices.
Description
Compute geodesic circles and ball stats for given vertices.
Usage
geodesic.circles(surface, vertices = NULL, scale = 5)
Arguments
surface |
an |
vertices |
positive integer vector, the vertex indices for which to compute the stats. If NULL, it is computed for all vertices. |
scale |
double, surface area to be covered by patch in percent |
Note
This takes a while for large meshes, try it with single vertices or with a surface like fsaverage3 if you want it for all vertices. This requires the optional dependency package 'pracma'.
Examples
## Not run:
sjd = fsaverage.path(TRUE);
surface = subject.surface(sjd, 'fsaverage3', hemi='lh');
gc = geodesic.circles(surface);
vis.data.on.subject(sjd, 'fsaverage3', morph_data_lh = gc$radius);
vis.data.on.subject(sjd, 'fsaverage3', morph_data_lh = gc$perimeter);
## End(Not run)
Simple internal wrapper around Rvcg::vcgDijkstra with function check.
Description
Simple internal wrapper around Rvcg::vcgDijkstra with function check.
Usage
geodesic.dists.to.vertex(mesh, v)
Arguments
mesh |
a tmesh3d instance. |
v |
positive integer, a vertex index in the mesh. |
Value
double vector with length equal to num vertices in the mesh, the geodesic distances from all other vertices to the query vertex v.
Compute geodesic path from a source vertex to one or more target vertices.
Description
Compute geodesic path from a source vertex to one or more target vertices.
Usage
geodesic.path(surface, source_vertex, target_vertices)
Arguments
surface |
an |
source_vertex |
a scalar positive integer, the source vertex index in the mesh |
target_vertices |
single integer or vector of integers, the target vertices to which to compute the paths from the source_vertex. |
Value
list of integer vectors, the paths
Note
This can take a bit for very large graphs. This requires the optional dependency package 'Rvcg'. The backtracking is currently done in R, which is not optimal from a performance perspective. If you have a recent Rvcg version with the Rvcg::vcgGeodesicPath function, that one will be used instead, and the performance will be better.
Examples
## Not run:
sjd = fsaverage.path(TRUE);
surface = subject.surface(sjd, 'fsaverage3',
surface = "white", hemi = "lh");
p = geodesic.path(surface, 5, c(10, 20));
vis.subject.morph.native(sjd, 'fsaverage3', 'thickness', views='si');
vis.paths.along.verts(surface$vertices, p$paths, color=c("red", "yellow"));
## End(Not run)
Determine atlas region names from a subject.
Description
Determine atlas region names from a subject. WARNING: Not all subjects have all regions of an atlas. You should use an average subject like fsaverage to get all regions.
Usage
get.atlas.region.names(
atlas,
template_subjects_dir = NULL,
template_subject = "fsaverage",
hemi = "lh"
)
Arguments
atlas |
string. The atlas name. E.g., "aparc", "aparc.2009s", or "aparc.DKTatlas". Used to construct the name of the annotation file to be loaded. |
template_subjects_dir |
string. The directory containing the dir of the template_subject. E.g., the path to FREESURFER_HOME/subjects. If NULL, env vars will be searched for candidates, and the function will fail if they are not set correctly. Defaults to NULL. |
template_subject |
string. The subject identifier. Defaults to 'fsaverage'. |
hemi |
string, one of 'lh' or 'rh'. The hemisphere name. Used to construct the names of the annotation and morphometry data files to be loaded. Defaults to 'lh'. Should not matter much, unless you do not have the file for one of the hemis for some reason. |
Value
vector of strings, the region names.
See Also
Other atlas functions:
group.agg.atlas.native(),
group.agg.atlas.standard(),
group.annot(),
group.label.from.annot(),
label.from.annotdata(),
label.to.annot(),
regions.to.ignore(),
spread.values.over.annot(),
spread.values.over.hemi(),
spread.values.over.subject(),
subject.annot(),
subject.atlas.agg(),
subject.label.from.annot(),
subject.lobes()
Examples
## Not run:
fsbrain::download_optional_data();
subjects_dir = fsbrain::get_optional_data_filepath("subjects_dir");
atlas_regions = get.atlas.region.names('aparc',
template_subjects_dir=subjects_dir, template_subject='subject1');
## End(Not run)
Get the current fsbrain renderer backend
Description
Returns the current fsbrain renderer backend setting. When set
to "scimesh", fsbrain will use the scimesh software renderer instead
of rgl/OpenGL for image export. The default is "rgl". Set it with
options(fsbrain.renderer_backend = "scimesh") at the start of your
R session.
Usage
get.fsbrain.renderer.backend()
Value
character string, either "rgl" or "scimesh".
Note
Only functions that produce static PNG output are affected. Interactive viewers, animations, and the rglwidget (WebGL) always use rgl.
Examples
## Not run:
# Switch to the scimesh software renderer for headless environments
options(fsbrain.renderer_backend = "scimesh")
# Check current backend
get.fsbrain.renderer.backend()
# Switch back to rgl
options(fsbrain.renderer_backend = "rgl")
## End(Not run)
Get the anti-aliasing factor for the scimesh backend
Description
Determines the anti-aliasing (supersampling) factor that
fsbrain passes to scimesh. The value is taken from the global option
'fsbrain.scimesh.aa_samples'; when that option is unset, an explicitly set
scimesh-wide option 'scimesh.aa_samples' is used instead, so that a
session-wide scimesh setting is honored. If neither is set, fsbrain uses
FSBRAIN_SCIMESH_DEFAULT_AA (2, i.e. 2x2 supersampling).
Usage
get.fsbrain.scimesh.aa.samples()
Details
The order of precedence is:
fsbrain.scimesh.aa_samples > scimesh.aa_samples >
2 (the fsbrain default). The option is read for every render call,
so it can be changed at any time with options().
Value
single positive integer.
Examples
## Not run:
# Higher quality (4x4 supersampling) for all scimesh renders:
options(fsbrain.scimesh.aa_samples = 4);
# Back to the fsbrain default (2x2), ignoring a scimesh-wide setting:
options(fsbrain.scimesh.aa_samples = 2);
# No anti-aliasing, for fast drafts:
options(fsbrain.scimesh.aa_samples = 1);
## End(Not run)
Get the output image dimensions for the scimesh backend
Description
Get the output image dimensions for the scimesh backend
Usage
get.fsbrain.scimesh.output.dims()
Value
integer vector of length 2 (width, height), read from the global option 'fsbrain.scimesh.output_dims'. Defaults to 1920x1080.
Get the default visualization style parameters as a named list.
Description
Run material3d without arguments to see valid style keywords to create new styles.
Usage
get.rglstyle(style)
Arguments
style |
string. A style name. Available styles are one of: "default", "shiny", "semitransparent", "glass", "edges". |
Value
a style, resolved to a parameter list compatible with material3d.
Note
In addition to the style names listed above, the magic word 'from_mesh' can be passed as parameter 'style' to the rendering functions: it makes them use the style stored in the 'style' field of each individual mesh (see coloredmesh.from.color). This allows you to give individual meshes of a scene their own look, e.g., to render a cortex mesh semi-transparently behind colored data meshes, see vis.subcortical.region.values. Note that the scimesh renderer backend currently only supports the alpha channel of a style, not other material properties.
See Also
shade3d can use the returned style
Get the default visualization style parameters as a named list.
Description
The default rendering style, which is is rather plain. Does not look super fancy, but allows for clear data visualization without distractions. Hint: Run material3d without arguments to see valid style keywords to create new styles.
Usage
get.rglstyle.default()
Value
named list, style parameters that can be passed to shade3d via do.call.
Get the mesh edges visualization style parameters as a named list.
Description
Mesh edges rendering style. Zoom in enough to see them.
Usage
get.rglstyle.edges()
Value
named list, style parameters that can be passed to shade3d via do.call.
Get the glass visualization style parameters as a named list.
Description
Glass-brain rendering style. This style has a very negative impact on rendering performance (especially in interactive mode). Hint: Run material3d without arguments to see valid style keywords to create new styles.
Usage
get.rglstyle.glass()
Value
named list, style parameters that can be passed to shade3d via do.call.
Get the glass2 visualization style parameters as a named list.
Description
Glass-brain rendering style. This style has a very negative impact on rendering performance (especially in interactive mode). Hint: Run material3d without arguments to see valid style keywords to create new styles.
Usage
get.rglstyle.glass2()
Value
named list, style parameters that can be passed to shade3d via do.call.
Produce the named list of style parameters from style definition.
Description
A style definition can be a character string like "shiny", already a parameter list, or a command like 'from_mesh' that tells us to get the style from the renderable. This function creates the final parameters from the definition and the renderable. Note that a mesh which carries its own style (in its 'style' field, see coloredmesh.from.color) is rendered with that style whenever the requested style is the 'default' style: this way, scenes that assign individual styles to their meshes look as intended even if the rendering or export function is called without an explicit style.
Usage
get.rglstyle.parameters(renderable, style)
Arguments
renderable |
A renderable (or any list) which includes a 'style' key. If it does not include such a key, the 'default' style will be used. |
style |
A style definition. Can be a character string like 'shiny' or 'from_mesh', or already a named list of material properties (which will be returned as-is). |
Value
a style, resolved to a parameter list compatible with material3d.
Get the semi-transparent visualization style parameters as a named list.
Description
Semitransparent rendering style. This style has a very negative impact on rendering performance (in interactive mode). Hint: Run material3d without arguments to see valid style keywords to create new styles.
Usage
get.rglstyle.semitransparent()
Value
named list, style parameters that can be passed to shade3d via do.call.
Get a shiny visualization style.
Description
A shiny or glossy rendering style. Looks a bit more modern, but the resulting highlights may make the interpretation of the plotted data a bit harder in some areas. Hint: Run material3d without arguments to see valid style keywords to create new styles.
Usage
get.rglstyle.shiny()
Value
named list, style parameters that can be passed to to shade3d via do.call.
Compute slice indices from slice definition.
Description
Compute slice indices from slice definition.
Usage
get.slice.indices(voldim, axis, slices)
Arguments
voldim |
integer vector, the dimension of the volume |
axis |
integer, the axis |
slices |
slice index definition. If a vector of integers, interpreted as slice indices. If a single negative interger |
Value
integer vector, the computed slice indices. They are guaranteed to be valid indices into the volume.
Construct FSGD Class name from group and non-continuous covariate columns.
Description
Construct FSGD Class name from group and non-continuous covariate columns.
Usage
get.subject.class(demographics_df, row_idx, class_columns, collapse = "_")
Arguments
demographics_df |
data.frame, as returned by |
row_idx |
integer, the row in the df that belongs to this subject |
class_columns |
the column names to use |
collapse |
character string, the separator |
Value
character string, the Class name for this subject, derived from the values in the 'class_columns'.
Get list of valid view angle names.
Description
The returned strings are used as constants to identify a view of type sd_<angle>. They can be used to construct entries for the parameter views of functions like vis.subject.morph.native, or directly as parameter 'view_angles' for functions like vislayout.from.coloredmeshes.
Usage
get.view.angle.names(angle_set = "all", add_sd_prefix = TRUE)
Arguments
angle_set |
string, which view subset to return. Available subsets are: 'all' (or alias 't9'): for all 9 angles. 't4': for the t4 views. 'medial': the 2 medial views, one for each hemi. 'lateral': the 2 lateral views, one for each hemi. 'lh': medial and laterial for the left hemisphere. 'rh': medial and laterial for the right hemisphere. |
add_sd_prefix |
logical, whether the prefix 'sd_' should be added to the string. This will construct full view names. If set to false, only the substring after the prefix 'sd_' will be returned. This is used internally only and should not be needed in general. |
Value
vector of character strings, all valid view angle strings.
Retrieve values from nested named lists
Description
Retrieve values from nested named lists
Usage
getIn(named_list, listkeys, default = NULL)
Arguments
named_list |
a named list |
listkeys |
vector of character strings, the nested names of the lists |
default |
the default value to return in case the requested value is |
Value
the value at the path through the lists, or NULL (or the 'default') if no such path exists.
Examples
data = list("regions"=list("frontal"=list("thickness"=2.3, "area"=2345)));
getIn(data, c("regions", "frontal", "thickness")); # 2.3
getIn(data, c("regions", "frontal", "nosuchentry")); # NULL
getIn(data, c("regions", "nosuchregion", "thickness")); # NULL
getIn(data, c("regions", "nosuchregion", "thickness"), default=14); # 14
Access a single file from the package cache by its file name.
Description
Access a single file from the package cache by its file name.
Usage
get_optional_data_filepath(filename, mustWork = TRUE)
Arguments
filename |
string. The filename of the file in the package cache. |
mustWork |
logical. Whether an error should be created if the file does not exist. If mustWork=FALSE and the file does not exist, the empty string is returned. |
Value
string. The full path to the file in the package cache or the empty string if there is no such file available. Use this in your application code to open the file.
Aggregate native space morphometry data over brain atlas regions and subjects for a group of subjects.
Description
Aggregate native space morphometry data over brain atlas regions, e.g., compute the mean thickness value over all regions in an atlas for all subjects.
Usage
group.agg.atlas.native(
subjects_dir,
subjects_list,
measure,
hemi,
atlas,
agg_fun = mean,
cache_file = NULL
)
Arguments
subjects_dir |
string. The FreeSurfer SUBJECTS_DIR, i.e., a directory containing the data for all your subjects, each in a subdir named after the subject identifier. |
subjects_list |
string vector. A vector of subject identifiers that match the directory names within subjects_dir. |
measure |
string. Name of the vertex-wise measure of morphometry data file. E.g., "area" or "thickness". Used to construct the name of the morphometry file to be loaded. |
hemi |
string, one of 'lh', 'rh', 'split', or 'both'. The hemisphere name. Used to construct the names of the annotation and morphometry data files to be loaded. If set to 'both', combined data for 'lh' and 'rh' will be used. If 'split', the data for hte two hemispheres will go into seprate columns, with column names having 'lh_' and 'rh_' prefixes. |
atlas |
string. The atlas name. E.g., "aparc", "aparc.2009s", or "aparc.DKTatlas". Used to construct the name of the annotation file to be loaded. |
agg_fun |
function. An R function that aggregates data, typically max, mean, min or something similar. Note: this is NOT a string, put the function name without quotes. Defaults to mean. |
cache_file |
string or NULL. If given, it is interpreted as path of a file, and the data will be cached in the file cache_file in RData format. If the file does not exist yet, the function will run and cache the data in the file. If the file exists, the function will load the data from the file instead of running. The filename should end in '.RData', but that is not enforced or checked in any way. WARNING: If cached data is returned, all parameters passed to this function (with the exception of 'cache_file') are ignored! Whether the cached data is for another subjects_list or hemi is NOT checked! You have to ensure this yourself, by using different filenames. Defaults to NULL. |
Value
dataframe with aggregated values for all regions and subjects, with n columns and m rows, where n is the number of subjects and m is the number of regions.
See Also
Other aggregation functions:
group.agg.atlas.standard(),
group.morph.agg.standard.vertex(),
subject.atlas.agg()
Other atlas functions:
get.atlas.region.names(),
group.agg.atlas.standard(),
group.annot(),
group.label.from.annot(),
label.from.annotdata(),
label.to.annot(),
regions.to.ignore(),
spread.values.over.annot(),
spread.values.over.hemi(),
spread.values.over.subject(),
subject.annot(),
subject.atlas.agg(),
subject.label.from.annot(),
subject.lobes()
Examples
## Not run:
fsbrain::download_optional_data();
subjects_dir = fsbrain::get_optional_data_filepath("subjects_dir");
agg = group.agg.atlas.native(subjects_dir, c('subject1', 'subject2'),
'thickness', 'lh', 'aparc');
# Visualize the mean values. Could use any subject, typically
# one would use fsaverage. Here we use subject1:
agg$subject = NULL; # remove non-numeric column.
vis.region.values.on.subject(subjects_dir, 'subject1', 'aparc',
lh_region_value_list=colMeans(agg), rh_region_value_list=NULL);
## End(Not run)
Aggregate standard space morphometry data over brain atlas regions and subjects for a group of subjects.
Description
Aggregate standard space morphometry data over brain atlas regions, e.g., compute the mean thickness value over all regions in an atlas for all subjects.
Usage
group.agg.atlas.standard(
subjects_dir,
subjects_list,
measure,
hemi,
atlas,
fwhm,
agg_fun = mean,
template_subject = "fsaverage",
cache_file = NULL
)
Arguments
subjects_dir |
string. The FreeSurfer SUBJECTS_DIR, i.e., a directory containing the data for all your subjects, each in a subdir named after the subject identifier. |
subjects_list |
string vector. A vector of subject identifiers that match the directory names within subjects_dir. |
measure |
string. Name of the vertex-wise measure of morphometry data file. E.g., "area" or "thickness". Used to construct the name of the morphometry file to be loaded. |
hemi |
string, one of 'lh', 'rh', or 'both'. The hemisphere name. Used to construct the names of the annotation and morphometry data files to be loaded. If set to 'both', combined data for 'lh' and 'rh' will be used. |
atlas |
string. The atlas name. E.g., "aparc", "aparc.2009s", or "aparc.DKTatlas". Used to construct the name of the annotation file to be loaded. |
fwhm |
string. The smoothing setting which was applied when mapping data to the template subject. Usually one of '0', '5', '10', '15', '20', or '25'. |
agg_fun |
function. An R function that aggregates data, typically max, mean, min or something similar. Note: this is NOT a string, put the function name without quotes. Defaults to mean. |
template_subject |
string. The template subject name. Defaults to 'fsaverage'. Must have its data in subjects_dir. |
cache_file |
string or NULL. If given, it is interpreted as path of a file, and the data will be cached in the file cache_file in RData format. If the file does not exist yet, the function will run and cache the data in the file. If the file exists, the function will load the data from the file instead of running. The filename should end in '.RData', but that is not enforced or checked in any way. WARNING: If cached data is returned, all parameters passed to this function (with the exception of 'cache_file') are ignored! Whether the cached data is for another subjects_list or hemi is NOT checked! You have to ensure this yourself, by using different filenames. Defaults to NULL. |
Value
dataframe with aggregated values for all regions and subjects, with n columns and m rows, where n is the number of subjects and m is the number of regions.
See Also
Other aggregation functions:
group.agg.atlas.native(),
group.morph.agg.standard.vertex(),
subject.atlas.agg()
Other atlas functions:
get.atlas.region.names(),
group.agg.atlas.native(),
group.annot(),
group.label.from.annot(),
label.from.annotdata(),
label.to.annot(),
regions.to.ignore(),
spread.values.over.annot(),
spread.values.over.hemi(),
spread.values.over.subject(),
subject.annot(),
subject.atlas.agg(),
subject.label.from.annot(),
subject.lobes()
Examples
## Not run:
fsbrain::download_optional_data();
subjects_dir = fsbrain::get_optional_data_filepath("subjects_dir");
agg = group.agg.atlas.standard(subjects_dir, c('subject1', 'subject2'),
'thickness', 'lh', 'aparc', fwhm='10');
# Visualize the mean values. Could use any subject, typically
# one would use fsaverage. Here we use subject1:
agg$subject = NULL; # remove non-numeric column.
vis.region.values.on.subject(subjects_dir, 'subject1', 'aparc',
lh_region_value_list=colMeans(agg), rh_region_value_list=NULL);
## End(Not run)
Load annotations for a group of subjects.
Description
Load a brain surface annotation, i.e., a cortical parcellation based on an atlas, for a group of subjects.
Usage
group.annot(subjects_dir, subjects_list, hemi, atlas)
Arguments
subjects_dir |
string. The FreeSurfer SUBJECTS_DIR, i.e., a directory containing the data for all your subjects, each in a subdir named after the subject identifier. |
subjects_list |
vector of strings. The subject identifiers. |
hemi |
string, one of 'lh' or 'rh'. The hemisphere name. Used to construct the names of the annotation and morphometry data files to be loaded. |
atlas |
string. The atlas name. E.g., "aparc", "aparc.2009s", or "aparc.DKTatlas". Used to construct the name of the annotation file to be loaded. |
Value
list of annotations, as returned by freesurferformats::read.fs.annot(). If hemi is 'both', the annotations are the results of merging over the hemispheres for each subject.
See Also
Other atlas functions:
get.atlas.region.names(),
group.agg.atlas.native(),
group.agg.atlas.standard(),
group.label.from.annot(),
label.from.annotdata(),
label.to.annot(),
regions.to.ignore(),
spread.values.over.annot(),
spread.values.over.hemi(),
spread.values.over.subject(),
subject.annot(),
subject.atlas.agg(),
subject.label.from.annot(),
subject.lobes()
Examples
## Not run:
fsbrain::download_optional_data();
subjects_dir = fsbrain::get_optional_data_filepath("subjects_dir");
subjects_list = c("subject1", "subject2");
annotations = group.annot(subjects_dir, subjects_list, "lh", "aparc");
## End(Not run)
Concatenate native space data for a group of subjects.
Description
A measure is something like 'thickness' or 'area'. This function concatenates the native space data for all subjects into a single long vector for each measure. A dataframe is then created, in which each column is one such vector. This can be used to compute the correlation between measures on vertex level, for example.
Usage
group.concat.measures.native(
subjects_dir,
subjects_list,
measures,
hemi,
cortex_only = FALSE
)
Arguments
subjects_dir |
string. The FreeSurfer SUBJECTS_DIR, i.e., a directory containing the data for all your subjects, each in a subdir named after the subject identifier. |
subjects_list |
string vector. A vector of subject identifiers that match the directory names within subjects_dir. |
measures |
vector of strings. Names of the vertex-wise morhometry measures. E.g., c("area", "thickness"). Used to construct the names of the morphometry file to be loaded. The data of each measure will be one column in the resulting dataframe. |
hemi |
string, one of 'lh', 'rh' or 'both'. The hemisphere name. Used to construct the names of the annotation and morphometry data files to be loaded. |
cortex_only |
logical, whether to set non-cortex data to NA |
Value
dataframe with concatenated vertex values. Each column contains the values for one measure, concatenated for all subjects. WARNING: This dataframe can get large if you have many subjects.
See Also
Other concatination functions:
group.concat.measures.standard()
Examples
## Not run:
fsbrain::download_optional_data();
subjects_dir = fsbrain::get_optional_data_filepath("subjects_dir");
subjects_list = c('subject1', 'subject2');
cm = group.concat.measures.native(subjects_dir, subjects_list,
c("thickness", "area"), "lh");
## End(Not run)
Concatenate standard space data for a group of subjects.
Description
A measure is something like 'thickness' or 'area'. This function concatenates the standard space data for all subjects into a single long vector for each measure. A dataframe is then created, in which each column is one such vector. This can be used to compute the correlation between measures on vertex level, for example.
Usage
group.concat.measures.standard(
subjects_dir,
subjects_list,
measures,
hemi,
fwhm_per_measure,
cortex_only = FALSE
)
Arguments
subjects_dir |
string. The FreeSurfer SUBJECTS_DIR, i.e., a directory containing the data for all your subjects, each in a subdir named after the subject identifier. |
subjects_list |
string vector. A vector of subject identifiers that match the directory names within subjects_dir. |
measures |
vector of strings. Names of the vertex-wise morhometry measures. E.g., c("area", "thickness"). Used to construct the names of the morphometry file to be loaded. The data of each measure will be one column in the resulting dataframe. |
hemi |
string, one of 'lh', 'rh' or 'both'. The hemisphere name. Used to construct the names of the annotation and morphometry data files to be loaded. |
fwhm_per_measure |
vector of strings. The fwhm settings to use, for each measure. If this is a string instead of a vector of strings, the same fwhm will be used for all measures. |
cortex_only |
logical, whether to set non-cortex data to NA |
Value
dataframe with concatenated vertex values. Each column contains the values for one measure, concatenated for all subjects. The column names are a concatination of the measure, "_fwhm", and the fwhm for that measure. WARNING: This dataframe can get large if you have many subjects.
See Also
Other concatination functions:
group.concat.measures.native()
Examples
## Not run:
fsbrain::download_optional_data();
subjects_dir = fsbrain::get_optional_data_filepath("subjects_dir");
subjects_list = c('subject1', 'subject2');
cm = group.concat.measures.standard(subjects_dir, subjects_list,
c("thickness", "area"), "lh", "10");
## End(Not run)
Convert group 2D data (1 vector per subject) to 4D array format.
Description
In general, 1D morphometry data for a group can be stored in a dataframe, a named list, or already a 4D array. This function will convert the given format to 4D array format.
Usage
group.data.to.array(data)
Arguments
data |
2D matrix, named list, or data.frame of group data. The data is expected to be a vector (1D) per subject, as suitable for surface based (vertex-wise) measures. Subjects in rows, per-vertex data in columns. |
Value
the 4D array form of the group data. No values are changed, this is only a different data layout. In neuroimaging, the first 3 dimensions are space, and the 4th is the time/subject dimension.
Examples
# create per-vertex data for 255 subjects.
mat = matrix(rnorm(255 * 163842, 3.0, 0.5), nrow=255, ncol = 163842);
fsbrain:::group.data.to.array(mat);
Retrieve label data for a group of subjects.
Description
Load a label (like 'label/lh.cortex.label') for a group of subjects from disk. Uses knowledge about the FreeSurfer directory structure to load the correct file.
Usage
group.label(
subjects_dir,
subjects_list,
label,
hemi,
return_one_based_indices = TRUE
)
Arguments
subjects_dir |
string. The FreeSurfer SUBJECTS_DIR, i.e., a directory containing the data for all your subjects, each in a subdir named after the subject identifier. |
subjects_list |
vector of strings. The subject identifiers. |
label |
string. Name of the label file, without the hemi part (if any), but including the '.label' suffix. E.g., 'cortex.label' for '?h.cortex.label' |
hemi |
string, one of 'lh' or 'rh'. The hemisphere name. Used to construct the names of the label data files to be loaded. |
return_one_based_indices |
logical. Whether the indices should be 1-based. Indices are stored zero-based in the file, but R uses 1-based indices. Defaults to TRUE, which means that 1 will be added to all indices read from the file before returning them. |
Value
named list of integer vectors with label data: Each name is a subject identifier from subjects_list, and the values are lists of the vertex indices in the respective label. See 'return_one_based_indices' for important information.
See Also
Other label data functions:
labeldata.from.mask(),
mask.from.labeldata.for.hemi(),
subject.label()
Examples
## Not run:
fsbrain::download_optional_data();
subjects_dir = fsbrain::get_optional_data_filepath("subjects_dir");
subjects_list = c("subject1", "subject2");
labels = group.label(subjects_dir, subjects_list, 'cortex.label', "lh");
## End(Not run)
Extract a region from an atlas annotation as a label for a group of subjects.
Description
The returned label can be used to mask morphometry data, e.g., to set the values of a certain region to NaN or to extract only values from a certain region.
Usage
group.label.from.annot(
subjects_dir,
subjects_list,
hemi,
atlas,
region,
return_one_based_indices = TRUE,
invert = FALSE,
error_on_invalid_region = TRUE
)
Arguments
subjects_dir |
string. The FreeSurfer SUBJECTS_DIR, i.e., a directory containing the data for all your subjects, each in a subdir named after the subject identifier. |
subjects_list |
vector of string. The subject identifiers. |
hemi |
string, one of 'lh' or 'rh'. The hemisphere name. Used to construct the names of the label data files to be loaded. |
atlas |
string. The atlas name. E.g., "aparc", "aparc.2009s", or "aparc.DKTatlas". Used to construct the name of the annotation file to be loaded. |
region |
string. A valid region name for the annotation, i.e., one of the regions of the atlas. |
return_one_based_indices |
logical. Whether the indices should be 1-based. Indices are stored zero-based in label files, but R uses 1-based indices. Defaults to TRUE. |
invert |
logical. If TRUE, return the indices of all vertices which are NOT part of the region. Defaults to FALSE. |
error_on_invalid_region |
logical. Whether to throw an error if the given region does not appear in the region list of the annotation. If set to FALSE, this will be ignored and an empty vertex list will be returned. Defaults to TRUE. |
Value
named list of integer vectors with label data: for each subject, the list of vertex indices in the label.
See Also
Other atlas functions:
get.atlas.region.names(),
group.agg.atlas.native(),
group.agg.atlas.standard(),
group.annot(),
label.from.annotdata(),
label.to.annot(),
regions.to.ignore(),
spread.values.over.annot(),
spread.values.over.hemi(),
spread.values.over.subject(),
subject.annot(),
subject.atlas.agg(),
subject.label.from.annot(),
subject.lobes()
Aggregate native space morphometry data over one hemisphere for a group of subjects.
Description
Compute the mean (or other aggregates) over all vertices of a subject from native space morphometry data (like 'surf/lh.area'). Uses knowledge about the FreeSurfer directory structure to load the correct file.
Usage
group.morph.agg.native(
subjects_dir,
subjects_list,
measure,
hemi,
agg_fun = mean,
cast = TRUE,
format = "curv",
cortex_only = FALSE,
agg_fun_extra_params = NULL
)
Arguments
subjects_dir |
string. The FreeSurfer SUBJECTS_DIR, i.e., a directory containing the data for all your subjects, each in a subdir named after the subject identifier. |
subjects_list |
string vector. A vector of subject identifiers that match the directory names within subjects_dir. |
measure |
string. Name of the vertex-wise measure of morphometry data file. E.g., "area" or "thickness". Used to construct the name of the morphometry file to be loaded. |
hemi |
string, one of 'lh', 'rh' or 'both'. The hemisphere name. Used to construct the names of the annotation and morphometry data files to be loaded. |
agg_fun |
function. An R function that aggregates data, typically |
cast |
Whether a separate 'hemi' column should exist. |
format |
string. One of 'mgh', 'mgz', 'curv'. Defaults to 'mgh'. |
cortex_only |
logical, whether to mask the medial wall, i.e., whether the morphometry data for all vertices which are not part of the cortex (as defined by the label file |
agg_fun_extra_params |
named list, extra parameters to pass to the aggregation function 'agg_fun' besides the loaded morphometry data. This is useful if you have masked the data and need to ignore NA values in the agg_fun. |
Value
dataframe with aggregated values for all subjects, with 3 columns and n rows, where n is the number of subjects. The 3 columns are 'subject_id', 'hemi', and '<measure>' (e.g., "thickness"), the latter contains the aggregated data.
See Also
Other global aggregation functions:
group.morph.agg.standard(),
group.multimorph.agg.native(),
group.multimorph.agg.standard()
Examples
## Not run:
fsbrain::download_optional_data();
subjects_dir = fsbrain::get_optional_data_filepath("subjects_dir");
subjects_list = c("subject1", "subject2");
fulldata = group.morph.agg.native(subjects_dir, subjects_list, "thickness", "lh");
head(fulldata);
## End(Not run)
Aggregate standard space (fsaverage) morphometry data over one hemisphere for a group of subjects.
Description
Compute the mean (or other aggregates) over all vertices of a subject from standard space morphometry data (like 'surf/lh.area.fwhm10.fsaverage.mgh'). Uses knowledge about the FreeSurfer directory structure to load the correct file.
Usage
group.morph.agg.standard(
subjects_dir,
subjects_list,
measure,
hemi,
fwhm,
agg_fun = mean,
template_subject = "fsaverage",
format = "mgh",
cast = TRUE,
cortex_only = FALSE,
agg_fun_extra_params = NULL
)
Arguments
subjects_dir |
string. The FreeSurfer SUBJECTS_DIR, i.e., a directory containing the data for all your subjects, each in a subdir named after the subject identifier. |
subjects_list |
string vector. A vector of subject identifiers that match the directory names within subjects_dir. |
measure |
string. Name of the vertex-wise measure of morphometry data file. E.g., "area" or "thickness". Used to construct the name of the morphometry file to be loaded. |
hemi |
string, one of 'lh', 'rh' or 'both'. The hemisphere name. Used to construct the names of the annotation and morphometry data files to be loaded. |
fwhm |
string. Smoothing as string, e.g. '10' or '25'. |
agg_fun |
function. An R function that aggregates data, typically |
template_subject |
string. Template subject name, defaults to 'fsaverage'. |
format |
string. One of 'mgh', 'mgz', 'curv'. Defaults to 'mgh'. |
cast |
Whether a separate 'hemi' column should exist. |
cortex_only |
logical, whether to mask the medial wall, i.e., whether the morphometry data for all vertices which are not part of the cortex (as defined by the label file |
agg_fun_extra_params |
named list, extra parameters to pass to the aggregation function 'agg_fun' besides the loaded morphometry data. This is useful if you have masked the data and need to ignore NA values in the agg_fun. |
Value
dataframe with aggregated values for all subjects, with 2 columns and n rows, where n is the number of subjects. The 2 columns are 'subject_id' and '<hemi>.<measure>' (e.g., "lh.thickness"), the latter contains the aggregated data.
See Also
Other global aggregation functions:
group.morph.agg.native(),
group.multimorph.agg.native(),
group.multimorph.agg.standard()
Aggregate standard space morphometry data over subjects.
Description
Aggregate vertex-wise values over subjects, leading to one aggregated measure per vertex.
Usage
group.morph.agg.standard.vertex(
subjects_dir,
subjects_list,
measure,
hemi,
fwhm,
agg_fun = mean,
template_subject = "fsaverage",
format = "mgh",
cortex_only = FALSE,
agg_fun_extra_params = NULL,
split_by_hemi = FALSE
)
Arguments
subjects_dir |
string. The FreeSurfer SUBJECTS_DIR, i.e., a directory containing the data for all your subjects, each in a subdir named after the subject identifier. |
subjects_list |
string vector. A vector of subject identifiers that match the directory names within subjects_dir. |
measure |
string. Name of the vertex-wise measure of morphometry data file. E.g., "area" or "thickness". Used to construct the name of the morphometry file to be loaded. |
hemi |
string, one of 'lh', 'rh' or 'both'. The hemisphere name. Used to construct the names of the annotation and morphometry data files to be loaded. |
fwhm |
string. Smoothing as string, e.g. '10' or '25'. |
agg_fun |
function. An R function that aggregates data, typically |
template_subject |
string. Template subject name, defaults to 'fsaverage'. |
format |
string. One of 'mgh', 'mgz', 'curv'. Defaults to 'mgh'. |
cortex_only |
logical, whether to mask the medial wall, i.e., whether the morphometry data for all vertices which are not part of the cortex (as defined by the label file |
agg_fun_extra_params |
named list, extra parameters to pass to the aggregation function 'agg_fun' besides the loaded morphometry data. This is useful if you have masked the data and need to ignore NA values in the agg_fun. |
split_by_hemi |
logical, whether to return a hemilist |
See Also
Other aggregation functions:
group.agg.atlas.native(),
group.agg.atlas.standard(),
subject.atlas.agg()
Retrieve native space morphometry data for a group of subjects.
Description
Load native space morphometry data (like 'surf/lh.area') for a group of subjects from disk. Uses knowledge about the FreeSurfer directory structure to load the correct file.
Usage
group.morph.native(
subjects_dir,
subjects_list,
measure,
hemi,
format = "curv",
cortex_only = FALSE
)
Arguments
subjects_dir |
string. The FreeSurfer SUBJECTS_DIR, i.e., a directory containing the data for all your subjects, each in a subdir named after the subject identifier. |
subjects_list |
vector of strings. The subject identifiers. |
measure |
string. Name of the vertex-wise measure of morphometry data file. E.g., "area" or "thickness". Used to construct the name of the morphometry file to be loaded. |
hemi |
string, one of 'lh', 'rh' or 'both'. The hemisphere name. Used to construct the names of the annotation and morphometry data files to be loaded. |
format |
string. One of 'mgh', 'mgz', 'curv'. Defaults to 'curv'. |
cortex_only |
logical, whether to mask the medial wall, i.e., whether the morphometry data for all vertices which are not part of the cortex (as defined by the label file |
Value
named list with native space morph data, the names are the subject identifiers from the subjects_list, and the values are morphometry data vectors (of different length, as each subject has a different vertex count in native space).
See Also
Other morphometry data functions:
apply.label.to.morphdata(),
apply.labeldata.to.morphdata(),
group.morph.standard(),
subject.morph.native(),
subject.morph.standard()
Examples
## Not run:
fsbrain::download_optional_data();
subjects_dir = fsbrain::get_optional_data_filepath("subjects_dir");
subjects_list = c("subject1", "subject2");
data = group.morph.native(subjects_dir, subjects_list, "thickness", "lh");
## End(Not run)
Retrieve standard space morphometry data for a group of subjects.
Description
Load standard space morphometry data (like 'surf/lh.area') for a group of subjects from disk. Uses knowledge about the FreeSurfer directory structure to load the correct file.
Usage
group.morph.standard(
subjects_dir,
subjects_list,
measure,
hemi = "both",
fwhm = "10",
template_subject = "fsaverage",
format = "mgh",
cortex_only = FALSE,
df = FALSE,
df_t = FALSE
)
Arguments
subjects_dir |
string. The FreeSurfer SUBJECTS_DIR, i.e., a directory containing the data for all your subjects, each in a subdir named after the subject identifier. |
subjects_list |
vector of strings. The subject identifiers. |
measure |
string. Name of the vertex-wise measure of morphometry data file. E.g., "area" or "thickness". Used to construct the name of the morphometry file to be loaded. |
hemi |
string, one of 'lh', 'rh' or 'both'. The hemisphere name. Used to construct the names of the annotation and morphometry data files to be loaded. |
fwhm |
string. Smoothing as string, e.g. '10' or '25'. |
template_subject |
string. Template subject name, defaults to 'fsaverage'. |
format |
string. One of 'mgh', 'mgz', 'curv'. Defaults to 'mgh'. |
cortex_only |
logical, whether to mask the medial wall, i.e., whether the morphometry data for all vertices which are not part of the cortex (as defined by the label file |
df |
logical, whether to return a dataframe instead of the named list. The dataframe will have one subject per column, and n rows, where n is the number of vertices of the template subject surface. |
df_t |
logical, whether to return a transposed dataframe. Only one of df or df_t must be TRUE. |
Value
named list with standard space morph data, the names are the subject identifiers from the subjects_list, and the values are morphometry data vectors (all with identical length, the data is mapped to a template subject).
See Also
Other morphometry data functions:
apply.label.to.morphdata(),
apply.labeldata.to.morphdata(),
group.morph.native(),
subject.morph.native(),
subject.morph.standard()
Examples
## Not run:
fsbrain::download_optional_data();
subjects_dir = fsbrain::get_optional_data_filepath("subjects_dir");
subjects_list = c("subject1", "subject2");
fulldata = group.morph.standard(subjects_dir, subjects_list, "thickness", "lh", fwhm='10');
mean(fulldata$subject1);
cortexdata = group.morph.standard(subjects_dir, subjects_list, "thickness",
"lh", fwhm='10', cortex_only=FALSE);
mean(cortexdata$subject1, na.rm=TRUE);
## End(Not run)
Read combined data for a group from a single file.
Description
Read morphometry data for a group from a matrix in a single MGH or MGZ file.
Usage
group.morph.standard.sf(filepath, df = TRUE)
Arguments
filepath |
character string, path to a file in MGH or MGZ format |
df |
logical, whether to return a data.frame, like |
Value
dataframe or 4d matrix, the morph data. See parameter 'df' for details.
Note
The file has typically been generated by running mris_preproc and/or mri_surf2surf on the command line, or written from R using write.group.morph.standard.sf. The file contains no information on the subject identifiers, you need to know the subjects and their order in the file. Same goes for the hemisphere.
See Also
write.group.morph.standard.mf to write the data to one file per hemi per subject instead. If you have created the input data file in FreeSurfer based on an FSGD file, you can read the subject identifiers from that FSGD file using read.md.subjects.from.fsgd.
Aggregate native space morphometry data for multiple measures over hemispheres for a group of subjects.
Description
Compute the mean (or other aggregates) over all vertices of a subject from native space morphometry data (like 'surf/lh.area'). You can specify several measures and hemispheres. Uses knowledge about the FreeSurfer directory structure to load the correct files.
Usage
group.multimorph.agg.native(
subjects_dir,
subjects_list,
measures,
hemis,
agg_fun = mean,
format = "curv",
cast = TRUE,
cortex_only = FALSE,
agg_fun_extra_params = NULL
)
Arguments
subjects_dir |
string. The FreeSurfer SUBJECTS_DIR, i.e., a directory containing the data for all your subjects, each in a subdir named after the subject identifier. |
subjects_list |
string vector. A vector of subject identifiers that match the directory names within subjects_dir. |
measures |
vector of strings. Names of the vertex-wise morphometry measures. E.g., c("area", "thickness"). Used to construct the names of the morphometry file to be loaded. |
hemis |
string, one of 'lh', 'rh' or 'both'. The hemisphere name. Used to construct the names of the annotation and morphometry data files to be loaded. |
agg_fun |
function. An R function that aggregates data, typically |
format |
string. One of 'mgh', 'mgz', 'curv'. Defaults to 'mgh'. |
cast |
Whether a separate 'hemi' column should exist. |
cortex_only |
logical, whether to mask the medial wall, i.e., whether the morphometry data for all vertices which are not part of the cortex (as defined by the label file |
agg_fun_extra_params |
named list, extra parameters to pass to the aggregation function 'agg_fun' besides the loaded morphometry data. This is useful if you have masked the data and need to ignore NA values in the agg_fun. |
Value
dataframe with aggregated values over all measures and hemis for all subjects, with m columns and n rows, where n is the number of subjects. The m columns are 'subject_id' and '<hemi>.<measure>' (e.g., "lh.thickness") for all combinations of hemi and measure, the latter contains the aggregated data.
See Also
Other global aggregation functions:
group.morph.agg.native(),
group.morph.agg.standard(),
group.multimorph.agg.standard()
Examples
## Not run:
subjects_dir = fsbrain::get_optional_data_filepath("subjects_dir");
subjects_list = c("subject1", "subject2")
data = group.multimorph.agg.native(subjects_dir, subjects_list, c("thickness", "area"),
c("lh", "rh"), cast=FALSE, cortex_only=TRUE, agg_fun=mean,
agg_fun_extra_params=list("na.rm"=TRUE));
head(data);
## End(Not run)
Aggregate standard space (fsaverage) morphometry data for multiple measures over hemispheres for a group of subjects.
Description
Compute the mean (or other aggregates) over all vertices of a subject from standard space morphometry data (like 'surf/lh.area.fwhm10.fsaverage.mgh'). You can specify several measures and hemispheres. Uses knowledge about the FreeSurfer directory structure to load the correct files.
Usage
group.multimorph.agg.standard(
subjects_dir,
subjects_list,
measures,
hemis,
fwhm,
agg_fun = mean,
template_subject = "fsaverage",
format = "mgh",
cast = TRUE,
cortex_only = FALSE,
agg_fun_extra_params = NULL
)
Arguments
subjects_dir |
string. The FreeSurfer SUBJECTS_DIR, i.e., a directory containing the data for all your subjects, each in a subdir named after the subject identifier. |
subjects_list |
string vector. A vector of subject identifiers that match the directory names within subjects_dir. |
measures |
vector of strings. Names of the vertex-wise morphometry measures. E.g., c("area", "thickness"). Used to construct the names of the morphometry file to be loaded. |
hemis |
string, one of 'lh', 'rh' or 'both'. The hemisphere name. Used to construct the names of the annotation and morphometry data files to be loaded. |
fwhm |
string. Smoothing as string, e.g. '10' or '25'. |
agg_fun |
function. An R function that aggregates data, typically |
template_subject |
string. Template subject name, defaults to 'fsaverage'. |
format |
string. One of 'mgh', 'mgz', 'curv'. Defaults to 'mgh'. |
cast |
Whether a separate 'hemi' column should exist. |
cortex_only |
logical, whether to mask the medial wall, i.e., whether the morphometry data for all vertices which are not part of the cortex (as defined by the label file |
agg_fun_extra_params |
named list, extra parameters to pass to the aggregation function 'agg_fun' besides the loaded morphometry data. This is useful if you have masked the data and need to ignore NA values in the agg_fun. |
Value
dataframe with aggregated values over all measures and hemis for all subjects, with m columns and n rows, where n is the number of subjects. The m columns are 'subject_id' and '<hemi>.<measure>' (e.g., "lh.thickness") for all combinations of hemi and measure, the latter contains the aggregated data.
See Also
Other global aggregation functions:
group.morph.agg.native(),
group.morph.agg.standard(),
group.multimorph.agg.native()
Compute the first row of every group in a concatenated matrix.
Description
Compute the first row of every group in a concatenated matrix.
Usage
group.start.rows(lengths)
Arguments
lengths |
integer vector, the number of rows of each group. |
Value
integer vector with one entry per group.
Retrieve surface mesh data for a group of subjects.
Description
Retrieve surface mesh data for a group of subjects.
Usage
group.surface(
subjects_dir,
subjects_list,
surface,
hemi = "both",
force_hemilist = TRUE
)
Arguments
subjects_dir |
string. The FreeSurfer SUBJECTS_DIR, i.e., a directory containing the data for all your subjects, each in a subdir named after the subject identifier. |
subjects_list |
vector of strings. The subject identifiers. |
surface |
character string, the surface to load. Something like 'white' or 'pial'. |
hemi |
string, one of 'lh', 'rh' or 'both'. The hemisphere name. Used to construct the names of the mesh files to be loaded. |
force_hemilist |
logical, whether to force the individual values inside the named return value list to be hemilists (even if the 'hemi' parameter is not set to 'both'). If this is FALSE, the inner values will contain the respective (lh or rh) surface only. |
Value
named list of surfaces: Each name is a subject identifier from subjects_list, and the values are hemilists of fs.surface instances.
Examples
## Not run:
fsbrain::download_optional_data();
subjects_dir = fsbrain::get_optional_data_filepath("subjects_dir");
subjects_list = c("subject1", "subject2");
surfaces = group.surface(subjects_dir, subjects_list, 'white', "both");
## End(Not run)
Split a per-vertex group data matrix for both hemispheres into a hemilist at given index.
Description
Split a per-vertex group data matrix for both hemispheres into a hemilist at given index.
Usage
groupmorph.split.hemilist(data, numverts_lh)
Arguments
data |
numerical matrix or dataframe of per-vertex data, with subjects in columns |
numverts_lh |
scalar positive integer, the number of vertices in the left hemisphere mesh (defining the index where to split). |
Value
hemilist of the data, split at the index.
Examples
## Not run:
fsbrain::download_optional_data();
fsbrain::download_fsaverage(TRUE);
subjects_dir = fsbrain::get_optional_data_filepath("subjects_dir");
subjects_list = c("subject1", "subject2");
data = group.morph.standard(subjects_dir, subjects_list, "thickness", "lh", fwhm='10');
numverts_lh = subject.num.verts(subjects_dir, "fsaverage", hemi="lh");
data_hemilist = groupmorph.split.hemilist(data, numverts_lh);
## End(Not run)
Highlight requested points (if any), for camera-based views.
Description
Places the requested highlight points as spheres at their native coordinates. Camera-based views keep the meshes unrotated and apply the view rotation via the camera, so highlight points must NOT be rotated (this matches the scimesh backend). See dev_tools/TODO_FSBRAIN_RGL_CAM.md.
Usage
handle.rglactions.highlight.points(rglactions, hemi = "both")
Arguments
hemi |
character string, one of 'lh', 'rh' or 'both'. If lh or rh, plots only points from that hemi (if hemi info is available for the points). |
Check for values in nested named lists
Description
Check for values in nested named lists
Usage
hasIn(named_list, listkeys)
Arguments
named_list |
a named list |
listkeys |
vector of character strings, the nested names of the lists |
Value
whether a non-NULL value exists at the path
Examples
data = list("regions"=list("frontal"=list("thickness"=2.3, "area"=2345)));
hasIn(data, c("regions", "nosuchregion")); # FALSE
Compute lobe labels for a single hemi from aparc atlas.
Description
Compute lobe labels for a single hemi from aparc atlas.
Usage
hemi.lobe.labels(
subjects_dir,
subject_id,
hemi,
include_cingulate = TRUE,
as_annot = FALSE
)
Arguments
subjects_dir |
string. The FreeSurfer SUBJECTS_DIR, i.e., a directory containing the data for all your subjects, each in a subdir named after the subject identifier. |
subject_id |
string. The subject identifier |
hemi |
string, one of 'lh' or 'rh'. The hemisphere name. |
include_cingulate |
logical, whether to include the vertices of the cingulate in the lobes |
as_annot |
return a hemilist of annotations instead of the return value described in the value section |
Note
See subject.lobes for details.
Create a hemilist from lh and rh data.
Description
Simply runs list('lh' = lh_data, 'rh' = rh_data): A hemilist (short for hemisphere list) is just a named list with entries 'lh' and/or 'rh', which may contain anything. Hemilists are used as parameters and return values in many fsbrain functions. The 'lh' and 'rh' keys typically contain surfaces or vectors of morphometry data.
Usage
hemilist(lh_data = NULL, rh_data = NULL)
Arguments
lh_data |
something to wrap, typically some data for a hemisphere, e.g., a vector of morphometry data values. |
rh_data |
something to wrap, typically some data for a hemisphere, e.g., a vector of morphometry data values. |
Value
named list, with the 'lh_data' in the 'lh' key and the 'rh_data' in the 'rh' key.
See Also
Other hemilist functions:
hemilist.derive.hemi(),
hemilist.from.prefixed.list(),
hemilist.get.combined.data(),
hemilist.unwrap(),
hemilist.wrap(),
is.hemilist()
Examples
lh_data = rnorm(163842, 5.0, 1.0);
rh_data = rnorm(163842, 5.0, 1.0);
hl = hemilist(lh_data, rh_data);
Derive 'hemi' string from the data in a hemilist
Description
Derive 'hemi' string from the data in a hemilist
Usage
hemilist.derive.hemi(hemilist)
Arguments
hemilist |
hemilist, an existing hemilist |
Value
character string, one of 'lh', 'rh' or 'both'
Note
See hemilist for details.
See Also
Other hemilist functions:
hemilist(),
hemilist.from.prefixed.list(),
hemilist.get.combined.data(),
hemilist.unwrap(),
hemilist.wrap(),
is.hemilist()
Create a hemilist from a named list with keys prefixed with 'lh_' and 'rh_'.
Description
A hemilist is a named list with entries 'lh' and/or 'rh', see hemilist.
Usage
hemilist.from.prefixed.list(
named_list,
report_ignored = TRUE,
return_ignored = FALSE
)
Arguments
named_list |
a named list, the keys must start with 'lh_' or 'rh_' to be assigned to the 'lh' and 'rh' entries of the returned hemilist. Other entries will be ignored. |
report_ignored |
logical, whether to print a message with the ignored entries, if any. |
return_ignored |
logical, whether to add a key 'ignored' to the returned hemilist, containing the ignored entries. |
Value
a hemilist
See Also
Other hemilist functions:
hemilist(),
hemilist.derive.hemi(),
hemilist.get.combined.data(),
hemilist.unwrap(),
hemilist.wrap(),
is.hemilist()
Get combined data of hemi list
Description
Get combined data of hemi list
Usage
hemilist.get.combined.data(hemi_list)
Arguments
hemi_list |
named list, can have entries 'lh' and/or 'rh', see |
Value
the data combined with c, or NULL if both entries are NULL.
See Also
Other hemilist functions:
hemilist(),
hemilist.derive.hemi(),
hemilist.from.prefixed.list(),
hemilist.unwrap(),
hemilist.wrap(),
is.hemilist()
Unwrap hemi data from a named hemi list.
Description
Unwrap hemi data from a named hemi list.
Usage
hemilist.unwrap(hemi_list, hemi = NULL, allow_null_list = FALSE)
Arguments
hemi_list |
named list, can have entries 'lh' and/or 'rh', see |
hemi |
character string, the hemi data name to retrieve from the list. Can be NULL if the list only has a single entry. |
allow_null_list |
logical, whether to silently return NULL instead of raising an error if 'hemi_list' is NULL |
Value
the data
See Also
Other hemilist functions:
hemilist(),
hemilist.derive.hemi(),
hemilist.from.prefixed.list(),
hemilist.get.combined.data(),
hemilist.wrap(),
is.hemilist()
Wrap data into a named hemi list.
Description
Wrap data into a named hemi list.
Usage
hemilist.wrap(data, hemi, hemilist = NULL)
Arguments
data |
something to wrap, typically some data for a hemisphere, e.g., a vector of morphometry data values. If NULL, the name will not be created. |
hemi |
character string, one of 'lh' or 'rh'. The name to use for the data in the returned list. |
hemilist |
optional |
Value
a hemilist: a named list, with the 'data' in the name given by parameter 'hemi'
See Also
Other hemilist functions:
hemilist(),
hemilist.derive.hemi(),
hemilist.from.prefixed.list(),
hemilist.get.combined.data(),
hemilist.unwrap(),
is.hemilist()
title Ensure an key for a hemilist exists.
Description
title Ensure an key for a hemilist exists.
Usage
hemlist.ensure.contains(hemilist, required_hemi, error_tag = "")
Arguments
hemilist |
a hemilist |
required_hemi |
string, one of 'lh', 'rh' or 'both'. |
Convert a vector of hex colors to an Nx4 RGBA float matrix
Description
Convert a vector of hex colors to an Nx4 RGBA float matrix
Usage
hex_colors_to_rgba_matrix(hex_colors)
Arguments
hex_colors |
character vector of hex color strings. |
Value
Nx4 numeric matrix of RGBA values in the range 0..1.
Convert hex color string to RGBA float vector
Description
Converts a hex color string like "#FF0000" or "#FF0000FF" to a length-4 RGBA numeric vector with values in the range 0..1.
Usage
hex_to_rgba(hex)
Arguments
hex |
character string, a hex color code with 6 or 8 digits. |
Value
numeric vector of length 4, RGBA values in 0..1 range.
Draw small 3D spheres at given points.
Description
Draw small 3D spheres at given points.
Usage
highlight.points.spheres(coords, color = "#FF0000", radius = 1)
Arguments
coords |
double vector or nx3 double matrix, the xyz point coordinates. |
color |
the sphere color, like |
radius |
double, the sphere radius |
See Also
Other 3d utility functions:
highlight.vertices.spheres(),
vertex.coords()
Highlight vertices given by index on a subject's meshes by coloring faces.
Description
Highlight vertices given by index on a subject's meshes by coloring faces.
Usage
highlight.vertices.on.subject(
subjects_dir,
vis_subject_id,
verts_lh = NULL,
verts_rh = NULL,
surface = "white",
views = c("t4"),
rgloptions = rglo(),
rglactions = list(),
color_bg = "#FEFEFE",
color_verts_lh = "#FF0000",
color_verts_rh = "#FF4500",
k = 0L
)
Arguments
subjects_dir |
string. The FreeSurfer SUBJECTS_DIR, i.e., a directory containing the data for all your subjects, each in a subdir named after the subject identifier. |
vis_subject_id |
string. The subject identifier from which to obtain the surface for data visualization. Example: 'fsaverage'. |
verts_lh |
integer vector, the indices of left hemisphere vertices. |
verts_rh |
integer vector, the indices of right hemisphere vertices. |
surface |
string. The display surface. E.g., "white", "pial", or "inflated". Defaults to "white". |
views |
list of strings. Valid entries include: 'si': single interactive view. 't4': tiled view showing the brain from 4 angles. 't9': tiled view showing the brain from 9 angles. |
rgloptions |
option list passed to |
rglactions |
named list. A list in which the names are from a set of pre-defined actions. The values can be used to specify parameters for the action. The following example clips outliers in the data before plotting and writes a screenshot in PNG format: |
color_bg |
background color. |
color_verts_lh |
vector of colors to visualize on the left hemisphere surface. Length must match number of vertices in 'verts_lh', or be a single color. |
color_verts_rh |
vector of colors to visualize on the right hemisphere surface. Length must match number of vertices in 'verts_rh', or be a single color. |
k |
integer, radius to extend neighborhood (for better visibility). |
Value
list of coloredmeshes. The coloredmeshes used for the visualization.
See Also
Other visualization functions:
highlight.vertices.on.subject.spheres(),
vis.color.on.subject(),
vis.data.on.fsaverage(),
vis.data.on.subject(),
vis.labeldata.on.subject(),
vis.mask.on.subject(),
vis.region.values.on.subject(),
vis.rglwidget(),
vis.subcortical.region.values(),
vis.subject.annot(),
vis.subject.label(),
vis.subject.morph.native(),
vis.subject.morph.standard(),
vis.subject.pre(),
vis.symmetric.data.on.subject(),
vis.volume.clusters(),
vis.volume.on.surface(),
vislayout.from.coloredmeshes()
Other surface visualization functions:
highlight.vertices.on.subject.spheres(),
vis.color.on.subject()
Examples
## Not run:
fsbrain::download_optional_data();
subjects_dir = fsbrain::get_optional_data_filepath("subjects_dir");
highlight.vertices.on.subject(subjects_dir, 'subject1',
verts_lh=c(5000, 100000), verts_rh=c(300, 66666), views="si");
## End(Not run)
Highlight vertices given by index on a subject's meshes by coloring faces.
Description
Highlight vertices given by index on a subject's meshes by coloring faces.
Usage
highlight.vertices.on.subject.spheres(
subjects_dir,
vis_subject_id,
vertices,
surface = "white",
patch_size = 25,
show_patch = TRUE,
style = "glass2",
export_img = NULL,
sphere_colors = c("#FF0000"),
sphere_radius = 3,
...
)
Arguments
subjects_dir |
string. The FreeSurfer SUBJECTS_DIR, i.e., a directory containing the data for all your subjects, each in a subdir named after the subject identifier. |
vis_subject_id |
string. The subject identifier from which to obtain the surface for data visualization. Example: 'fsaverage'. |
vertices |
positive integer vector, the vertex indices over both hemispheres. Alternative to using verts_lh and verts_rh parameters, only one of them must be used at once. |
surface |
string. The display surface. E.g., "white", "pial", or "inflated". Defaults to "white". |
patch_size |
double, geodesic radius in which to draw a patch on the mesh around the verts. Pass |
show_patch |
logical (or a vector with one logical value per entry in 'vertices'), whether to show colored geodesic patches at the highlighted vertices. |
style |
character string or rgl rendering style, see |
export_img |
character string, the path to the output image if you want to export a high-quality image, NULL if you want live visualization instead. |
sphere_colors |
the sphere colors like '#FF0000', can be a single one for all or one per sphere |
sphere_radius |
double, a single radius for all spheres |
... |
extra parameters passed on to |
Value
list of coloredmeshes. The coloredmeshes used for the visualization. If export_img is set, the export return value is returned instead.
Note
If no patches are visualized, the color used for the brain can be set with options("fsbrain.brain_na_color"="#FF0000").
See Also
Other visualization functions:
highlight.vertices.on.subject(),
vis.color.on.subject(),
vis.data.on.fsaverage(),
vis.data.on.subject(),
vis.labeldata.on.subject(),
vis.mask.on.subject(),
vis.region.values.on.subject(),
vis.rglwidget(),
vis.subcortical.region.values(),
vis.subject.annot(),
vis.subject.label(),
vis.subject.morph.native(),
vis.subject.morph.standard(),
vis.subject.pre(),
vis.symmetric.data.on.subject(),
vis.volume.clusters(),
vis.volume.on.surface(),
vislayout.from.coloredmeshes()
Other surface visualization functions:
highlight.vertices.on.subject(),
vis.color.on.subject()
Examples
## Not run:
fsbrain::download_fsaverage(T);
subjects_dir = fsaverage.path();
mkco = list('colFn'=viridis::viridis, 'n'=300);
# Ex.1: highlight with patches and custom colormap:
highlight.vertices.on.subject.spheres(subjects_dir, 'fsaverage',
vertices=c(300, 5000, 100000), makecmap_options = mkco);
# Ex.2: show patches on some (red) vertices, not on blue ones:
highlight.vertices.on.subject.spheres(subjects_dir, 'fsaverage',
vertices=c(300, 5000, 100000, 300000), show_patch = c(T,F,T,F),
sphere_colors = c("red", "blue", "red", "blue"));
## End(Not run)
Draw small 3D spheres at given brain mesh vertices. Supports full brain (2 meshes) as well.
Description
Draw small 3D spheres at given brain mesh vertices. Supports full brain (2 meshes) as well.
Usage
highlight.vertices.spheres(surface, vertices, ...)
Arguments
surface |
an fs.surface instance, see |
vertices |
vector of positive integers, the vertex indices. Values which are outside of the valid indices for the surface will be silently ignored, making it easier to work with the two hemispheres. |
... |
Parameters passed to |
Note
This function will draw into the current window and add to the scene, so it can be called after visualizing a mesh. See the example.
See Also
Other 3d utility functions:
highlight.points.spheres(),
vertex.coords()
Examples
## Not run:
lh_surf = subject.surface('~/data/study1', 'subject1',
surface = "white", hemi = "lh");
vis.fs.surface(lh_surf, style="semitransparent");
highlight.vertices.spheres(lh_surf,
vertices = c(3225L, 4300L, 5500L),
color = c("green", "blue", "red"));
## End(Not run)
Convert highlight points (rglactions) to scimesh sphere meshes
Description
Convert highlight points (rglactions) to scimesh sphere meshes
Usage
highlight_points_to_scimesh(rglactions, hemi_filter = "both")
Arguments
rglactions |
named list; the entry 'highlight_points' is used if present. |
hemi_filter |
character string, one of "lh", "rh", or "both". |
Value
list of scimesh mesh descriptors (spheres), possibly empty.
Copy the first n foreground voxel values.
Description
Copy the first n foreground voxel values along the axis and direction from the volume to the hull, thus adding foreground voxels to the hull.
Usage
hull.retain.along.axis(
volume,
hull,
dim_check = 2L,
upwards = TRUE,
thickness = 1L
)
Arguments
volume |
numeric 3d array, the full source volume. |
hull |
numeric 3d array, the input hull volume. |
dim_check |
integer, the array dimension to use. Must be 1L, 2L or 3L. |
upwards |
logical, whether to use upwards direction (increasing indices) in the array dimension |
thickness |
integer, the width of the border in voxels, i.e., how many of the foreground voxels to keep |
Value
numeric 3d array, the updated hull volume.
Annotate image with text.
Description
Annotate image with text.
Usage
images.annotate(images, annotations, do_extend = TRUE, background = "white")
Arguments
images |
vector of magick images |
annotations |
vector of character strings, the strings to print onto the tiles |
do_extend |
logical, whether to add the space for the annotation text below the existing image tile |
background |
color string, like 'white' or '#00FF00' |
Value
vector of magick images, the annotated images
Compute max width and height of magick images.
Description
Compute max width and height of magick images.
Usage
images.dimmax(images)
Arguments
images |
a vector/stack of magick images. See |
Value
named list with entries 'width' and 'height'
Rescale all images canvas to match the largest one.
Description
Rescale all images canvas to match the largest one.
Usage
images.rescale.to.max.canvas(images, background = "white")
Arguments
images |
vector of magick images |
background |
color string, like 'white' or '#00FF00' |
Value
vector of magick images, the rescaled images
Extent all images to the height of the image with maximal height.
Description
Extent all images to the height of the image with maximal height.
Usage
images.same.height(images, background_color = "white")
Arguments
images |
a vector/stack of magick images. See |
background_color |
hex color string, the background color to use if the images have different sizes and one needs to be extended. Do not use color names like 'gray', which differ between R and magick. |
Value
a vector/stack of magick images, all with the same height.
Extent all images to the width of the image with maximal width.
Description
Extent all images to the width of the image with maximal width.
Usage
images.same.width(images, background_color = "white")
Arguments
images |
a vector/stack of magick images. See |
background_color |
hex color string, the background color to use if the images have different sizes and one needs to be extended. Do not use color names like 'gray', which differ between R and magick. |
Value
a vector/stack of magick images, all with the same width.
The affine matrix that maps 1-based R array indices to surface RAS.
Description
Meshes and coordinates that were computed from a volume array in R are expressed in 1-based R array indices: the first voxel of the volume is at index 1, the second at index 2, and so on. This is the convention of the iso-surfaces returned by shell.extract.mesh and volvis.contour, and of the indices returned by which(volume != 0, arr.ind = TRUE).
The FreeSurfer vox2ras_tkr matrix, in contrast, expects 0-based CRS (column, row, slice) indices: the first voxel of the volume is at CRS (0, 0, 0), and (as the name says) the voxel index is mapped to RAS. Feeding 1-based R indices to vox2ras_tkr() shifts the result by one voxel (1 mm for a conformed volume), which is why volume data seemed to be slightly offset from the brain surface it was rendered with.
This function returns the matrix which maps 1-based R array indices to surface RAS, i.e., vox2ras_tkr() %*% translation.matrix(-1, -1, -1). It is used internally by the volume visualization functions, and can be used to transform the meshes returned by volvis.contour (or misc3d::contour3d) so that they are aligned with surface renderings of the same subject.
Usage
index2ras_tkr()
Value
numeric 4x4 matrix, the mapping from 1-based R array indices to surface RAS.
See Also
Other surface and volume coordinates:
ras2vox_tkr(),
vox2ras_tkr()
Examples
# The first voxel of a conformed volume (R index 1) is at CRS (0, 0, 0):
(index2ras_tkr() %*% c(1, 1, 1, 1))[1:3];
# which is the position reported by the vox2ras_tkr matrix for CRS (0, 0, 0):
(vox2ras_tkr() %*% c(0, 0, 0, 1))[1:3];
Check whether object is a Triangles3D instance
Description
Check whether object is a Triangles3D instance
Usage
is.Triangles3D(x)
Arguments
x |
any |
Value
TRUE if its argument is a Triangles3D instance (that is, has "Triangles3D" amongst its classes) and FALSE otherwise.
Check whether object is an fs.coloredmesh (S3)
Description
Check whether object is an fs.coloredmesh (S3)
Usage
is.fs.coloredmesh(x)
Arguments
x |
any |
Value
TRUE if its argument is a coloredmesh (that is, has "fs.coloredmesh" amongst its classes) and FALSE otherwise.
Check whether object is an fs.coloredpaths instance (S3)
Description
Check whether object is an fs.coloredpaths instance (S3)
Usage
is.fs.coloredpaths(x)
Arguments
x |
any |
Value
TRUE if its argument is an fs.coloredpaths instance (that is, has "fs.coloredpaths" among its classes) and FALSE otherwise.
Check whether object is an fs.coloredvoxels instance (S3)
Description
Check whether object is an fs.coloredvoxels instance (S3)
Usage
is.fs.coloredvoxels(x)
Arguments
x |
any |
Value
TRUE if its argument is a fs.coloredvoxels instance (that is, has "fs.coloredvoxels" among its classes) and FALSE otherwise.
Check whether object is an fsbrain (S3)
Description
Check whether object is an fsbrain (S3)
Usage
is.fsbrain(x)
Arguments
x |
any |
Value
TRUE if its argument is an fsbrain (that is, has "fsbrain" amongst its classes) and FALSE otherwise.
Check whether x is a hemilist
Description
A hemilist is a named list with entries 'lh' and/or 'rh', see hemilist.
Usage
is.hemilist(x)
Arguments
x |
any R object |
Value
whether 'x' is a hemilist
See Also
Other hemilist functions:
hemilist(),
hemilist.derive.hemi(),
hemilist.from.prefixed.list(),
hemilist.get.combined.data(),
hemilist.unwrap(),
hemilist.wrap()
Compute border of a label.
Description
Compute the border of a label (i.e., a subset of the vertices of a mesh). The border thickness can be specified. Useful to draw the outline of a region, e.g., a significant cluster on the surface or a part of a ROI from a brain parcellation.
Usage
label.border(
surface_mesh,
label,
inner_only = TRUE,
expand_inwards = 0L,
derive = FALSE
)
Arguments
surface_mesh |
surface mesh, as loaded by |
label |
instance of class |
inner_only |
logical, whether only faces consisting only of label_vertices should be considered to be label faces. If FALSE, faces containing at least one label vertex will be used. Defaults to TRUE. Leave this alone if in doubt, especially if you want to draw several label borders which are directly adjacent on the surface. |
expand_inwards |
integer, border thickness extension. If given, once the border has been computed, it is extended by the given graph distance. It is guaranteed that the border only extends inwards, i.e., it will never extend to vertices which are not part of the label. |
derive |
logical, whether the returned result should also include the border edges and faces in addition to the border vertices. Takes longer if requested, defaults to FALSE. |
Value
the border as a list with the following entries: vertices: integer vector, the vertex indices of the border. Iff the parameter derive is TRUE, the following two additional fields are included: edges: integer matrix of size (n, 2) for n edges. Each row defines an edge by its start and target vertex. faces: integer vector, the face indices of the border.
See Also
Other surface mesh functions:
face.edges(),
mesh.vertex.included.faces(),
mesh.vertex.neighbors(),
subject.surface(),
vis.path.along.verts()
Compute border vertices of a label using Rvcg.
Description
Compute border vertices of a label using Rvcg.
Usage
label.border.fast(surface_mesh, label)
Arguments
surface_mesh |
an fs.surface instance, see |
label |
an fs.label instance (see |
Value
named list with entry 'vertices' containing an integer vector with the indices of the border vertices.
Note
This is faster than using the label.border function, but it does not fully match its functionality (some parameter are not implemented for this function), and it requires the Rvcg package, which is an optional dependency.
See Also
label.border, which is slower but provides more options and does not require Rvcg.
Examples
## Not run:
sjd = fsaverage.path(T);
sj = "fsaverage";
mesh = subject.surface(sjd, sj, hemi="lh");
lab = subject.label(sjd, sj, "cortex", hemi = "lh");
col = rep("white", nrow(mesh$vertices));
bd = fsbrain:::label.border.fast <- function(surface_mesh, label);
col[bd$vertices] = "red";
vis.fs.surface(mesh, col=col);
## End(Not run)
A simple colormap function for binary colors.
Description
Useful for plotting labels.
Usage
label.colFn(n = 2L, col_a = "#228B22", col_b = "#FFFFFF")
Arguments
n |
positive integer, the number of colors. Must be 1 or 2 for this function. |
col_a |
color string, the foreground color |
col_b |
color string, the background color |
Value
vector of 'n' RGB colorstrings
A simple colormap function for binary colors.
Description
Useful for plotting labels.
Usage
label.colFn.inv(n = 2L, col_a = "#228B22", col_b = "#FFFFFF")
Arguments
n |
positive integer, the number of colors. Must be 1 or 2 for this function. |
col_a |
color string, the foreground color |
col_b |
color string, the background color |
Value
vector of 'n' RGB colorstrings
Extract a region from an annotation as a label.
Description
The returned label can be used to mask morphometry data, e.g., to set the values of a certain region to NaN or to extract only values from a certain region.
Usage
label.from.annotdata(
annotdata,
region,
return_one_based_indices = TRUE,
invert = FALSE,
error_on_invalid_region = TRUE
)
Arguments
annotdata |
annotation. An annotation for one hemisphere, as returned by |
region |
string. A valid region name for the annotation, i.e., one of the regions of the atlas used to create the annotation. |
return_one_based_indices |
logical. Whether the indices should be 1-based. Indices are stored zero-based in label files, but R uses 1-based indices. Defaults to TRUE. |
invert |
logical. If TRUE, return the indices of all vertices which are NOT part of the region. Defaults to FALSE. |
error_on_invalid_region |
logical. Whether to throw an error if the given region does not appear in the region list of the annotation. If set to FALSE, this will be ignored and an empty vertex list will be returned. Defaults to TRUE. |
Value
integer vector with label data: the list of vertex indices in the label. See 'return_one_based_indices' for important information.
See Also
Other atlas functions:
get.atlas.region.names(),
group.agg.atlas.native(),
group.agg.atlas.standard(),
group.annot(),
group.label.from.annot(),
label.to.annot(),
regions.to.ignore(),
spread.values.over.annot(),
spread.values.over.hemi(),
spread.values.over.subject(),
subject.annot(),
subject.atlas.agg(),
subject.label.from.annot(),
subject.lobes()
Merge several labels into an annotation
Description
Merge several labels and a colortable into an annotation.
Usage
label.to.annot(
label_vertices_by_region,
num_vertices_in_surface,
colortable_df = NULL,
index_of_unknown_region = 1L
)
Arguments
label_vertices_by_region |
named list of integer vectors, the keys are strings which define region names, and the values are integer vectors: the vertex indices of the region. |
num_vertices_in_surface |
integer, total number of vertices in the surface mesh |
colortable_df |
NULL or dataframe, a colortable. It must contain the columns 'struct_name', 'r', 'g', 'b', and 'a'. All other columns will be derived if missing. The entries in 'struct_name' must match keys from the 'label_vertices_by_region' parameter. There must be one more row in here than there are labels. This row identifies the 'unknown' region (see also parameter 'index_of_unknown_region'). If NULL, a colortable will be auto-generated. |
index_of_unknown_region |
positive integer, the index of the row in 'colortable_df' that defines the 'unknown' or 'background' region to which all vertices will be assigned which are not part of any of the given labels. |
Value
an annotation, see read.fs.annot for details.
See Also
Other atlas functions:
get.atlas.region.names(),
group.agg.atlas.native(),
group.agg.atlas.standard(),
group.annot(),
group.label.from.annot(),
label.from.annotdata(),
regions.to.ignore(),
spread.values.over.annot(),
spread.values.over.hemi(),
spread.values.over.subject(),
subject.annot(),
subject.atlas.agg(),
subject.label.from.annot(),
subject.lobes()
Examples
# Create two labels. Real-word labels would have more vertices, of course.
label1 = c(46666, 467777);
label2 = c(99888, 99889);
label_vertices = list("region1"=label1, "region2"=label2);
colortable_df = data.frame("struct_index"=seq(0, 2),
"struct_name"=c("unknown", "region1", "region2"),
"r"=c(255L, 255L, 0L), "g"=c(255L, 0L, 255L), "b"=c(255L, 0L, 0L), "a"=c(0L, 0L, 0L));
annot = label.to.annot(label_vertices, 100000, colortable_df);
Create labeldata from a mask.
Description
Create labeldata from a mask. This function is trivial and only calls which after performing basic sanity checks.
Usage
labeldata.from.mask(mask, invert = FALSE)
Arguments
mask |
a logical vector |
invert |
Whether to report the inverse the mask before determining the indices. Defaults to FALSE. |
Value
labeldata. The list of indices which are TRUE in the mask (or the ones which FALSE if 'invert' is TRUE).
See Also
Other label data functions:
group.label(),
mask.from.labeldata.for.hemi(),
subject.label()
Get data limiting function.
Description
Get data limiting function to use in rglactions as 'trans_fun' to transform data. This is typically used to limit the colorbar in a plot to a certain range. This is similar to clip.data or clip_fun, but uses absolute values instead of percentiles to clip.
Usage
limit_fun(vmin, vmax)
Arguments
vmin |
numerical scalar, the lower border. Data values below this will be set to vmin in the return value. |
vmax |
numerical scalar, the upper border. Data values above this will be set to vmax in the return value. |
Value
a function that takes as argument the data, and clips it to the requested range. I.e., values outside the range will be set to the closest border value ('vmin' or 'vmax'). Designed to be used as rglactions$trans_fun in vis functions, to limit the colorbar and data range.
See Also
Examples
rglactions = list("trans_fun"=limit_fun(2,3));
Get data limiting function to NA.
Description
Get data limiting function to use in rglactions as 'trans_fun' to transform data. This is typically used to limit the colorbar in a plot to a certain range. This is similar to clip.data, but uses absolute values instead of percentiles to clip.
Usage
limit_fun_na(vmin, vmax)
Arguments
vmin |
numerical scalar, the lower border. Data values below this will be set to |
vmax |
numerical scalar, the upper border. Data values above this will be set to |
Value
a function that takes as argument the data, and clips it to the requested range. I.e., values outside the range will be set to NA. Designed to be used as rglactions$trans_fun in vis functions, to limit the colorbar and data range.
Note
This is useful for thresholding stuff like t-value maps. All values outside the range will be displayed as the background color.
See Also
limit_fun_na_inside which will set the values inside the range to NA.
Examples
rglactions = list("trans_fun"=limit_fun_na(2,3));
Get data limiting function, setting values inside range to NA.
Description
Get data limiting function to use in rglactions as 'trans_fun' to transform data.
Usage
limit_fun_na_inside(vmin, vmax)
Arguments
vmin |
numerical scalar, the lower border. Data values between this and vmax will be set to |
vmax |
numerical scalar, the upper border. See 'vmin'. |
Value
a function that takes as argument the data, and clips it to the requested range. I.e., values inside the range will be set to NA. Designed to be used as rglactions$trans_fun in vis functions.
Note
This is useful for thresholding data plotted with a background. All values inside the range will set to NA and be transparent, and thus be displayed as the background color.
See Also
limit_fun_na which will set the values outside the range to NA.
Examples
rglactions = list("trans_fun"=limit_fun_na_inside(2,3));
List the bundle files of a tract atlas directory.
Description
List the bundle files of a tract atlas directory.
Usage
list.tract.bundle.files(atlas_dir)
Arguments
atlas_dir |
character string, the path to the directory. |
Value
vector of character strings, the paths of the bundle files (sorted), or an empty vector if the directory does not exist or contains no bundle files.
Note
The file name filter is important: the downloaded archives contain macOS resource fork files ('._AC.trk' and friends), which are not tract files.
Get file names available in package cache.
Description
Get file names of optional data files which are available in the local package cache. You can access these files with get_optional_data_file().
Usage
list_optional_data()
Value
vector of strings. The file names available, relative to the package cache.
Arrange a multi-frame ImageMagick image into a grid.
Description
Arrange all subimages of the given ImageMagick image into a single 2D image, that contains the subimages arranged in a grid-like structure. Consecutive subimages will be appear the same row.
Usage
magick.grid(
magickimage,
per_row = 5L,
per_col = NULL,
background_color = "#000000"
)
Arguments
magickimage |
an ImageMagick image |
per_row |
positive integer, the number of subimages per row in the output image. If |
per_col |
positive integer, the number of subimages per column in the output image. If |
background_color |
string, a valid ImageMagick color string such as "white" or "#000080". The color to use when extending images (e.g., when creating the border). Defaults to black. |
Create a binary mask from labels.
Description
Create a binary mask for the data of a single hemisphere from one or more labels. A label contains the vertex indices which are part of it, but often having a mask in more convenient.
Usage
mask.from.labeldata.for.hemi(
labels,
num_vertices_in_hemi,
invert_labels = FALSE,
existing_mask = NULL
)
Arguments
labels |
list of labels. A label is just a vector of vertex indices. It can be created manually, but is typically loaded from a label file using |
num_vertices_in_hemi |
integer. The number of vertices of the surface for which the mask is created. This must be for a single hemisphere. |
invert_labels |
logical, whether to invert the label data. |
existing_mask |
an existing mask to modify or NULL. If it is NULL, a new mask will be created before applying any labels, and the values set during initialization of this new mask are the negation of the 'invert_label' parameter. Defaults to NULL. |
Value
logical vector. The mask. It contains a logical value for each vertex. By default, the vertex indices from the labels are FALSE and the rest are TRUE, but this can be changed with the parameter 'invert_labels'.
See Also
Other label data functions:
group.label(),
labeldata.from.mask(),
subject.label()
Other mask functions:
coloredmesh.from.mask(),
vis.mask.on.subject()
Examples
## Not run:
fsbrain::download_optional_data();
# Define the data to use:
subjects_dir = fsbrain::get_optional_data_filepath("subjects_dir");
subject_id = 'subject1';
surface = 'white';
hemi = 'both';
atlas = 'aparc';
region = 'bankssts';
# Create a mask from a region of an annotation:
lh_annot = subject.annot(subjects_dir, subject_id, 'lh', atlas);
rh_annot = subject.annot(subjects_dir, subject_id, 'rh', atlas);
lh_label = label.from.annotdata(lh_annot, region);
rh_label = label.from.annotdata(rh_annot, region);
lh_mask = mask.from.labeldata.for.hemi(lh_label, length(lh_annot$vertices));
rh_mask = mask.from.labeldata.for.hemi(rh_label, length(rh_annot$vertices));
# Edit the mask: add the vertices from another region to it:
region2 = 'medialorbitofrontal';
lh_label2 = label.from.annotdata(lh_annot, region2);
rh_label2 = label.from.annotdata(rh_annot, region2);
lh_mask2 = mask.from.labeldata.for.hemi(lh_label2, length(lh_annot$vertices),
existing_mask = lh_mask);
rh_mask2 = mask.from.labeldata.for.hemi(rh_label2, length(rh_annot$vertices),
existing_mask = rh_mask);
## End(Not run)
Match per-bundle values to the bundles.
Description
Match per-bundle values to the bundles.
Usage
match.bundle.values(bundle_values, bundles)
Arguments
bundle_values |
named or unnamed numeric vector, or NULL. |
bundles |
named list of |
Value
numeric vector of length length(bundles), or NULL if
bundle_values was NULL. The values are in the order of bundles.
Merge the annotations from two hemispheres into one annot.
Description
Merge the annotations from two hemispheres into one annot.
Usage
mergehemi.annots(lh_annot, rh_annot)
Arguments
lh_annot |
annot. An annotation, as returned by freesurferformats::read.fs.annot(). |
rh_annot |
annot. An annotation, as returned by freesurferformats::read.fs.annot(). |
Value
annot, the merged annotation.
Check whether all regions of a mesh atlas visualization are hidden.
Description
Regions are hidden by assigning the value NaN to them (see vis.subcortical.region.values). This function determines whether that leaves any region to render, so that the caller can stop with a helpful message instead of an unhelpful error from the (unrelated) data processing code. Regions which are not listed in the region value lists are hidden if value_for_unlisted_regions is NaN as well, which requires the atlas to be read to know the region names.
Usage
mesh.atlas.all.regions.hidden(
subjects_dir,
subject_id,
atlas,
lh_region_value_list,
rh_region_value_list,
value_for_unlisted_regions
)
Arguments
|
string. The FreeSurfer SUBJECTS_DIR, i.e., a directory containing the data for all your subjects, each in a subdir named after the subject identifier. | |
|
string. The subject identifier. | |
|
string. The atlas name, used to construct the annotation file name. | |
|
named list or NULL, the region values for the left hemisphere. | |
|
named list or NULL, the region values for the right hemisphere. | |
|
numerical scalar, the value assigned to regions which do not occur in the region value lists. |
Value
logical, TRUE if none of the regions of the atlas would be rendered (because all their values are NaN), FALSE otherwise.
Check that a mesh atlas is available for a subject.
Description
Check that the surface mesh and the annotation files of a mesh atlas exist for a subject, and stop with a helpful error message otherwise.
Usage
mesh.atlas.check.files(subjects_dir, subject_id, atlas, surface)
Arguments
subjects_dir |
string. The FreeSurfer SUBJECTS_DIR, i.e., a directory containing the data for all your subjects, each in a subdir named after the subject identifier. |
subject_id |
string. The subject identifier. |
atlas |
string. The atlas name, used to construct the annotation file name. |
surface |
string. The name of the surface mesh that belongs to the atlas. |
Value
vector of strings, the file paths of the atlas files, invisibly. The function stops if any of the files is missing.
Compute the context layer of a mesh atlas visualization.
Description
Compute the optional context mesh (typically a semi-transparent cortex) that is rendered together with the data meshes of a mesh atlas.
Usage
mesh.atlas.context.layer(subjects_dir, subject_id, cortex)
Arguments
subjects_dir |
string, the subjects dir to use for the context mesh. |
subject_id |
string, the subject id to use for the context mesh. |
cortex |
the context definition. Either a character string (the name of the surface mesh to
use, e.g., 'white'), a named list of options for the context mesh (supported entries are
'surface', 'color', 'alpha', 'style', 'subjects_dir' and 'subject_id'), an
|
Value
a named list with entries 'lh' and 'rh', the context coloredmeshes.
Get the file paths of a mesh atlas for a subject.
Description
Compute the paths of the surface mesh and annotation files of a mesh atlas.
The files are not required to exist, see mesh.atlas.check.files.
Usage
mesh.atlas.file.paths(subjects_dir, subject_id, atlas, surface)
Arguments
subjects_dir |
string. The FreeSurfer SUBJECTS_DIR, i.e., a directory containing the data for all your subjects, each in a subdir named after the subject identifier. |
subject_id |
string. The subject identifier. |
atlas |
string. The atlas name, used to construct the annotation file name. |
surface |
string. The name of the surface mesh that belongs to the atlas. |
Value
vector of strings, the file paths of the atlas files.
Hide the vertices that carry NaN data in a coloredmesh.
Description
Remove the vertices (and all faces that use them) for which the data value is NaN. This hides the respective region completely, it is not rendered at all. This is a per-vertex operation, so it also works for meshes in which several regions share a single mesh (like a mesh atlas), in contrast to the mesh-wide rendering style. It is the basis of hiding individual regions of a mesh atlas by passing NaN as their value.
Usage
mesh.atlas.hide.nan.vertices(cmesh, hemi)
Arguments
cmesh |
fs.coloredmesh, the coloredmesh to modify. It must have data values in |
hemi |
character string, one of 'lh' or 'rh', the hemisphere of the mesh. Used to look up the data values in the hemilist |
Value
fs.coloredmesh, the modified coloredmesh. If the mesh contains no NaN data (or the data cannot be mapped to the vertices), the input is returned unchanged. If all vertices are NaN, the returned mesh has the property 'render' set to FALSE, which makes the rendering functions skip it.
Find a subjects dir that contains a mesh atlas for a subject.
Description
Several locations can contain the data of a template subject like fsaverage, e.g.\ the package cache and the subjects dir of a FreeSurfer installation, and not all of them necessarily contain the mesh atlas. This function checks the locations in the order in which they are returned by find.subjectsdir.of and returns the first one that actually contains the atlas files. If none contains them, the first location found is returned, so that the caller can report the missing files.
Usage
mesh.atlas.resolve.subjects.dir(
subject_id,
atlas = "subcortical",
surface = "subcortical"
)
Arguments
subject_id |
string. The subject identifier. |
atlas |
string. The atlas name, used to construct the annotation file name. |
surface |
string. The name of the surface mesh that belongs to the atlas. |
Value
string, the path of a subjects dir.
Remove all faces that use one of the given vertices and renumber the remaining ones.
Description
Filter the faces of a mesh and renumber the vertex indices to refer to the reduced vertex list.
Usage
mesh.atlas.restrict.faces(faces, keep_mask)
Arguments
faces |
integer matrix, one face per column, holding 1-based indices into the vertex list. |
keep_mask |
logical vector, one entry per vertex of the mesh, TRUE for the vertices which are kept. |
Value
integer matrix like faces, with all faces removed that used a vertex which is not kept, and with the remaining vertex indices renumbered to refer to which(keep_mask).
Transform surface vertices from surface RAS to 0-based volume CRS space.
Description
Applies the inverse of the FreeSurfer vox2ras_tkr matrix to all surface vertices, converting them from surface RAS coordinates to 0-based CRS (column, row, slice) indices. The resulting CRS coordinates can be used to directly index into a brain volume array (after adding 1 for R's 1-based indexing).
Usage
mesh.ras2crs(surface)
Arguments
surface |
an |
Value
a modified copy of the input surface with vertices in 0-based CRS space.
Compute intersection of a triangular surface mesh with an axis-aligned plane.
Description
For a given axis and coordinate, finds all triangles that straddle the plane and computes the line segment where each crossing triangle intersects the plane. The input surface must have vertices in the same coordinate space as the slice plane definition (typically 0-based CRS).
Usage
mesh.slice.intersection(surface, axis, slice_crs_coord)
Arguments
surface |
an |
axis |
integer, 1, 2, or 3. The axis perpendicular to the slice plane (1=sagittal, 2=coronal, 3=axial in CRS convention). |
slice_crs_coord |
numeric scalar, the coordinate along |
Value
a list of 2×2 numeric matrices. Each matrix represents one line segment with rows [start, end] and columns [axis_val_1, axis_val_2] giving the coordinates in the two axes orthogonal to the slice axis, in 0-based CRS units. Returns an empty list if no triangles intersect the plane.
Return all faces which are made up completely of the listed vertices.
Description
Return all faces which are made up completely of the listed vertices.
Usage
mesh.vertex.included.faces(surface_mesh, source_vertices)
Arguments
surface_mesh |
surface mesh, as loaded by |
source_vertices |
integer vector, the vertex indices. |
Value
integer vector, the face indices
See Also
Other surface mesh functions:
face.edges(),
label.border(),
mesh.vertex.neighbors(),
subject.surface(),
vis.path.along.verts()
Compute neighborhood of a vertex
Description
Given a set of query vertex indices and a mesh m, compute all vertices which are adjacent to the query vertices in the mesh. A vertex u is adjacent to another vertex v iff there exists an edge e = (u, v) in m. While you could call this function repeatedly with the old output as its new input to extend the neighborhood, you should maybe use a proper graph library for this.
Usage
mesh.vertex.neighbors(
surface,
source_vertices,
k = 1L,
restrict_to_vertices = NULL
)
Arguments
surface |
a surface as returned by functions like |
source_vertices |
Vector of source vertex indices. |
k |
positive integer, how often to repeat the procedure and grow the neighborhood, using the output |
restrict_to_vertices |
integer vector of vertex indices. If given, the neighborhood growth will be limited to the given vertex indices. Defaults to NULL, which means the neighborhood is not restricted. |
Value
the neighborhood as a list with two entries: "faces": integer vector, the face indices of all faces the source_vertices are a part of. "vertices": integer vector, the unique vertex indices of all vertices of the faces in the 'faces' property. These vertex indices include the indices of the source_vertices themselves.
See Also
Other surface mesh functions:
face.edges(),
label.border(),
mesh.vertex.included.faces(),
subject.surface(),
vis.path.along.verts()
Weld the vertices of a mesh and remove degenerate faces.
Description
Meshes returned by the marching cubes implementations are usually not clean: Rvcg::vcgIsosurface() returns duplicated vertices along with a large number of degenerate (zero area) faces which overlap the real faces, and misc3d::contour3d() returns completely unwelded meshes, i.e., one vertex per triangle corner. Both waste memory and render badly when lighting is enabled: the degenerate faces get invalid normals and fight for the same depth values as the real faces, which makes the surface look patched, grooved and partly black instead of smoothly shaded. This function welds vertices which are at (numerically) identical positions, removes the faces which use the same vertex more than once, and recomputes the normals.
Usage
mesh.weld(mesh, drop_degenerate = TRUE, add_normals = TRUE, tolerance = 1e-06)
Arguments
mesh |
a |
drop_degenerate |
logical, whether to remove the degenerate faces, i.e., the faces which have at least two coincident corners and thus zero area. Defaults to |
add_normals |
logical, whether to compute per-vertex normals for the result. Defaults to |
tolerance |
numerical scalar, the distance (in the units of the mesh coordinates, typically mm) below which two vertices are considered identical. Defaults to |
Value
a mesh3d instance with welded vertices, without degenerate faces, and with normals if requested. Vertices which are not used by any face are dropped, so per-vertex data like colors has to be assigned after welding (see the note).
Note
Welding changes the vertex array, so per-vertex data which is not part of the mesh (e.g., a color vector) cannot be preserved. Assign such data to the welded mesh, which is what the visualization functions do internally.
Return recommended 'makecmap_options' for diverging cluster data.
Description
This function returns recommended visualization settings (a colormap function and suitable other settings) for the given type of data. The return value is meant to be passed as parameter 'makecmap_options' to the vis.* functions, e.g., vis.subject.morph.native.
Usage
mkco.cluster()
Value
named list, visualization settings to be used as 'makecmap_options' for diverging data.
Note
This uses a cyan blue red yellow colormap, which is popular for displaying clusters in neuroscience.
Return recommended 'makecmap_options' for diverging data.
Description
This function returns recommended visualization settings (a colormap function and suitable other settings) for the given type of data. The return value is meant to be passed as parameter 'makecmap_options' to the vis.* functions, e.g., vis.subject.morph.native.
Usage
mkco.div()
Value
named list, visualization settings to be used as 'makecmap_options' for diverging data.
Return recommended 'makecmap_options' for sequential data with heatmap style.
Description
This function returns recommended visualization settings (a colormap function and suitable other settings) for the given type of data. The return value is meant to be passed as parameter 'makecmap_options' to the vis.* functions, e.g., vis.subject.morph.native.
Usage
mkco.heat()
Value
named list, visualization settings to be used as 'makecmap_options' for sequential data with heatmap style.
Return recommended 'makecmap_options' for sequential data.
Description
This function returns recommended visualization settings (a colormap function and suitable other settings) for the given type of data. The return value is meant to be passed as parameter 'makecmap_options' to the vis.* functions, e.g., vis.subject.morph.native.
Usage
mkco.seq()
Value
named list, visualization settings to be used as 'makecmap_options' for sequential data.
Normalize data.
Description
Scales data to the range [0, 1] based on min and max values.
Usage
normalize(x)
Arguments
x |
the data |
Value
the scaled data
Normalize a region name for matching.
Description
Removes all characters which are not letters or digits and lowercases the result, so that region names which differ only in their formatting (like 'LH_Vis_1' and 'lh vis 1') can be matched.
Usage
normalize.region.names(x)
Arguments
x |
vector of character strings. |
Value
vector of character strings, the normalized names.
Determine vertex count of left hemi from hemilist of surfaces or the count itself.
Description
Determine vertex count of left hemi from hemilist of surfaces or the count itself.
Usage
numverts.lh(surfaces)
Arguments
surfaces |
hemilist of surfaces, or a single integer, which will be interpreted as the number of vertices of the left hemisphere surface. |
Value
integer, the number of vertices.
Determine vertex count of right hemi from hemilist of surfaces or the count itself.
Description
Determine vertex count of right hemi from hemilist of surfaces or the count itself.
Usage
numverts.rh(surfaces)
Arguments
surfaces |
hemilist of surfaces, or a single integer, which will be interpreted as the number of vertices of the right hemisphere surface. |
Value
integer, the number of vertices.
Compute path color from its orientation.
Description
Compute path color from its orientation.
Usage
path.colors.from.orientation(coords_list, use_three_colors_only = FALSE)
Arguments
coords_list |
list of |
use_three_colors_only |
logical, whether to use only three different colors, based on closest axis. |
Value
m x 3 matrix, each row corresponds to a path and contains its color value (RGB, range 0..255).
Compute slopes of paths relative to axes.
Description
Compute slopes of paths relative to axes.
Usage
path.slopes(coords_list, return_angles = FALSE)
Arguments
coords_list |
list of |
return_angles |
logical, whether to return angles instead of slopes. Angles are returned in degrees, and will range from |
Value
m x 3 matrix, each row corresponds to a path and describes the 3 slopes of the path against the 3 planes/ x, y, and z axes (in that order).
Transform surfaces indices which go over two surfaces to per-hemi indices.
Description
Transform surfaces indices which go over two surfaces to per-hemi indices.
Usage
per.hemi.vertex.indices(surfaces, vertices)
Arguments
surfaces |
hemilist of surfaces, or a single integer, which will be interpreted as the number of vertices of the left hemisphere surface. |
vertices |
positive integer vector, the query vertex indices. Must be in range 1 to (num_verts_lh + num_verts_rh). |
Value
named list with the following entries: 'vertices', hemilist of indices for the hemispheres. 'query_indices', hemilist of the indices of the respective vertices in the vector that was passed as parameter vertices. 'vertices_hemi': vector of character strings containing the hemi value (lh or rh) for the query vertices.
Perform NA mapping for transparency
Description
Usually this is done so that the NA values are plotted transparently, so your can see a background color through the respective colors.
Usage
perform.na.mapping(data, map_to_NA)
Arguments
data |
numeric vector |
map_to_NA |
the value or value range that should be mapped to |
Value
the mapped data
Perform rglactions, like taking screenshots.
Description
Take a list specifying actions, see rglactions, and execute them. This function should be called once an rgl scene has been setup and rendered. A typical use case is to save a screenshot of the scene.
Usage
perform.rglactions(rglactions, at_index = NULL, silent = TRUE, ignore = c())
Arguments
rglactions |
named list. A list in which the names are from a set of pre-defined actions. The values can be used to specify parameters for the action. See |
at_index |
integer, the index to use in case of vectorized entries. Allows using different output_images for different views or similar. |
silent |
logical, whether to suppress messages |
ignore |
vector of character strings, actions to ignore |
Perform Gaussian smoothing
Description
Perform Gaussian smoothing
Usage
pervertexdata.smoothgaussian(
spherical_surface,
data,
fwhm = 15,
truncfactor = 3.5
)
Arguments
spherical_surface |
an fs.surface instance representing the spherical version ( |
data |
numerical vector of per-vertex data for the surface |
fwhm |
double, the full width at half maximum for the Gaussian kernel |
truncfactor |
the factor after how many stddevs to truncate the Gaussian kernel |
Value
the smoothed data
Note
This function has been adapted from FreeSurfer and it is subject to the FreeSurfer software license.
Examples
## Not run:
sjd = fsaverage.path();
spherical_surface = subject.surface(sjd, "fsaverage3",
surface="sphere", hemi="lh");
vdata = subject.morph.native(sjd, "fsaverage3", "thickness", hemi="lh");
vdata_smoothed = pervertexdata.smoothgaussian(spherical_surface,
vdata, fwhm = 15);
vis.data.on.subject(sjd, "fsaverage3", morph_data_lh = vdata);
vis.data.on.subject(sjd, "fsaverage3", morph_data_lh = vdata_smoothed);
## End(Not run)
Perform iterative nearest-neighbor smoothing of per-vertex data.
Description
Smoothing of surface data by iterative mesh neighborhood averaging. Assigns to each vertex the average of the values in its 1-ring neighborhood (based on the mesh edges).
Usage
pervertexdata.smoothnn(surface, data, num_iter, k = 1L)
Arguments
surface |
an |
data |
numerical vector, the per-vertex data for the surface. Values set to |
num_iter |
positive scalar integer, the number of times to perform the averaging. Depends on the mesh resolution and desired smoothing, higher resolution meshes will need more passes. Typical values are in range 20 to 150, but also depend on the setting of parameter 'k', of course. |
k |
positive scalar integer, the neighborhood size in hops along the mesh edges (the k for the k-ring neighborhood). For higher resolution meshes it makes sense to increase this, typical values are roughly in range 1 to 10. |
Note
The iteration is currently done in R, which means the performance is not great.
This does NOT smooth the mesh, it smoothes per-vertex values assigned to mesh vertices.
To see relevant smoothing for full-resolution FreeSurfer meshes, try setting num_iter=50, k=8 for a start.
Examples
## Not run:
sjd = fsaverage.path(T);
sj = "fsaverage3";
surface = subject.surface(sjd, sj, hemi = "lh");
th = subject.morph.native(sjd, sj, "thickness", hemi="lh", cortex_only=T);
th_smooth = pervertexdata.smoothnn(surface, th, num_iter=15L);
vis.data.on.subject(sjd, sj, morph_data_lh = th);
vis.data.on.subject(sjd, sj, morph_data_lh = th_smooth);
## End(Not run)
Compute expected FWHM from given number of neighborhood smoothing iterations.
Description
Compute expected FWHM from given number of neighborhood smoothing iterations.
Usage
pervertexdata.smoothnn.compute.fwhm(surface, niters, is_template)
Arguments
surface |
an |
niters |
positive integer, the nn iteration count |
is_template |
logical, whether the surface belongs to a template subject |
Value
double, the expected FWHM
Note
This function has been adapted from FreeSurfer and it is subject to the FreeSurfer software license.
Examples
## Not run:
spherical_surface = subject.surface(fsaverage.path(), "fsaverage3", surface="sphere", hemi="lh");
fsbrain:::pervertexdata.smoothnn.compute.fwhm(spherical_surface, 5L);
## End(Not run)
Compute number of neighborhood smoothing iterations to reach requested fwhm.
Description
Compute number of neighborhood smoothing iterations to reach requested fwhm.
Usage
pervertexdata.smoothnn.compute.numiter(surface, fwhm, is_template)
Arguments
surface |
an |
is_template |
logical, whether the surface belongs to a template subject |
Value
integer, the iteration count
Note
This function has been adapted from FreeSurfer and it is subject to the FreeSurfer software license.
Pretty-print a named list or vector.
Description
Pretty-print a named list or vector.
Usage
pp.named.list(named_list)
Arguments
named_list |
a named list or vector |
Value
character string, the printed list
Computes principal curvatures according to 2 definitions from raw k1 and k2 values.
Description
Computes principal curvatures according to 2 definitions from raw k1 and k2 values.
Usage
principal.curvatures(k1_raw, k2_raw)
Arguments
k1_raw |
numerical vector, one of the two principal curvatures, one value per vertex |
k2_raw |
numerical vector, the other one of the two principal curvatures, one value per vertex |
Value
a named 'principal_curvatures' list, with entries 'principal_curvature_k1': larger value of k1_raw, k2_raw. 'principal_curvature_k2': smaller value of k1_raw, k2_raw. 'principal_curvature_k_major': larger value of abs(k1_raw), abs(k2_raw). 'principal_curvature_k_minor': smaller value of abs(k1_raw), abs(k2_raw).
Note
To obtain k1_raw and k2_raw, use surface.curvatures to compute it from a mesh, or load the FreeSurfer files 'surf/?h.white.max' and 'surf/?h.white.min'.
Print description of a brain coloredmesh (S3).
Description
Print description of a brain coloredmesh (S3).
Usage
## S3 method for class 'fs.coloredmesh'
print(x, ...)
Arguments
x |
brain surface with class |
... |
further arguments passed to or from other methods |
Print description of an fs.coloredpaths instance (S3).
Description
Print description of an fs.coloredpaths instance (S3).
Usage
## S3 method for class 'fs.coloredpaths'
print(x, ...)
Arguments
x |
an fs.coloredpaths instance. |
... |
further arguments passed to or from other methods. |
Print description of fs.coloredvoxels (S3).
Description
Print description of fs.coloredvoxels (S3).
Usage
## S3 method for class 'fs.coloredvoxels'
print(x, ...)
Arguments
x |
brain voxel tris with class |
... |
further arguments passed to or from other methods |
Print description of an fsbrain (S3).
Description
Print description of an fsbrain (S3).
Usage
## S3 method for class 'fsbrain'
print(x, ...)
Arguments
x |
fsbrain instance with class |
... |
further arguments passed to or from other methods |
Perform data quality check based on computed region stats.
Description
Determine subjects that potentially failed segmentation, based on region-wise morphometry data. The stats can be computed from any kind of data, but something like area or volume most likely works best. The stats are based on the mean of the region values, so the measure should at least roughly follow a normal distribution.
Usage
qc.for.group(subjects_dir, subjects_list, measure, atlas, hemi = "both", ...)
Arguments
subjects_dir |
string. The FreeSurfer SUBJECTS_DIR, i.e., a directory containing the data for all your subjects, each in a subdir named after the subject identifier. |
subjects_list |
string vector. A vector of subject identifiers that match the directory names within subjects_dir. |
measure |
string. Name of the vertex-wise measure of morphometry data file. E.g., "area" or "thickness". Used to construct the name of the morphometry file to be loaded. |
atlas |
string. The atlas name. E.g., "aparc", "aparc.2009s", or "aparc.DKTatlas". Used to construct the name of the annotation file to be loaded. |
hemi |
string, one of 'lh', 'rh', 'split', or 'both'. The hemisphere name. Used to construct the names of the annotation and morphometry data files to be loaded. If set to 'both', combined data for 'lh' and 'rh' will be used. If 'split', the data for hte two hemispheres will go into seprate columns, with column names having 'lh_' and 'rh_' prefixes. |
... |
parameters passed to |
Value
qc result as a hemilist, each entry contains a named list as returned by qc.from.regionwise.df.
See Also
Other quality check functions:
qc.from.regionwise.df(),
qc.from.segstats.table()
Perform data quality check based on a dataframe containing aggregated region-wise data.
Description
Determine subjects that potentially failed segmentation, based on region-wise data. The data can be anything, but there must be one numerical value per subject per region.
Usage
qc.from.regionwise.df(
rdf,
z_threshold = 2.8,
verbosity = 0L,
num_bad_regions_allowed = 1L
)
Arguments
rdf |
data.frame, the region data. The first column must contain the subject identifier, all other columns should contain numerical data for a single region. (Each row represents a subject.) This can be produced by calling |
z_threshold |
numerical, the cutoff value for considering a subject an outlier (in standard deviations). |
verbosity |
integer, controls the output to stdout. 0=off, 1=normal, 2=verbose. |
num_bad_regions_allowed |
integer, the number of regions in which subjects are allowed to be outliers without being reported as potentially failed segmentation |
Value
named list with entries: 'failed_subjects': vector of character strings, the subject identifiers which potentially failed segmentation. 'mean_dists_z': distance to mean, in standard deviations, per subject per region. 'num_outlier_subjects_per_region': number of outlier subjects by region. 'metadata': named list of metadata, e.g., hemi, atlas and measure used to compute these QC results.
See Also
Other quality check functions:
qc.for.group(),
qc.from.segstats.table()
Perform data quality check based on a segstats table.
Description
Perform data quality check based on a segstats table.
Usage
qc.from.segstats.table(filepath, ...)
Arguments
filepath |
path to input file, a tab-separated file generated by running the FreeSurfer tools 'aparcstats2table' or 'asegstats2table'. The command line in the system shell would be something like 'aparcstats2table_bin –subjectsfile $subjects_file –meas $measure –hemi $hemi -t $aparc_output_table'. |
... |
parameters passed to |
Value
See Also
Other quality check functions:
qc.for.group(),
qc.from.regionwise.df()
Perform data quality check based on a segstats table.
Description
Determine subjects that potentially failed segmentation, based on segstats table data. The input table file must be a segmentation or parcellation table, generated by running the FreeSurfer tools 'aparcstats2table' or 'asegstats2table' for your subjects.
Usage
qc.from.segstats.tables(filepath_lh, filepath_rh, ...)
Arguments
filepath_lh |
path to left hemisphere input file, a tab-separated file generated by running the FreeSurfer tools 'aparcstats2table' or 'asegstats2table'. The command line in the system shell would be something like 'aparcstats2table_bin –subjectsfile $subjects_file –meas $measure –hemi $hemi -t $aparc_output_table'. |
filepath_rh |
path to equivalent right hemisphere input file. |
... |
parameters passed to |
Value
qc result as a hemilist, each entry contains a named list as returned by qc.from.regionwise.df.
Check whether subjects for FS longitudinal pipeline contain data that is identical between time points.
Description
Check whether subjects for FS longitudinal pipeline contain data that is identical between time points.
Usage
qc.fslong.checkidenticaldata(
subjects_dir,
subjects_to_check = NULL,
timepoint_names = c("_MR1", "_MR2"),
measure = "thickness",
surface = "white"
)
Arguments
subjects_dir |
string. The FreeSurfer SUBJECTS_DIR, i.e., a directory containing the data for all your subjects, each in a subdir named after the subject identifier. |
timepoint_names |
vector of character strings, the timepoint names. These are mandatory for QDEC, so there should be very little reason to change them. Leave along unless you know what you are doing. |
measure |
string. Name of the vertex-wise measure of morphometry data file. E.g., "area" or "thickness". Used to construct the name of the morphometry file to be loaded. |
Note
Keep in mind that this checks on the level of the FreeSurfer reconstruction, which is not 100% deterministic. So identical raw MRI data may lead to different vertex counts in 2 runs. So this is not a final check to exclude copied raw MRI images, it only checks for copied FreeSurfer reconstructions.
Create visual quality check report from QC result.
Description
Create visual quality check report from QC result.
Usage
qc.report.html(
subjects_dir,
subjects_list,
out_dir = "fsbrain_qc_report",
subjects_metadata = list(),
qc = NULL,
...
)
Arguments
subjects_dir |
string. The FreeSurfer SUBJECTS_DIR, i.e., a directory containing the data for all your subjects, each in a subdir named after the subject identifier. |
subjects_list |
string vector. A vector of subject identifiers that match the directory names within subjects_dir. |
out_dir |
character string, path to output dir. The last directory part will be created if it does not exist (but not recursively). |
subjects_metadata |
named list, keys can be subjects from subjects_list. Each key can hold another named list of strings, represeting arbitrary metadata for that subject that will be displayed in the report. |
qc |
optional qc result. If NULL, a QC report is created using standard settings 'aparc' and 'thickness'. |
... |
passed on to |
Examples
## Not run:
s = sjld("~/data/IXI_min/mri/freesurfer");
s$l = s$l[1:100]; # first few subjects are enough
fsbrain:::qc.report.html(s$d, s$l);
## End(Not run)
Visualize the number of outlier subjects per region in your dataset.
Description
The function helps you to see which regions are affected the most by QC issues: for each region, it plots the number of subjects which are outliers in the region.
Usage
qc.vis.failcount.by.region(
qc_res,
atlas,
subjects_dir = fsaverage.path(),
subject_id = "fsaverage",
...
)
Arguments
qc_res |
hemilist of QC results, as returned by functions like |
atlas |
string. The brain atlas to use. E.g., 'aparc' or 'aparc.a2009s'. |
subjects_dir |
string. The FreeSurfer SUBJECTS_DIR, i.e., a directory containing the data for all your subjects, each in a subdir named after the subject identifier. |
subject_id |
string. The subject identifier. |
... |
extra parameters passed to |
Note
You can visualize this on any subject you like, 'fsaverage' is a typical choice. The atlas must be the one used during the QC step.
Filter QDEC long table for subjects.
Description
Filter QDEC long table for subjects.
Usage
qdec.table.filter(qdec_file, subjects_list, output_qdec_file = NULL)
Arguments
qdec_file |
the source QDEC table |
subjects_list |
the subjects to extract from the QDEC file |
output_qdec_file |
optional character string, a file name to which to write the resulting, filtered table. If not given, no file is created. |
Value
the data.frame containing the subset of subjects from the original QDEC file.
Note
This assumes that there are 2 time points per subject and warns if not all requested subjects were found.
Generate skeleton dataframe for FreeSurfer QDEC long file from subjects list.
Description
Generate skeleton dataframe for FreeSurfer QDEC long file from subjects list.
Usage
qdec.table.skeleton(
subjects_list,
isi = rep(0.8, length(subjects_list)),
isi_name = "years",
timepoint_names = c("_MR1", "_MR2")
)
Arguments
subjects_list |
vector of character strings, the Freesurfer subject IDs (cross-sectional names, without any suffixes like |
isi |
numerical vector, the inter-scan interval for the subjects, in a unit of your choice. Typically in years. |
isi_name |
character string, the name for the isi columns. Defaults to "years". |
timepoint_names |
vector of character strings, the timepoint names. These are mandatory for QDEC, so there should be very little reason to change them. Leave along unless you know what you are doing. |
Value
data.frame with 3 columns named fsid and fsid-base and 'isi_name', a data.frame to use with the demographics.to.qdec.table.dat function.
See Also
The function demographics.to.qdec.table.dat to write the result to a QDEC file.
Examples
dem = data.frame("ID"=paste("subject", seq(5), sep=""),
"age"=sample.int(20, 5)+10L, "isi"=rnorm(5, 2.0, 0.1)); #sample data.
qdec.table.skeleton(dem$ID, dem$isi);
Convert raduians to degree
Description
Convert raduians to degree
Usage
rad2deg(rad)
The FreeSurfer default ras2vox_tkr matrix.
Description
Applying this matrix to a FreeSurfer surface RAS coordinate (from a surface file like lh.white) will give you the voxel index (CRS) in a conformed FreeSurfer volume. The returned matrix is the inverse of the vox2ras_tkr matrix.
Usage
ras2vox_tkr()
Value
numeric 4x4 matrix, the FreeSurfer ras2vox_tkr matrix.
See Also
Other surface and volume coordinates:
index2ras_tkr(),
vox2ras_tkr()
Examples
# Compute the FreeSurfer CRS voxel index of surface RAS coordinate (0.0, 0.0, 0.0):
ras2vox_tkr() %*% c(0, 0, 0, 1);
# Show that the voxel at surface RAS corrds (0.0, 0.0, 0.0) is the one with CRS (128, 128, 128):
ras2vox_tkr() %*% c(0.0, 0.0, 0.0, 1);
Read colors from CSV file.
Description
Read colors from CSV file.
Usage
read.colorcsv(filepath)
Arguments
filepath |
character string, path to a CSV file containing colors |
Value
vector of hex color strings
Read demographics file
Description
Load a list of subjects and metadata from a demographics file, i.e., a tab-separated file containing an arbitrary number of columns, one of which must be the subject id.
Usage
read.md.demographics(
demographics_file,
column_names = NULL,
header = FALSE,
scale_and_center = FALSE,
sep = "",
report = FALSE,
stringsAsFactors = TRUE,
group_column_name = NULL
)
Arguments
demographics_file |
string. The path to the file. |
column_names |
vector of strings. The column names to set in the returned dataframe. The length must match the number of columns in the file. |
header |
logical. Whether the file starts with a header line. |
scale_and_center |
logical. Whether to center and scale the data. Defaults to FALSE. |
sep |
string. Separator passed to |
report |
logical. Whether to write an overview, i.e., some descriptive statistics for each column, to STDOUT. Defaults to FALSE. See |
stringsAsFactors |
logical. Whether to convert strings in the input data to factors. Defaults to TRUE. |
group_column_name |
string or NULL. If given, the column name of the group column. It must be a factor column with 2 levels. Enables group-comparison tests. Defaults to NULL. |
Value
a dataframe. The data in the file. String columns will be returned as factors, which you may want to adapt afterwards for the subject identifier column.
See Also
Other metadata functions:
demographics.to.fsgd.file(),
read.md.subjects(),
report.on.demographics()
Examples
demographics_file =
system.file("extdata", "demographics.tsv", package = "fsbrain", mustWork = TRUE);
column_names = c("subject_id", "group", "age");
demographics = read.md.demographics(demographics_file,
header = TRUE, column_names = column_names, report = FALSE);
Read subjects file
Description
Load a list of subjects from a subjects file, i.e., a simple text file containing one subject name per line.
Usage
read.md.subjects(subjects_file, header)
Arguments
subjects_file |
character string, the path to the subjects file. |
header |
logical, whether the file starts with a header line. |
Value
vector of strings, the subject identifiers.
See Also
Other metadata functions:
demographics.to.fsgd.file(),
read.md.demographics(),
report.on.demographics()
Examples
subjects_file = system.file("extdata", "subjects.txt", package = "fsbrain", mustWork = TRUE);
subjects_list = read.md.subjects(subjects_file, header = FALSE);
Read subjects list from an FSGD file.
Description
Read subjects list from an FSGD file.
Usage
read.md.subjects.from.fsgd(filepath)
Arguments
filepath |
character string, path to a FreeSurfer Group Descriptor (FSGD) file. |
Value
vector of character strings, the subject identifiers
Note
This is not a parser for all data in an FSGD file.
See Also
Read tract (streamline) files into named bundles.
Description
Reads one or more tract files in TRK or TCK format (see the
details) and returns them as a named list of bundles, i.e., one entry per
file. This is the input format of vis.tracts. A single
directory can be passed to read a whole tract atlas (one file per bundle, e.g.
the XTRACT atlas, see download_xtract_tracts).
Usage
read.tract.bundles(
paths,
coords = "ras",
transform_matrix = NULL,
max_tracks = Inf,
skip_tracks = 0L,
bbox = NULL,
pattern = "\\.(trk|tck)(\\.gz)?$",
silent = FALSE
)
Arguments
paths |
character string, either the path to a directory containing tract files, or a vector of paths to tract files. |
coords |
character string or NULL, the coordinate system of the returned
coordinates for TRK files, see |
transform_matrix |
a 4x4 numeric matrix or NULL. If given, it is applied
to the coordinates of all files after reading them, e.g. to move a tract
atlas from MNI space into the space of the surfaces, see the note in
|
max_tracks |
numeric, the maximum number of streamlines to read per file.
Use |
skip_tracks |
integer, the number of streamlines to skip per file, see
|
bbox |
numeric vector of length 6 or NULL, a bounding box to select the
streamlines that pass through a region, see
|
pattern |
character string, a regular expression to select the files in a
directory. Ignored if |
silent |
logical, whether to suppress the progress messages. |
Details
The files are read with the readers of the 'freesurferformats' package. Both the TrackVis TRK format (used by FSL, DSI Studio, AFQ, TractSeg and the XTRACT atlas) and the MRtrix3 TCK format (used by MRtrix3, QSIRecon, MRtrix3_connectome) are supported; TCK files may be gzip-compressed, TRK files may not. The bundle names are the file names without the extension, e.g. 'CST_L.trk' becomes the bundle 'CST_L'.
Note that TRK files store a transformation matrix which is not necessarily the
identity: a TRK file can contain coordinates in a voxel grid (e.g. all files of
the XTRACT atlas do). With the default coords = "ras", the coordinates
are returned in RAS+ mm space, which is what the template surfaces of
fsbrain are in, see the parameter documentation. Pass coords = "native"
to get the coordinates exactly as stored in the file.
Value
named list of fs.tracts instances, one per file (see
fs.tracts). The names are the file names
without the extension. The attribute 'files' contains the file paths, and the
attribute 'coords_space' the coordinate system of the coordinates ('ras' or
'native', see the parameter coords). An entry which was read from a
TCK file is a TCK entry, i.e., its [[i]] entries are coordinate
matrices, while the entries of a TRK file also contain the per-point scalars
and per-track properties of the file.
See Also
Other tracts functions:
download_xtract_tracts(),
vis.tracts()
Examples
## Not run:
# Read a whole tract atlas from a directory, one bundle per file:
atlas_dir = file.path(get_optional_data_filepath("tracts"), "xtract_tiny");
bundles = read.tract.bundles(atlas_dir);
names(bundles);
fs.tracts.lengths(bundles$CST_L);
# Read a single bundle:
cst = read.tract.bundles(file.path(atlas_dir, "CST_L.trk"));
## End(Not run)
Recycle parameters or whatever.
Description
Recycle parameters or whatever.
Usage
recycle(x, times)
Arguments
x |
a vector of whatever |
times |
positive integer, the required length of the output |
Value
a vector of length 'times', with the recycled 'x'
Note
Todo: most likely there is an R function for this already, find it.
Give suggestions for regions to ignore for an atlas.
Description
Give suggestions for regions to ignore for an atlas. These are regions for which many subjects do not have any vertices in them, or the Medial Wall and Unknown regions.
Usage
regions.to.ignore(atlas)
Arguments
atlas |
string. The name of an atlas. Supported strings are 'aparc' and 'aparc.a2009s'. |
Value
vector of strings, the region names.
See Also
Other atlas functions:
get.atlas.region.names(),
group.agg.atlas.native(),
group.agg.atlas.standard(),
group.annot(),
group.label.from.annot(),
label.from.annotdata(),
label.to.annot(),
spread.values.over.annot(),
spread.values.over.hemi(),
spread.values.over.subject(),
subject.annot(),
subject.atlas.agg(),
subject.label.from.annot(),
subject.lobes()
Examples
aparc_regions_ign = regions.to.ignore('aparc');
aparc_a2009s_regions_ign = regions.to.ignore('aparc.a2009s');
Collect the scimesh line layers of all fs.coloredpaths instances in a renderable list
Description
Walks a renderable list (a flat list of renderables, a hemilist,
or a single renderable) and converts everything that is an
fs.coloredpaths instance to scimesh line layers. Non-line renderables are
ignored, they are handled by coloredmeshes_to_scimesh.
Usage
renderables_to_line_layers(renderables, style = "default")
Arguments
renderables |
a renderable, or a (possibly nested) list of renderables. |
style |
a rendering style, see |
Value
a list of scimesh line layers, possibly empty.
Print a demographics report
Description
Print a demographics report
Usage
report.on.demographics(
demographics_df,
group_column_name = NULL,
paired = FALSE
)
Arguments
demographics_df |
a demographics data.frame, as returned by |
group_column_name |
string or NULL. If given, the column name of the group column. It must be a factor column with 2 levels. Enables group-comparison tests. Defaults to |
paired |
Whether the data of the two groups if paired (repeated measurements). Only relevant if group_column_name is given and tests for group differences are included in the report. Defaults to |
Value
vector of character strings, the lines of the demographics report.
See Also
Other metadata functions:
demographics.to.fsgd.file(),
read.md.demographics(),
read.md.subjects()
Resolve the subjects dir which contains a template subject.
Description
Searches for a directory which contains the surface files of the given template subject, first in the user-supplied directory (if any), then in the fsbrain package data cache, and finally in the FreeSurfer installation. Stops with an error explaining how to obtain the missing data if the template cannot be found.
Usage
resolve.template.subjects.dir(template, subjects_dir = NULL)
Arguments
template |
character string, the template subject identifier, e.g., 'fsaverage' or 'fs_LR_32'. |
subjects_dir |
character string or NULL, a user-supplied subjects dir which is checked first. |
Value
character string, the subjects dir which contains the template subject.
Plot x, y and z axes in R,G,B.
Description
Plot positive x, y, and z axes from the center to 'len'. Gets added to current plot. Useful for debugging and understanding the rgl coordinate system.
Usage
rgl.coord.lines(len = 100)
Arguments
len |
numeric scalar or vector of length 3, length of axes. You can specify a negative value to see the negative directions. |
Value
NULL, called for the plotting side effect.
Note
The x, y and z axes are plotted in red, green, and blue, respectively.
Create rglactions list, suitable to be passed as parameter to vis functions.
Description
Create rglactions list, suitable to be passed as parameter to vis functions.
Usage
rglactions()
Value
named list, an example rlgactions instance that will save a screenshot of the plot produced by the vis function in the current working directory (see getwd), under the name 'fsbrain_out.png'.
Note
List of all available rglactions: (1) snapshot_png=filepath takes a screenshot in PNG format and saves it in at filepath. (2) trans_fun=function uses the transformation function trans_fun to the data before mapping data values to colors and plotting. Popular transformation functions are limit_fun, limit_fun_na, and clip_fun. (3) text=arglist calls text3d with the given args after plotting. (4) snapshot_vec=filepath takes a screenshot in vector format and saves it in at filepath. You also need to set the format via snapshot_vec_format, valid entries are one of "ps", "eps", "tex", "pdf", "svg", "pgf" (default is 'eps'). This is experimental and may take a while.
Examples
rgla_screenie = list('snapshot_png'='fsbain_out.png');
rgla_screenie = rglactions(); # same as above
rgla_vec_scr = list('snapshot_vec'="~/fsbrain.pdf",
"snapshot_vec_format"="pdf");
rgla_clamp = list('trans_fun'=clip.data); # old style
rgla_clamp = list('trans_fun'=clip_fun(0.05, 0.95)); # new style
rgla_clamp = list('trans_fun'=clip_fun()); # equivalent.
rgla_limit = list('trans_fun'=limit_fun(2,5));
rgla_ls = list('trans_fun'=limit_fun_na(2,5), 'snapshot_png'='~/fig1.png');
Check for a key in names of rglactions.
Description
Check for a key in names of rglactions.
Usage
rglactions.has.key(rglactions, key)
Arguments
rglactions |
named list. A list in which the names are from a set of pre-defined actions, see |
Value
logical, whether the rglactions instance has the requested key as a name.
Apply data transformation rglactions.
Description
Apply data transformation rglactions.
Usage
rglactions.transform(measure_data, rglactions)
Arguments
measure_data |
numeric vector, or hemilist of numeric vectors. The data, usually vertex-wise morphometry data. |
rglactions |
named list, passed as parameter ' |
Value
the transformed data
Get rgloptions and consider global options.
Description
This function retrieves the global rgloptions defined in getOption('fsbrain.rgloptions'), or, if this is not set, returns the value from rglot.
Usage
rglo()
Value
named list, usable as 'rgloptions' parameter for vis functions like vis.subject.morph.native.
Note
You can set the default size for all fsbrain figures to 1200x1200 pixels like this: options("fsbrain.rgloptions"=list("windowRect"=c(50,50,1200,1200))).
Get rgloptions for testing.
Description
This function defines the figure size that is used during the unit tests. Currently list('windowRect' = c(50, 50, 800, 800).
Usage
rglot()
Value
named list, usable as 'rgloptions' parameter for vis functions like vis.subject.morph.native.
Draw 3D boxes at locations using rgl.
Description
Draw 3D boxes at all given coordinates using rgl, analogous to spheres3d. Constructs the coordinates for triangles making up the boxes, then uses triangles3d to render them.
Usage
rglvoxels(centers, r = 1, voxelcol = NULL, do_show = TRUE, ...)
Arguments
centers |
numerical matrix with 3 columns. Each column represents the x, y, z coordinates of a center at which to create a cube. |
r |
numerical vector or scalar, the cube edge length. This is the length of the axis-parallel edges of the cube. The vector must have length 1 (same edge length for all cubes), or the length must be identical to the number of rows in parameter |
voxelcol |
vector of rgb color strings for the individual voxels. Its length must be identical to |
do_show |
logical, whether to visualize the result in the current rgl scene |
... |
material properties, passed to |
Value
list of fs.coloredvoxels instances, invisible. The function is called for the side effect of visualizing the data, and usually you can ignore the return value.
Examples
## Not run:
# Plot a 3D cloud of 500 red voxels:
centers = matrix(rnorm(500*3)*100, ncol=3);
rglvoxels(centers, voxelcol="red");
## End(Not run)
Build a 4x4 rotation matrix (Rodrigues formula).
Description
Build a 4x4 rotation matrix (Rodrigues formula).
Usage
rotation.matrix(angle_rad, x, y, z)
Arguments
angle_rad |
numeric scalar, the rotation angle in radians. |
x |
numeric, x component of the rotation axis. |
y |
numeric, y component of the rotation axis. |
z |
numeric, z component of the rotation axis. |
Value
4x4 numeric rotation matrix in homogeneous coordinates. Matches the
convention of rotate3d / rotationMatrix.
Get rotation matrix for a 3D rotation around an axis.
Description
Get rotation matrix for a 3D rotation around an axis.
Usage
rotation.matrix.for.axis.rot(angle_rad, x, y, z, with_trans = TRUE)
Arguments
angle_rad |
doule, the angle in radians |
x |
rotation axis |
y |
rotation axis |
z |
rotation axis |
with_trans |
logical, whether to extend the 3x3 rotation matrix to a 4x4 rotation and tranlsation matrix. |
Value
a 3x3 or 4x4 double matrix
Safe wrapper around magick::image_trim that handles blank images.
Description
Safe wrapper around magick::image_trim that handles blank images.
Usage
safe.image.trim(image)
Arguments
image |
a magick image object. |
Value
the trimmed magick image, or the original if trimming fails (e.g., uniform/blank image).
Scale given values to range 0..1.
Description
Scale given values to range 0..1.
Usage
scale01(x, ...)
Arguments
x |
the numeric data |
... |
the numeric data |
Value
the scaled data
Color line segments by their direction.
Description
Computes the classic DTI orientation colors, i.e., segments running left-right, anterior-posterior and superior-inferior get different colors (red, green and blue for the 'axis' mode).
Usage
segment.orientation.colors(from, to, mode = c("axis", "rgb"))
Arguments
from |
matrix of segment start points, see |
to |
matrix of segment end points, same size as |
mode |
character string, either 'axis' (every segment gets one fully saturated color, based on the dominant direction axis) or 'rgb' (the color channels are the absolute direction components, which gives smoother but paler colors). |
Value
vector of hex color strings, one per segment.
Compute the bounding box of line segments.
Description
Compute the bounding box of line segments.
Usage
segment_bbox(from, to)
Arguments
from |
matrix of segment start points. |
to |
matrix of segment end points. |
Value
numeric vector of length 6: c(xmin, xmax, ymin, ymax, zmin, zmax).
Get all shape descriptor names.
Description
Get all shape descriptor names.
Usage
shape.descriptor.names()
Value
vector of character strings, the names
Computes geometric curvature-based descriptors.
Description
Computes geometric curvature-based descriptors.
Usage
shape.descriptors(pc, descriptors = shape.descriptor.names())
Arguments
pc |
a 'principal_curvatures' data list, see |
descriptors |
vector of character strings, the descriptors you want. See |
Value
dataframe of descriptor values, each columns contains one descriptor.
References
Shimony et al. (2016). Comparison of cortical folding measures for evaluation of developing human brain. Neuroimage, 125, 780-790.
Determine the backend used for iso-surface extraction.
Description
Determine the backend used for iso-surface extraction.
Usage
shell.backend(backend = "auto")
Arguments
backend |
character string, one of 'auto', 'Rvcg' or 'misc3d'. |
Value
character string, either 'Rvcg' or 'misc3d'.
Create the coloredmeshes of the shells.
Description
Creates one fs.coloredmesh per shell, each with its own color and alpha value stored in the mesh style.
Usage
shell.coloredmeshes(
meshes,
levels,
colors = NULL,
alphas = NULL,
palette = "grey_context",
alpha_range = NULL
)
Arguments
meshes |
list of |
levels |
numerical vector of the iso-levels, ascending. |
colors |
character vector of colors or |
alphas |
numerical vector of alpha values or |
palette |
character string, the name of the palette, see |
alpha_range |
numerical vector of length 2 or |
Value
list of fs.coloredmesh instances, one per shell.
Cut away part of a mesh.
Description
Removes all faces of a mesh which are (partially) located in the given anatomical direction of a cut plane, so that one can look inside the object. The mesh is not closed at the cut plane.
Usage
shell.cut.away(mesh, cut_away = "right", cut_fraction = 0.5)
Arguments
mesh |
a |
cut_away |
character string, one of 'left', 'right', 'posterior', 'anterior', 'inferior' or 'superior'. |
cut_fraction |
numerical, the position of the cut plane along the respective axis, as a fraction of the bounding box of the mesh. |
Value
a mesh3d instance with the respective faces removed.
Extract the iso-surface mesh of a volume at one level.
Description
The mesh is returned in the voxel space of the volume, using 1-based R array indices (i.e., the first voxel of the volume is at index 1), no matter which backend is used. Use index2ras_tkr (not vox2ras_tkr(), which expects 0-based CRS indices) to transform such a mesh to surface RAS. The result is welded and free of degenerate faces, see mesh.weld.
Usage
shell.extract.mesh(volume, level, backend)
Arguments
volume |
a 3D numerical array, in voxel space. |
level |
numerical, the iso-level. |
backend |
character string, 'Rvcg' or 'misc3d'. |
Value
a mesh3d instance with normals, in the voxel space of the volume, or NULL if the level is not within the range of the data.
Compute the iso-levels of the shells.
Description
Compute the iso-levels of the shells.
Usage
shell.levels(
volume,
levels = NULL,
num_levels = 5L,
level_type = "quantile",
level_range = c(0.2, 0.95)
)
Arguments
volume |
a 3D numerical array. |
levels |
numerical vector or |
num_levels |
positive integer, the number of shells to compute if |
level_type |
character string, 'quantile' or 'linear'. |
level_range |
numerical vector of length 2, the range from which the levels are taken. |
Value
ascending numerical vector of levels, the outermost shell first.
Compute the colors and alpha values of the shells.
Description
The palette defines how the shells look: their colors and how transparent they are, from the outermost to the innermost shell. Three palettes are available:
'grey_context' (the default): all shells but the innermost one are grey (like the semi-transparent cortex in
vis.subcortical.region.valuesis), and the innermost shell is rendered in a warm color and fully opaque. This gives the impression of looking at a structure inside a translucent head, and it makes a single feature stand out, at the price of hiding the level of the inner shells.'sequential': a single hue, getting lighter and more opaque towards the innermost shell. Useful to emphasize the nested structure, and to avoid the colorful look of 'viridis'.
'viridis': the full viridis ramp, with the outer shells dark and very transparent and the inner ones bright. This is the most colorful option, and it encodes the iso-level in the color.
Usage
shell.palette(palette = "grey_context", num_shells = 4L, alpha_range = NULL)
Arguments
palette |
character string, the name of the palette: one of 'grey_context', 'sequential' or 'viridis'. |
num_shells |
positive integer, the number of shells. |
alpha_range |
numerical vector of length 2 or |
Value
a named list with the entries 'colors' (character vector, one color per shell) and 'alphas' (numerical vector, one alpha value per shell).
Extract the 3D data array of a volume.
Description
Accepts a 3D array or an fs.volume instance, and selects the requested frame of a 4D volume.
Usage
shell.volume.data(volume, frame = 1L)
Arguments
volume |
a 3D numerical array or an |
frame |
positive integer, the frame to use for a 4D volume. |
Value
a 3D numerical array.
Shift hemispheres apart.
Description
Modify mesh coordinates of a hemilist of coloredmeshes to introduce a gap between the two hemispheres.
Usage
shift.hemis.apart(
coloredmeshes_hl,
shift_by = NULL,
axis = 1L,
hemi_order_on_axis = "lr",
min_dist = 0
)
Arguments
coloredmeshes_hl |
hemilist of coloredmeshes |
shift_by |
numerical vector of length 2, the amount by which to shift the hemis. The first value is for the left hemi, the second for the right hemi (values can be negative). Pass |
axis |
positive integer, one of 1L, 2L or 3L. The axis on which to shift (x,y,z). |
hemi_order_on_axis |
character string, one of 'auto', 'auto_flipped', 'lr' or 'rl'. Defines how to determine the order of the hemis on the axes. This is ignored unless 'shift_by' is |
min_dist |
numerical scalar, the minimal distance of the hemispheres. Ignored unless 'shift_by' is |
Value
hemilist of coloredmeshes, the shifted meshes
Shift hemis apart if indicated in rglactions
Description
Shift hemis apart if indicated in rglactions
Usage
shift.hemis.rglactions(coloredmeshes, rglactions)
Arguments
coloredmeshes |
hemilist of coloredmeshes |
rglactions |
the |
Value
hemilist of coloredmeshes, the coordinates may or may not have been shifted, depending on the rglactions.
Download optional demo data if needed and return its path.
Description
This is a wrapper around download_optional_data() and get_optional_data_filepath("subjects_dir"). It will download the optional fsbrain demo data unless it already exists locally.
Usage
sjd.demo(accept_freesurfer_license = FALSE)
Arguments
accept_freesurfer_license |
logical, whether you want to also download fsaverage and fsaverage3, and accept the FreeSurfer license for fsaverage and fsaverage3, available at https://surfer.nmr.mgh.harvard.edu/fswiki/FreeSurferSoftwareLicense. Defaults to FALSE. If FALSE, only the demo data from fsbrain itself ('subject1') will be downloaded. |
Value
character string, the path to the 'subjects_dir' directory within the downloaded optional data directory.
Note
This function will stop if the data cannot be accessed, i.e., the 'subjects_dir' does not exist after trying to download the data.
Get subjects list from subjects.txt file in dir.
Description
Get subjects list from subjects.txt file in dir.
Usage
sjld(subjects_dir)
Arguments
subjects_dir |
character string, existing subjects dir with a subjects.txt file containing one subject per line and no header line. |
Value
named list with entries: 'd', the query subjects_dir (repeated from the parameter), 'l', vector of character strings, the subjects_list read from the file, 'f', the subjects_file.
Note
This function stops if the file does not exist or cannot be read.
Sort coloredmeshes into 2 lists by their 'hemi' property.
Description
Sort coloredmeshes into 2 lists by their 'hemi' property.
Usage
sortcoloredmeshes.by.hemi(coloredmeshes)
Arguments
coloredmeshes |
list of coloredmeshes or other renderables |
Value
named list with two entries: "lh": list of coloredmeshes that have property hemi set to 'lh'. "rh": list of coloredmeshes that have property hemi set to 'rh'. The rest is ignored.
Transform spherical coordinates to FreeSurfer surface space to plot things around a brain.
Description
Transform spherical coordinates to FreeSurfer surface space to plot things around a brain.
Usage
sph2fs(
lon,
lat,
radius = surf.radius.fsaverage(),
center = surf.center.fsaverage(),
deg = TRUE
)
Arguments
lon |
numerical vector, the longitudes. See 'deg' for unit information. |
lat |
numerical vector, the latitudes. See 'deg' for unit information. |
radius |
numerical vector, the radii. Defaults to the radius of the combined mesh from the fsaverage lh and rh surfaces. |
center |
numerical vector of length 3, the x, y, and z coordinates of the target center. The spherical coordinates are transformed on the unit sphere, and this parameter is used to translate the resulting cartesian coordinates to a new center, typically the center of the surface meshes or MRI volume or substructures. If you want no translation, pass |
deg |
logical, whether to use degrees (as opposed to radians) as the unit for 'lat' and 'lon'. |
Note
This function can be used to plot things in FreeSurfer space using spherical coordinates, as commonly used in EEG to define electrode positions.
Examples
## Not run:
# Draw voxels on a sphere around fsaverage:
lat = seq.int(from=0, to=360, by=30);
lon = rep(0, length(lat));
vis.fs.surface('~/software/freesurfer/subjects/fsaverage/surf/lh.white');
fsbrain::rglvoxels(sph2fs(lat, lon), voxelcol = 'red');
fsbrain::rglvoxels(sph2fs(lon, lat), voxelcol = 'green');
## End(Not run)
Compute the mesh of a set of spheres.
Description
Merges one slightly refined icosphere per sphere into a single mesh, i.e., the result is a single surface with one connected component per input sphere. This is much cheaper to render (and to convert for the scimesh backend) than a list of hundreds of separate sphere meshes.
Usage
spheres.mesh(centers, radii = 1, subdivisions = 2L)
Arguments
centers |
n x 3 numeric matrix, the sphere centers. |
radii |
numeric vector of length n or a single number, the sphere radii. |
subdivisions |
non-negative integer, the number of subdivisions of the unit icosphere, see |
Value
an fs.surface instance (a mesh) with one component per sphere.
Examples
m = fsbrain:::spheres.mesh(rbind(c(0, 0, 0), c(10, 0, 0)), c(1, 2));
nrow(m$vertices);
Spread a single value for a region to all region vertices.
Description
Given an annotation and a list of values (one per brain region), return data that has the values for each region mapped to all region vertices.
Usage
spread.values.over.annot(
annot,
region_value_list,
value_for_unlisted_regions = NaN,
warn_on_unmatched_list_regions = FALSE,
warn_on_unmatched_atlas_regions = FALSE
)
Arguments
annot |
annotation. The result of calling fs.read.annot. |
region_value_list |
named list of strings. Each name must be a region name from the annotation, and the value must be the value to spread to all region vertices. |
value_for_unlisted_regions |
numeric scalar. The value to assign to vertices which are part of atlas regions that are not listed in region_value_list. Defaults to NaN. |
warn_on_unmatched_list_regions |
logical. Whether to print a warning when a region occurs in the region_value_list that is not part of the given atlas (and the value assigned to this region is thus ignored in the output file and data). Defaults to FALSE. |
warn_on_unmatched_atlas_regions |
logical. Whether to print a warning when a region occurs in the atlas that is not part of the given region_value_list (and thus the vertices of the region will be assigned the value 'value_for_unlisted_regions' in the output file and data). Defaults to FALSE. |
Value
named list with following entries: "spread_data": a vector of length n, where n is the number of vertices in the annotation. One could write this to an MGH or curv file for visualization. "regions_not_in_annot": list of regions which are not in the annotation, but in the region_value_list. Their values were ignored.
See Also
Other atlas functions:
get.atlas.region.names(),
group.agg.atlas.native(),
group.agg.atlas.standard(),
group.annot(),
group.label.from.annot(),
label.from.annotdata(),
label.to.annot(),
regions.to.ignore(),
spread.values.over.hemi(),
spread.values.over.subject(),
subject.annot(),
subject.atlas.agg(),
subject.label.from.annot(),
subject.lobes()
Examples
## Not run:
fsbrain::download_optional_data();
subjects_dir = fsbrain::get_optional_data_filepath("subjects_dir");
annot = subject.annot(subjects_dir, 'subject1', 'lh', 'aparc');
region_value_list = list("bankssts"=0.9, "precuneus"=0.7);
morph_like_data =
spread.values.over.annot(annot, region_value_list, value_for_unlisted_regions=0.0);
## End(Not run)
Spread the values in the region_value_list and return them for one hemisphere.
Description
Given an atlas and a list that contains one value for each atlas region, create morphometry data in which all region vertices are assigned the value. Can be used to plot stuff like p-values or effect sizes onto brain regions.
Usage
spread.values.over.hemi(
subjects_dir,
subject_id,
hemi,
atlas,
region_value_list,
value_for_unlisted_regions = NA,
silent = FALSE
)
Arguments
subjects_dir |
string. The FreeSurfer SUBJECTS_DIR, i.e., a directory containing the data for all your subjects, each in a subdir named after the subject identifier. |
subject_id |
string. The subject identifier |
hemi |
string, one of 'lh' or 'rh'. The hemisphere name. Used to construct the names of the annotation and morphometry data files to be loaded. |
atlas |
string. The atlas name. E.g., "aparc", "aparc.2009s", or "aparc.DKTatlas". Used to construct the name of the annotation file to be loaded. |
region_value_list |
named list. A list in which the names are atlas regions, and the values are the value to write to all vertices of that region. You can pass an unnamed list or vector, but then the length must exactly match the number of regions in the atlas, and the order must match the annotation file of the subject and hemisphere. Use with care, and keep in mind that some subjects do not have all regions. |
value_for_unlisted_regions |
numeric scalar. The value to assign to vertices which are part of atlas regions that are not listed in region_value_list. Defaults to NaN. |
silent |
logical, whether to suppress mapping info in case of unnamed region value lists (see 'lh_region_value_list' description). |
Value
numeric vector containing the data.
See Also
Other atlas functions:
get.atlas.region.names(),
group.agg.atlas.native(),
group.agg.atlas.standard(),
group.annot(),
group.label.from.annot(),
label.from.annotdata(),
label.to.annot(),
regions.to.ignore(),
spread.values.over.annot(),
spread.values.over.subject(),
subject.annot(),
subject.atlas.agg(),
subject.label.from.annot(),
subject.lobes()
Examples
## Not run:
fsbrain::download_optional_data();
subjects_dir = fsbrain::get_optional_data_filepath("subjects_dir");
region_value_list = list("bankssts"=0.9, "precuneus"=0.7);
morph_like_data =
spread.values.over.hemi(subjects_dir, 'subject1', 'lh', 'aparc', region_value_list);
## End(Not run)
Spread the values in the region_value_list and return them for one hemisphere.
Description
Given an atlas and a list that contains one value for each atlas region, create morphometry data in which all region vertices are assigned the value. Can be used to plot stuff like p-values or effect sizes onto brain regions.
Usage
spread.values.over.subject(
subjects_dir,
subject_id,
atlas,
lh_region_value_list,
rh_region_value_list,
value_for_unlisted_regions = NaN,
silent = FALSE
)
Arguments
subjects_dir |
string. The FreeSurfer SUBJECTS_DIR, i.e., a directory containing the data for all your subjects, each in a subdir named after the subject identifier. |
subject_id |
string. The subject identifier |
atlas |
string. The atlas name. E.g., "aparc", "aparc.2009s", or "aparc.DKTatlas". Used to construct the name of the annotation file to be loaded. |
lh_region_value_list |
named list. A list in which the names are atlas regions, and the values are the value to write to all vertices of that region. Applied to the left hemisphere. |
rh_region_value_list |
named list. A list in which the names are atlas regions, and the values are the value to write to all vertices of that region. Applied to the right hemisphere. |
value_for_unlisted_regions |
numeric scalar. The value to assign to vertices which are part of atlas regions that are not listed in region_value_list. Defaults to NaN. |
silent |
logical, whether to suppress mapping info in case of unnamed region value lists (see 'lh_region_value_list' description). |
Value
named list with entries 'lh' and 'rh'. Each value is a numeric vector containing the data for the respective hemisphere.
See Also
Other atlas functions:
get.atlas.region.names(),
group.agg.atlas.native(),
group.agg.atlas.standard(),
group.annot(),
group.label.from.annot(),
label.from.annotdata(),
label.to.annot(),
regions.to.ignore(),
spread.values.over.annot(),
spread.values.over.hemi(),
subject.annot(),
subject.atlas.agg(),
subject.label.from.annot(),
subject.lobes()
Examples
## Not run:
fsbrain::download_optional_data();
subjects_dir = fsbrain::get_optional_data_filepath("subjects_dir");
lh_region_value_list = list("bankssts"=0.9, "precuneus"=0.7);
rh_region_value_list = list("bankssts"=0.5);
morph_like_data =
spread.values.over.subject(subjects_dir, 'subject1', 'aparc',
lh_region_value_list, rh_region_value_list);
## End(Not run)
Compute the line segments of streamlines.
Description
Converts streamlines (a list of point sequences) into the pair of
point matrices that describes the line segments between their consecutive
points, which is the representation used by fs.coloredpaths.
This is vectorized: the segments of all streamlines are computed in one go,
no matter how many there are.
Usage
streamlines.to.segments(tracts)
Arguments
tracts |
an |
Value
named list with entries from (matrix of segment start points),
to (matrix of segment end points) and lengths (integer vector,
the number of segments of each streamline).
Turn a list of streamlines into an fs.tracts instance.
Description
Turn a list of streamlines into an fs.tracts instance.
Usage
streamlines.to.tracts(streamlines)
Arguments
streamlines |
list of (n, 3) matrices, one per streamline. |
Value
fs.tracts instance.
Subdivide all triangles of a mesh (one subdivision step).
Description
Splits every triangle into 4 by adding the edge midpoints, and projects the new vertices onto the sphere, i.e., the new vertices are scaled to unit length. This is the standard icosphere refinement, and it requires the input to be a sphere centered at the origin.
Usage
subdivide.triangles(vertices, faces)
Arguments
vertices |
n x 3 numeric matrix, the vertex coordinates. |
faces |
m x 3 integer matrix, the triangle vertex indices (1-based). |
Value
named list with entries 'vertices' and 'faces', the refined mesh.
Load an annotation for a subject.
Description
Load a brain surface annotation, i.e., a cortical parcellation based on an atlas, for a subject.
Usage
subject.annot(subjects_dir, subject_id, hemi, atlas)
Arguments
subjects_dir |
string. The FreeSurfer SUBJECTS_DIR, i.e., a directory containing the data for all your subjects, each in a subdir named after the subject identifier. |
subject_id |
string. The subject identifier |
hemi |
string, one of 'lh' or 'rh'. The hemisphere name. Used to construct the names of the annotation and morphometry data files to be loaded. |
atlas |
string. The atlas name. E.g., "aparc", "aparc.2009s", or "aparc.DKTatlas". Used to construct the name of the annotation file to be loaded. |
Value
the annotation, as returned by read.fs.annot. It is a named list, enties are: "vertices" vector of n vertex indices, starting with 0. "label_codes": vector of n integers, each entry is a color code, i.e., a value from the 5th column in the table structure included in the "colortable" entry (see below). "label_names": the n brain structure names for the vertices, already retrieved from the colortable using the code. "hex_colors_rgb": Vector of hex color for each vertex.
The "colortable" is another named list with 3 entries: "num_entries": int, number of brain structures. "struct_names": vector of strings, the brain structure names. "table": numeric matrix with num_entries rows and 5 colums. The 5 columns are: 1 = color red channel, 2=color blue channel, 3=color green channel, 4=color alpha channel, 5=unique color code. "colortable_df": The same information as a dataframe. Contains the extra columns "hex_color_string_rgb" and "hex_color_string_rgba" that hold the color as an RGB(A) hex string, like "#rrggbbaa".
See Also
Other atlas functions:
get.atlas.region.names(),
group.agg.atlas.native(),
group.agg.atlas.standard(),
group.annot(),
group.label.from.annot(),
label.from.annotdata(),
label.to.annot(),
regions.to.ignore(),
spread.values.over.annot(),
spread.values.over.hemi(),
spread.values.over.subject(),
subject.atlas.agg(),
subject.label.from.annot(),
subject.lobes()
Examples
## Not run:
fsbrain::download_optional_data();
subjects_dir = fsbrain::get_optional_data_filepath("subjects_dir");
annot_lh = subject.annot(subjects_dir, "subject1", "lh", "aparc");
## End(Not run)
Compute annot border vertices.
Description
Compute annot border vertices.
Usage
subject.annot.border(
subjects_dir,
subject_id,
hemi,
atlas,
surface = "white",
expand_inwards = 0L,
limit_to_regions = NULL
)
Arguments
subjects_dir |
string. The FreeSurfer SUBJECTS_DIR, i.e., a directory containing the data for all your subjects, each in a subdir named after the subject identifier. |
subject_id |
string. The subject identifier. |
hemi |
string, one of 'lh', 'rh', or 'both'. The hemisphere name. Used to construct the names of the label data files to be loaded. |
atlas |
string. The atlas name. E.g., "aparc", "aparc.2009s", or "aparc.DKTatlas". Used to construct the name of the annotation file to be loaded. |
surface |
string. The display surface. E.g., "white", "pial", or "inflated". Defaults to "white". |
expand_inwards |
integer, additional thickness of the borders. Increases computation time, defaults to 0L. |
limit_to_regions |
vector of character strings or NULL, a list of regions for which to draw the outline (see |
Value
hemilist of integer vectors, the vertices in the border
Aggregate morphometry data over brain atlas regions for a subject.
Description
Aggregate morphometry data over brain atlas regions, e.g., compute the mean thickness value over all regions in an atlas.
Usage
subject.atlas.agg(
vertex_morph_data,
vertex_label_names,
agg_fun = base::mean,
requested_label_names = c()
)
Arguments
vertex_morph_data |
numeric vector. The morphometry data, one value per vertex. The morphometry data are typically loaded from an MGZ or curv format file with the read.fs.curv or read.fs.mgh functions. |
vertex_label_names |
string vector. The region names for the vertices, one string per vertex. The region names are typically loaded from an annotation file with the read.fs.annot function. |
agg_fun |
function. An R function that aggregates data, typically max, mean, min or something similar. Note: this is NOT a string, put the function name without quotes. Defaults to |
requested_label_names |
string vector. The label (or region) names that you want to occur in the output. If not specified, all region names which occur in the data are used. If given, and one of the requested names does NOT occur in the data, it will occur in the output with aggregation value NaN. If given, and one of the names from the data does NOT occur in the requested list, it will NOT occur in the output. So if you specify this, the output dataframe will contain a row for a region if and only if it is in the requested list. |
Value
dataframe with aggregated values for all regions, with 2 columns and n rows, where n is the number of effective regions. The columns are: "region": string, contains the region name. "aggregated": numeric, contains the result of applying agg_fun to the morphometry data in that region.
See Also
Other aggregation functions:
group.agg.atlas.native(),
group.agg.atlas.standard(),
group.morph.agg.standard.vertex()
Other atlas functions:
get.atlas.region.names(),
group.agg.atlas.native(),
group.agg.atlas.standard(),
group.annot(),
group.label.from.annot(),
label.from.annotdata(),
label.to.annot(),
regions.to.ignore(),
spread.values.over.annot(),
spread.values.over.hemi(),
spread.values.over.subject(),
subject.annot(),
subject.label.from.annot(),
subject.lobes()
Examples
## Not run:
fsbrain::download_optional_data();
subjects_dir = fsbrain::get_optional_data_filepath("subjects_dir");
morph_data = subject.morph.native(subjects_dir, 'subject1', 'thickness', 'lh');
annot = subject.annot(subjects_dir, 'subject1', 'lh', 'aparc');
agg = subject.atlas.agg(morph_data, annot$label_names);
## End(Not run)
Compute mean geodesic distance descriptor for a subject.
Description
For all vertices: compute the mean pseudo-geodesic distance from this vertex to all others in the same hemisphere. Computes |V|^2 geodesic distances.
Usage
subject.descriptor.geodesic.average.distance(
subjects_dir,
subject_id,
surface = "white",
hemi = "both",
...
)
Arguments
subjects_dir |
string. The FreeSurfer SUBJECTS_DIR, i.e., a directory containing the data for all your subjects, each in a subdir named after the subject identifier. |
subject_id |
string. The subject identifier. |
surface |
string. The display surface. E.g., "white", "pial", or "inflated". Defaults to "white". |
hemi |
string, one of 'lh', 'rh', or 'both'. The hemisphere name. Used to construct the names of the label data files to be loaded. |
... |
extra parameters passed on to |
Value
a hemilist containing vectors with the descriptor data for the requested hemisphere(s). The length of the vectors is the number of vertices in the surface, and the value for a vertex is the mean geodesic distance to all other vertices for this vertex.
Note
This takes quite a while for full-resolution meshes. Use down-sampled versions to quickly try it (see example).
Examples
## Not run:
download_fsaverage3(TRUE);
sjd = fsaverage.path();
dist = subject.descriptor.geodesic.average.distance(sjd,
"fsaverage3", surface = "white", hemi = "both");
vis.data.on.subject(sjd, "fsaverage3", morph_data_lh = dist$lh);
## End(Not run)
Check whether a subject directory contains the essential files of a subject.
Description
A subject directory can be incomplete, e.g., the package cache can contain a subject directory that was created by downloading only the atlas files for it (see download_fsaverage_atlases). Such a directory does not contain the surfaces of the subject, and using it makes all functions fail that need them. This function checks for the file 'surf/lh.white', which is part of every subject (including fsaverage and the fsaverage template derivatives).
Usage
subject.dir.has.core.files(subject_dir)
Arguments
subject_dir |
string, the path to the directory of a single subject. |
Value
logical, whether the directory contains the essential files of a subject.
Construct filepath of any freesurfer file.
Description
Construct filepath of any freesurfer file.
Usage
subject.filepath.any(
subjects_dir,
subject_id,
relative_path_parts,
hemi = NULL,
file_tag = "",
warn_if_nonexistent = FALSE
)
Arguments
subjects_dir |
character string. The FreeSurfer SUBJECTS_DIR, i.e., a directory containing the data for all your subjects, each in a subdir named after the subject identifier. |
subject_id |
character string. The subject identifier. Can be a vector of subject identifiers. |
relative_path_parts |
vector of strings. The path to the file, e.g., c("surf", "lh.area"). |
hemi |
string, one of 'lh', 'rh', or NULL. Defaults to NULL. If a hemisphere name is given, it is added as a prefix to the last entry in relative_path_parts, separated by a dot. |
file_tag |
string. A one-word description of the file type that will show up in the error message to describe the file if it is missing. Leads to a better error message. Examples: 'morphometry' or 'label'. Only relevant if warn_if_nonexistent is TRUE. Defaults to the empty string. |
warn_if_nonexistent |
logical. Whether to print a warning if the file does not exist or cannot be accessed. Defaults to FALSE. |
Value
string, the file path. (Or a vector of strings if 'subject_id' is a vector).
Examples
## Not run:
fsbrain:::subject.filepath.any("/data/study1", "subject1",
c("surf", "area"), hemi="lh");
fsbrain:::subject.filepath.any("/data/study1", c("subject1", "subject2"),
c("surf", "area"), hemi="lh");
## End(Not run)
Construct filepath of native space morphometry data file.
Description
Construct filepath of native space morphometry data file.
Usage
subject.filepath.morph.native(
subjects_dir,
subject_id,
measure,
hemi,
format = "curv",
warn_if_nonexistent = FALSE,
error_if_nonexistent = FALSE
)
Arguments
subjects_dir |
string. The FreeSurfer SUBJECTS_DIR, i.e., a directory containing the data for all your subjects, each in a subdir named after the subject identifier. |
subject_id |
string. The subject identifier |
measure |
string. Name of the vertex-wise measure of morphometry data file. E.g., "area" or "thickness". Used to construct the name of the morphometry file to be loaded. |
hemi |
string, one of 'lh' or 'rh'. The hemisphere name. |
format |
string. One of 'mgh', 'mgz', 'curv'. Defaults to 'curv'. |
warn_if_nonexistent |
logical. Whether to print a warning if the file does not exist or cannot be accessed. Defaults to FALSE. |
error_if_nonexistent |
logical. Whether to raise an error if the file does not exist or cannot be accessed. Defaults to FALSE. |
Value
string, the file path.
Construct filepath of standard space morphometry data file.
Description
Construct filepath of standard space morphometry data file.
Usage
subject.filepath.morph.standard(
subjects_dir,
subject_id,
measure,
hemi,
fwhm = "10",
template_subject = "fsaverage",
format = "auto",
warn_if_nonexistent = FALSE,
error_if_nonexistent = FALSE
)
Arguments
subjects_dir |
string. The FreeSurfer SUBJECTS_DIR, i.e., a directory containing the data for all your subjects, each in a subdir named after the subject identifier. |
subject_id |
string. The subject identifier. Can be a vector. |
measure |
string. Name of the vertex-wise measure of morphometry data file. E.g., "area" or "thickness". Used to construct the name of the morphometry file to be loaded. |
hemi |
string, one of 'lh' or 'rh'. The hemisphere name. |
fwhm |
string. Smoothing as string, e.g. '10' or '25'. Defaults to '10'. |
template_subject |
string. Template subject name, defaults to 'fsaverage'. |
format |
string. One of 'mgh', 'mgz', 'curv'. Defaults to 'mgh'. |
warn_if_nonexistent |
logical. Whether to print a warning if the file does not exist or cannot be accessed. Defaults to FALSE. |
error_if_nonexistent |
logical. Whether to raise an error if the file does not exist or cannot be accessed. Defaults to FALSE. |
Value
string, the file path. (Or a vector if 'subject_id' is a vector.)
Retrieve label data for a single subject.
Description
Load a label (like 'label/lh.cortex.label') for a subject from disk. Uses knowledge about the FreeSurfer directory structure to load the correct file.
Usage
subject.label(
subjects_dir,
subject_id,
label,
hemi,
return_one_based_indices = TRUE,
full = FALSE
)
Arguments
subjects_dir |
string. The FreeSurfer SUBJECTS_DIR, i.e., a directory containing the data for all your subjects, each in a subdir named after the subject identifier. |
subject_id |
string. The subject identifier |
label |
string. Name of the label file, without the hemi part. You can include the '.label' suffix. E.g., 'cortex.label' for '?h.cortex.label'. You can also pass just the label (e.g., 'cortex'): if the string does not end with the suffix '.label', that suffix gets added auomatically. |
hemi |
string, one of 'lh', 'rh', or 'both'. The hemisphere name. Used to construct the names of the label data files to be loaded. For 'both', see the information on the return value. |
return_one_based_indices |
logical. Whether the indices should be 1-based. Indices are stored zero-based in the file, but R uses 1-based indices. Defaults to TRUE, which means that 1 will be added to all indices read from the file before returning them. |
full |
logical, whether to return the full label structure instead of only the vertex indices. |
Value
integer vector with label data: the list of vertex indices in the label. See 'return_one_based_indices' for important information. If parameter hemi is set to both, a named list with entries lh and rh is returned, and the values of are the respective labels.
See Also
Other label data functions:
group.label(),
labeldata.from.mask(),
mask.from.labeldata.for.hemi()
Examples
## Not run:
fsbrain::download_optional_data();
subjects_dir = fsbrain::get_optional_data_filepath("subjects_dir");
cortex_lh = subject.label(subjects_dir, "subject1", "cortex.label", "lh");
## End(Not run)
Extract a region from an atlas annotation as a label for a subject.
Description
The returned label can be used to mask morphometry data, e.g., to set the values of a certain region to NaN or to extract only values from a certain region.
Usage
subject.label.from.annot(
subjects_dir,
subject_id,
hemi,
atlas,
region,
return_one_based_indices = TRUE,
invert = FALSE,
error_on_invalid_region = TRUE
)
Arguments
subjects_dir |
string. The FreeSurfer SUBJECTS_DIR, i.e., a directory containing the data for all your subjects, each in a subdir named after the subject identifier. |
subject_id |
string. The subject identifier. |
hemi |
string, one of 'lh' or 'rh'. The hemisphere name. Used to construct the names of the label data files to be loaded. |
atlas |
string. The atlas name. E.g., "aparc", "aparc.2009s", or "aparc.DKTatlas". Used to construct the name of the annotation file to be loaded. |
region |
string. A valid region name for the annotation, i.e., one of the regions of the atlas. |
return_one_based_indices |
logical. Whether the indices should be 1-based. Indices are stored zero-based in label files, but R uses 1-based indices. Defaults to TRUE. |
invert |
logical. If TRUE, return the indices of all vertices which are NOT part of the region. Defaults to FALSE. |
error_on_invalid_region |
logical. Whether to throw an error if the given region does not appear in the region list of the annotation. If set to FALSE, this will be ignored and an empty vertex list will be returned. Defaults to TRUE. |
Value
integer vector with label data: the list of vertex indices in the label.
See Also
Other atlas functions:
get.atlas.region.names(),
group.agg.atlas.native(),
group.agg.atlas.standard(),
group.annot(),
group.label.from.annot(),
label.from.annotdata(),
label.to.annot(),
regions.to.ignore(),
spread.values.over.annot(),
spread.values.over.hemi(),
spread.values.over.subject(),
subject.annot(),
subject.atlas.agg(),
subject.lobes()
Load labels representing brain lobes.
Description
This gives you labels that represent brain lobes for a subject. The lobe definition is based on the Desikan-Killiany atlas (Desikan et al., 2010) as suggested on the FreeSurfer website at https://surfer.nmr.mgh.harvard.edu/fswiki/CorticalParcellation.
Usage
subject.lobes(
subjects_dir,
subject_id,
hemi = "both",
include_cingulate = TRUE,
as_annot = FALSE
)
Arguments
subjects_dir |
string. The FreeSurfer SUBJECTS_DIR, i.e., a directory containing the data for all your subjects, each in a subdir named after the subject identifier. |
subject_id |
string. The subject identifier |
hemi |
string, one of 'lh', 'rh', or 'both'. The hemisphere name. Used to construct the names of the surface file to be loaded. For 'both', see the information on the return value. |
include_cingulate |
logical, whether to include the vertices of the cingulate in the lobes |
as_annot |
return a hemilist of annotations instead of the return value described in the value section |
Value
hemilist of integer vectors, the vectors represent vertex indices of the hemispheres, and each vertex is assigned one of the following values: 0=no_lobe, 1=frontal, 2=parietal, 3=temporal, 4=occipital.
See Also
Other atlas functions:
get.atlas.region.names(),
group.agg.atlas.native(),
group.agg.atlas.standard(),
group.annot(),
group.label.from.annot(),
label.from.annotdata(),
label.to.annot(),
regions.to.ignore(),
spread.values.over.annot(),
spread.values.over.hemi(),
spread.values.over.subject(),
subject.annot(),
subject.atlas.agg(),
subject.label.from.annot()
Other label functions:
apply.label.to.morphdata(),
apply.labeldata.to.morphdata(),
subject.mask(),
vis.labeldata.on.subject(),
vis.subject.label()
Compute a mask for a subject.
Description
Compute a binary vertex mask for the surface vertices of a subject. By defaults, the medial wall is masked.
Usage
subject.mask(
subjects_dir,
subject_id,
hemi = "both",
from_label = "cortex",
surf_num_verts = "white",
invert_mask = TRUE
)
Arguments
subjects_dir |
string. The FreeSurfer SUBJECTS_DIR, i.e., a directory containing the data for all your subjects, each in a subdir named after the subject identifier. |
subject_id |
string. The subject identifier |
hemi |
string, one of 'lh', 'rh' or 'both'. The hemisphere name. Used to construct the names of the annotation and morphometry data files to be loaded. |
from_label |
string, the label file to use. Defaults to 'cortex', which will result in a mask of the medial wall versus cortex vertices. |
surf_num_verts |
string or integer. If an integer, interpreted as the number of vertices in the respective surface (lh or rh). If a character string, interpreted as a surface name, (e.g., |
invert_mask |
logical, whether to invert the mask. E.g., when the mask is loaded from the cortex labels, if this is set to FALSE, the cortex would be masked (set to 0 in the final mask). If you want everything but the cortex to be masked (set to 0), you should set this to |
Value
the mask, a logical vector with the length of the vertices in the surface. If parameter hemi is set to both, a named list with entries lh and rh is returned, and the values of are the respective masks.
See Also
Other label functions:
apply.label.to.morphdata(),
apply.labeldata.to.morphdata(),
subject.lobes(),
vis.labeldata.on.subject(),
vis.subject.label()
Examples
## Not run:
# Generate a binary mask of the medial wall. Wall vertices will
# be set to 0, cortex vertices will be set to 1.
fsbrain::download_optional_data();
subjects_dir = fsbrain::get_optional_data_filepath("subjects_dir");
mask = subject.mask(subjects_dir, "subject1");
# Print some information on the mask:
#cat(sprintf("lh: %d verts, %d in cortex, %d medial wall.\n", length(mask$lh),
# sum(mask$lh), (length(mask$lh)- sum(mask$lh))))
# Output: lh: 149244 verts, 140891 in cortex, 8353 medial wall.
# Now visualize the mask to illustrate that it is correct:
vis.mask.on.subject(subjects_dir, "subject1", mask$lh, mask$rh);
## End(Not run)
Retrieve native space morphometry data for a single subject.
Description
Load native space morphometry data (like 'surf/lh.area') for a subject from disk. Uses knowledge about the FreeSurfer directory structure to load the correct file.
Usage
subject.morph.native(
subjects_dir,
subject_id,
measure,
hemi,
format = "curv",
cortex_only = FALSE,
split_by_hemi = FALSE
)
Arguments
subjects_dir |
string. The FreeSurfer SUBJECTS_DIR, i.e., a directory containing the data for all your subjects, each in a subdir named after the subject identifier. |
subject_id |
string. The subject identifier |
measure |
string. Name of the vertex-wise measure of morphometry data file. E.g., "area" or "thickness". Used to construct the name of the morphometry file to be loaded. |
hemi |
string, one of 'lh', 'rh' or 'both'. The hemisphere name. Used to construct the names of the annotation and morphometry data files to be loaded. |
format |
string. One of 'mgh', 'mgz', 'curv'. Defaults to 'curv'. |
cortex_only |
logical, whether to mask the medial wall, i.e., whether the morphometry data for all vertices which are not part of the cortex (as defined by the label file |
split_by_hemi |
logical, whether the returned data should be encapsulated in a named list, where the names are from 'lh' and 'rh', and the values are the respective data. |
Value
vector with native space morph data, as returned by read.fs.morph.
See Also
Other morphometry data functions:
apply.label.to.morphdata(),
apply.labeldata.to.morphdata(),
group.morph.native(),
group.morph.standard(),
subject.morph.standard()
Examples
## Not run:
fsbrain::download_optional_data();
subjects_dir = fsbrain::get_optional_data_filepath("subjects_dir");
# Load the full data:
thickness_lh = subject.morph.native(subjects_dir, "subject1", "thickness", "lh");
mean(thickness_lh); # prints 2.437466
# Load the data again, but this time exclude the medial wall:
thickness_lh_cortex = subject.morph.native(subjects_dir, "subject1", "thickness",
"lh", cortex_only=TRUE);
mean(thickness_lh_cortex, na.rm=TRUE); # prints 2.544132
vis.data.on.subject(subjects_dir, "subject1", thickness_lh_cortex, NULL);
## End(Not run)
Retrieve standard space morphometry data for a single subject.
Description
Load standard space morphometry data (like 'surf/lh.area.fwhm10.fsaverage.mgh') for a subject from disk. Uses knowledge about the FreeSurfer directory structure to load the correct file.
Usage
subject.morph.standard(
subjects_dir,
subject_id,
measure,
hemi,
fwhm = "10",
template_subject = "fsaverage",
format = "mgh",
cortex_only = FALSE,
split_by_hemi = FALSE
)
Arguments
subjects_dir |
string. The FreeSurfer SUBJECTS_DIR, i.e., a directory containing the data for all your subjects, each in a subdir named after the subject identifier. |
subject_id |
string. The subject identifier |
measure |
string. Name of the vertex-wise measure of morphometry data file. E.g., "area" or "thickness". Used to construct the name of the morphometry file to be loaded. |
hemi |
string, one of 'lh', 'rh', or 'both'. The hemisphere name. Used to construct the names of the annotation and morphometry data files to be loaded. |
fwhm |
string. Smoothing as string, e.g. '10' or '25'. |
template_subject |
string. Template subject name, defaults to 'fsaverage'. |
format |
string. One of 'mgh', 'mgz', 'curv'. Defaults to 'mgh'. |
cortex_only |
logical, whether to mask the medial wall, i.e., whether the morphometry data for all vertices which are not part of the cortex (as defined by the label file |
split_by_hemi |
logical, whether the returned data should be encapsulated in a named list, where the names are from 'lh' and 'rh', and the values are the respective data. |
Value
vector with standard space morph data
See Also
Other morphometry data functions:
apply.label.to.morphdata(),
apply.labeldata.to.morphdata(),
group.morph.native(),
group.morph.standard(),
subject.morph.native()
Examples
## Not run:
fsbrain::download_optional_data();
subjects_dir = fsbrain::get_optional_data_filepath("subjects_dir");
thickness_lh = subject.morph.standard(subjects_dir, "subject1", "thickness", "lh", fwhm='10');
## End(Not run)
Get subjects vertex count.
Description
Determine vertex counts for the brain meshes of a subject.
Usage
subject.num.verts(
subjects_dir,
subject_id,
surface = "white",
hemi = "both",
do_sum = FALSE
)
Arguments
subjects_dir |
string. The FreeSurfer SUBJECTS_DIR, i.e., a directory containing the data for all your subjects, each in a subdir named after the subject identifier. |
subject_id |
string. The subject identifier |
surface |
string. The surface name. E.g., "white", or "pial". Used to construct the name of the surface file to be loaded. |
hemi |
string, one of 'lh', 'rh', or 'both'. The hemisphere name. Used to construct the names of the surface file to be loaded. For 'both', see the information on the return value. |
do_sum |
logical, whether to return the sum of the vertex counts for lh and rh. Ignored unless 'hemi' is 'both'. If set, a single scalar will be returned. |
Value
hemilist of integers, the vertex count. If hemi is 'both' and 'do_sum' is FALSE, a hemilist of integers is returned. Otherwise, a single integer.
Compute the centroid of every region of an atlas on a surface.
Description
Computes, for every region of an atlas (annotation), the mean position of the surface vertices that belong to the region. These centroids are the node positions of a connectome visualization, see vis.connectome. This is the equivalent of the _extract_centroids() function of the Python package yabplot.
Usage
subject.region.centroids(
subjects_dir,
subject_id,
atlas,
surface = "midthickness",
hemi = "both",
exclude_regions = c("unknown", "medialwall", "")
)
Arguments
subjects_dir |
character string. The FreeSurfer |
subject_id |
character string, the subject identifier. For a template space, this is the name of the template subject, e.g., 'fs_LR_32' or 'fsaverage'. |
atlas |
character string, the atlas name, e.g., 'schaefer400', 'brainnetome' or 'aal3'. Used to construct the name of the annotation file. |
surface |
character string, the name of the surface on which the centroids are computed. Defaults to 'midthickness' (the surface in the middle between white and pial matter), which is the surface usually used for connectome figures. |
hemi |
character string, one of 'lh', 'rh', or 'both'. Defaults to 'both'. |
exclude_regions |
vector of character strings, the names of atlas regions to exclude. Defaults to the medial wall and the unknown region, which are not real brain regions. |
Value
data.frame with one row per region, the columns 'x', 'y', 'z' (the centroid coordinates), 'region' (the region name) and 'hemi' (the hemisphere). The row names are the region names, which are unique across hemispheres for the atlases that are distributed by fsbrain (see the example).
See Also
Other connectome functions:
vis.connectome()
Examples
## Not run:
# For the fs_LR_32 template (HCP-style), download the data first:
fsbrain::download_fs_LR_32_meshes();
fsbrain::download_fs_LR_32_atlases();
centroids = subject.region.centroids(subjects_dir = NULL, subject_id = "fs_LR_32",
atlas = "schaefer400", surface = "midthickness");
head(centroids);
## End(Not run)
Create visual quality check report from QC result.
Description
Create visual quality check report from QC result.
Usage
subject.report.html(
subjects_dir,
subjects_list,
subjects_metadata = list(),
out_dir = "fsbrain_qc_report",
keep_existing_images = TRUE
)
Arguments
subjects_dir |
string. The FreeSurfer SUBJECTS_DIR, i.e., a directory containing the data for all your subjects, each in a subdir named after the subject identifier. |
subjects_list |
string vector. A vector of subject identifiers that match the directory names within subjects_dir. |
subjects_metadata |
named list, keys can be subjects from subjects_list. Each key can hold another named list of strings, represeting arbitrary metadata for that subject that will be displayed in the report. |
out_dir |
character string, path to output dir. The last directory part will be created if it does not exist (but not recursively). |
keep_existing_images |
logical, whether to keep existing images. A lot faster on 2nd call. |
Load a surface for a subject.
Description
Load a brain surface mesh for a subject.
Usage
subject.surface(
subjects_dir,
subject_id,
surface = "white",
hemi = "both",
force_hemilist = FALSE,
as_tm = FALSE
)
Arguments
subjects_dir |
string. The FreeSurfer SUBJECTS_DIR, i.e., a directory containing the data for all your subjects, each in a subdir named after the subject identifier. |
subject_id |
string. The subject identifier |
surface |
string. The surface name. E.g., "white", or "pial". Used to construct the name of the surface file to be loaded. |
hemi |
string, one of 'lh', 'rh', or 'both'. The hemisphere name. Used to construct the names of the surface file to be loaded. For 'both', see the information on the return value. |
force_hemilist |
logical, whether to return a hemilist even if the 'hemi' parameter is not set to 'both' |
as_tm |
logical, whether to return an |
Value
the fs.surface instance, as returned by read.fs.surface. If parameter hemi is set to both, a named list with entries lh and rh is returned, and the values of are the respective surfaces. The mesh data structure used in fs.surface is a face index set.
See Also
Other surface mesh functions:
face.edges(),
label.border(),
mesh.vertex.included.faces(),
mesh.vertex.neighbors(),
vis.path.along.verts()
Examples
## Not run:
fsbrain::download_optional_data();
subjects_dir = fsbrain::get_optional_data_filepath("subjects_dir");
lh_white = subject.surface(subjects_dir, "subject1", "white", "lh");
## End(Not run)
Project a volume onto the cortical surface of a subject using its own (native) space.
Description
Samples a brain volume at the positions of the cortical surface vertices of a subject and returns the resulting per-vertex values. This is the equivalent of the FreeSurfer command line tool mri_vol2surf (or of the project_vol2surf function of the Python package yabplot), implemented in R. The volume and the surface must be defined in the same coordinate space, which is the case for the volumes in the mri directory of a subject (e.g., brain.mgz) and the surfaces in its surf directory (e.g., lh.white) – both are in the subject's native space.
The volume is sampled at the vertex positions using trilinear interpolation (default) or nearest neighbor interpolation. Vertices which fall outside the volume (e.g., medial wall vertices at the bottom of a brainmask volume, or vertices outside a truncated field of view) get the value NA by default, and a warning is emitted. Use clamp = TRUE to instead use the value of the closest voxel at the volume border, and check_fov = FALSE to suppress the check.
To project a group-level statistical map (e.g., in MNI space) onto a template like fsaverage, see template.vol2surf.
Usage
subject.vol2surf(
subjects_dir,
subject_id,
volume,
surface = "white",
hemi = "both",
surface_frac = NULL,
frac_surface = "pial",
interpolation = "trilinear",
frame = 1L,
cortex_only = FALSE,
clamp = FALSE,
check_fov = TRUE,
affine = NULL,
vox2ras = "auto"
)
Arguments
subjects_dir |
character string. The FreeSurfer |
subject_id |
character string. The subject identifier. |
volume |
character string or named list. A volume filepath, the name of a volume file in the |
surface |
character string, the name of the surface to sample. Examples: 'white', 'pial', 'midthickness'. The corresponding |
hemi |
character string, one of 'lh', 'rh' or 'both'. The hemisphere to project to. |
surface_frac |
numeric scalar in range 0..1, or |
frac_surface |
character string, the second surface for |
interpolation |
character string, one of 'trilinear' (the default, an alias 'linear' is accepted) or 'nearest'. Trilinear interpolation is suitable for continuous data like thickness or t-statistics, while nearest neighbor is what you want for discrete data like atlas labels, segmentation indices or p-values (it never averages the values of neighboring voxels). |
frame |
positive integer scalar, the index of the volume ('frame') to use if |
cortex_only |
logical, whether to set the values of all vertices which are not part of the cortex (as defined by the label file |
clamp |
logical. How to handle surface vertices which are outside the volume: if FALSE (the default), their value is set to NA; if TRUE, the value of the closest voxel at the volume border is used instead (edge replication, like the |
check_fov |
logical, whether to check for surface vertices which are outside the volume and emit a warning listing them. Defaults to TRUE. The check is very cheap (a few comparisons per vertex), the parameter exists mainly so that you can silence the warning when you know that a large part of the surface is outside the volume on purpose. |
affine |
numeric 4x4 matrix or |
vox2ras |
character string, how the transformation from voxel indices to the coordinate space of the surface is obtained. One of 'auto' (the default), 'tkr' or 'header'. For MGH/MGZ volumes, 'auto' uses the FreeSurfer tkregister convention, in which the brain surfaces are defined: the direction cosines and voxel sizes from the volume header, but with the origin moved to the center of the volume (see |
Value
a numerical vector of per-vertex values, one value per surface vertex, or a hemilist (named list with entries lh and rh) of such vectors if hemi is 'both'. Note that the values are in the order of the vertices of the sampled surface, which is the order used by the surface file, so they can be used directly with functions like vis.subject.morph.native.
Note
Trilinear interpolation is used by default, while the FreeSurfer tool mri_vol2surf defaults to nearest neighbor interpolation: pass interpolation = "nearest" to reproduce its output exactly. Note also that the affine matrix of a NIfTI file is converted into an MGH-style header by the reader, which stores the direction cosines with limited precision: for volumes with an oblique (rotated) orientation the transformation can differ from the value in the file by about 1e-07, and sheared transformations are not supported (the reader warns about this).
See Also
Other volume to surface projection functions:
template.vol2surf()
Examples
## Not run:
fsbrain::download_optional_data();
subjects_dir = fsbrain::get_optional_data_filepath("subjects_dir");
# Project the brain volume of subject1 onto the white surface:
brain_morph = subject.vol2surf(subjects_dir, "subject1", volume = "brain", surface = "white");
# Project the same volume onto the mid-cortical surface (between white and pial):
mid_morph = subject.vol2surf(subjects_dir, "subject1", volume = "brain",
surface = "white", frac_surface = "pial", surface_frac = 0.5);
# Visualize the result on the surface:
vis.subject.morph.native(subjects_dir, "subject1", morph_data = brain_morph);
## End(Not run)
Read a brain volume.
Description
Load a brain volume (like mri/brain.mgz) for a subject from disk. Uses knowledge about the FreeSurfer directory structure to load the correct file.
Usage
subject.volume(
subjects_dir,
subject_id,
volume,
format = "auto",
drop_empty_dims = TRUE,
with_header = FALSE,
mri_subdir = NULL
)
Arguments
subjects_dir |
character string, the FreeSurfer |
subject_id |
character string, the subject identifier. |
volume |
character string, name of the volume file without file extension. Examples: |
format |
string. One of 'mgh', 'mgz', 'AUTO'. If left at the default value 'AUTO', the function will look for files with extensions 'mgh' and 'mgz' (in that order) and use the first one that exists. |
drop_empty_dims |
logical, whether to drop empty dimensions of the returned data. Passed to |
with_header |
logical. Whether to return the header as well. If TRUE, return a named list with entries "data" and "header". The latter is another named list which contains the header data. These header entries exist: "dtype": int, one of: 0=MRI_UCHAR; 1=MRI_INT; 3=MRI_FLOAT; 4=MRI_SHORT. "voldim": integer vector. The volume (=data) dimensions. E.g., c(256, 256, 256, 1). These header entries may exist: "vox2ras_matrix" (exists if "ras_good_flag" is 1), "mr_params" (exists if "has_mr_params" is 1). Passed to |
mri_subdir |
character string or NULL, the subdir to use within the |
Value
numerical array, the voxel data. If with_header, the full volume datastructure (see above).
Examples
## Not run:
fsbrain::download_optional_data();
subjects_dir = fsbrain::get_optional_data_filepath("subjects_dir");
brain = subject.volume(subjects_dir, 'subject1', 'brain', with_header = TRUE);
# Use the vox2ras matrix from the header to compute RAS coordinates at CRS voxel (0, 0, 0):
brain$header$vox2ras_matrix %*% c(0,0,0,1);
## End(Not run)
Create a submesh including only the given vertices.
Description
Create a submesh including only the given vertices.
Usage
submesh.vertex(surface_mesh, old_vertex_indices_to_use, ret_mappings = FALSE)
Arguments
surface_mesh |
an fs.surface instance, the original mesh |
old_vertex_indices_to_use |
integer vector, the vertex indices of the 'surface_mesh' that should be used to construct the new sub mesh. |
ret_mappings |
whether to return the vertex mappings. If TRUE, the return value becomes a list with entries 'submesh', 'vmap_full_to_submesh', and 'vmap_submesh_to_full'. |
Value
the new mesh, made up of the given 'old_vertex_indices_to_use' and all (complete) faces that exist between the query vertices in the source mesh. But see 'ret_mapping' parameter.
Examples
## Not run:
sjd = fsaverage.path(T);
sj = "fsaverage";
mesh = subject.surface(sjd, sj, hemi="lh");
lab = subject.label(sjd, sj, "cortex", hemi = "lh");
sm = fsbrain:::submesh.vertex(mesh, lab);
vis.fs.surface(mesh);
vis.fs.surface(sm);
## End(Not run)
Compute average distance from the origin to each vertex.
Description
Compute average distance from the origin to each vertex.
Usage
surf.avg.vertexradius(surface, with_stddev = FALSE)
Arguments
surface |
an fs.surface instance, and for the typical use case of this function, a spherical surface. |
with_stddev |
logical, whether to compute the standard deviation as well and return a named list with the 'avg' and the 'stddev' instead. |
Value
scalar double, the average distance.
Note
This is used to determine the sphere radius for spherical surfaces. It is assumed that the sphere is centered at the origin (0,0,0).
Examples
## Not run:
spherical_surface = subject.surface(fsaverage.path(), "fsaverage3",
surface="sphere", hemi="lh");
vr = fsbrain:::surf.avg.vertexradius(spherical_surface);
# Show histogram to verify that the surface is a sphere centered at 0,0,0:
hist(freesurferformats::vertexdists.to.point(spherical_surface, c(0,0,0)));
# Plot the coords and a point at the origin:
fsbrain::highlight.points.spheres(rbind(spherical_surface$vertices, c(0,0,0)));
## End(Not run)
Get pre-computed center for fsaverage white surface.
Description
Get pre-computed center for fsaverage white surface.
Usage
surf.center.fsaverage()
Value
A numerical vector of length 3 with the x, y, and z coordinates of the center. The center was computed as the point halfway between the min and max mesh coordinates, on each axis separately.
Note
The coordinates are for the white surface and in surface space, i.e., based on the raw values stored in the fsaverae/surf/lh.white and fsaverage/surf/rh.white files, without applying any transformation.
See Also
surfs.props, which was used to compute the returned values.
Compute metric surface properties.
Description
Compute metric surface properties.
Usage
surf.metric.properties(surface, is_template, template_scale_factor = 1.56)
Arguments
surface |
an fs.surface instance, and for the typical use case of this function, a spherical surface. |
is_template |
logical, whether the surface comes from a template subject. |
template_scale_factor |
double, the template scale factor |
Value
named list of metric surface properties.
Examples
## Not run:
surface = subject.surface(fsaverage.path(), "fsaverage3", hemi="lh");
mp = surf.metric.properties(surface, is_template = TRUE);
## End(Not run)
Get pre-computed radius for fsaverage white surface.
Description
Get pre-computed radius for fsaverage white surface.
Usage
surf.radius.fsaverage(maxr = TRUE)
Arguments
maxr |
logical, whether to return the maximum of the x, y, and z radii. |
Value
If 'maxr' is TRUE, a numeric scalar representing the max of the x, y, and z radii, otherwise, a numerical vector of length 3 with all radii.
Note
The coordinates are for the white surface and in surface space, i.e., based on the raw values stored in the fsaverae/surf/lh.white and fsaverage/surf/rh.white files, without applying any transformation.
See Also
surfs.props, which was used to compute the returned values.
Compute vertex neighborhoods on a sphere based on the given max distance along the sphere.
Description
Compute neighborhood of the current vertex (=target vertex). The computation follows the mesh edges while there are still vertices which fullfil the dotproduct distance threshold. Alternatively, one could compute geodesic neighborhoods on the original mesh, but that is a lot slower. If no spherical surface is available, it has to be done though.
Usage
surf.sphere.dist(spherical_surface, maxdist)
Arguments
spherical_surface |
an fs.surface instance representing the spherical version ( |
maxdist |
double, the neighborhood size along the sphere, or to be more precise the maximal distance to travel along the sphere (using mesh edges) when searching for neighbors. The maxdist value can be computed from the definition of the Gaussian kernel parameters, i.e., its FWHM and truncation factor. See |
Value
named list with 3 entries. Each is a vector with neighborhood information: 'neigh' is an int vector of the neighbor vertices, 'neigh_dist_dotproduct' a numerical vector of dp distances for these neighbors, and 'neigh_dist_surface' the same for along-the-surface-distances instead of dp distances.
Examples
## Not run:
spherical_surface = subject.surface(fsaverage.path(), "fsaverage3",
surface="sphere", hemi="lh");
sphere_dist = surf.sphere.dist(spherical_surface, 20.0);
highlight.vertices.on.subject(fsaverage.path(), "fsaverage3",
verts_lh = sphere_dist$neigh[[500]], surface="sphere");
## End(Not run)
Compute Gaussian weights
Description
Compute Gaussian weights
Usage
surf.sphere.gaussianweights(spherical_surface, sphere_dists, gstd)
Arguments
spherical_surface |
an fs.surface instance representing the spherical version ( |
sphere_dists |
list of vectors, as returned by surf.sphere.dist |
gstd |
double, Gaussian standard deviation, can be computed from the FWHM as |
Value
vector of Gaussian weights for vertices
Examples
## Not run:
fwhm = 20.0; truncfactor = 3.5; sjd = fsaverage.path();
gstd = fwhm / sqrt(log(256.0)); maxdist = truncfactor * gstd;
spherical_surface = subject.surface(sjd, "fsaverage3", surface="sphere", hemi="lh");
sphere_dists = surf.sphere.dist(spherical_surface, maxdist = maxdist);
gaussian_weights = fsbrain:::surf.sphere.gaussianweights(spherical_surface,
sphere_dists, gstd);
morph_data = rep(NA, nrow(spherical_surface$vertices));
morph_data[sphere_dists$neigh[[500]]] = gaussian_weights[[500]];
vis.data.on.subject(sjd, "fsaverage3", morph_data_lh=morph_data);
## End(Not run)
Apply spatial filter to surface data.
Description
Apply spatial filter to surface data.
Usage
surf.sphere.spatialfilter(source_data, sphere_dists, gaussian_weights)
Arguments
source_data |
numerical vector, per-vertex data for a surface. |
sphere_dists |
named list with 3 entries, as returned by |
gaussian_weights |
list of double vectors, the Gaussian weights for all neighbors of the respective vertex. As returned by |
Value
numerical vector, the spatially filtered per-vertex data.
Compute the k1 and k2 principal curvatures of a mesh.
Description
Compute the k1 and k2 principal curvatures of a mesh.
Usage
surface.curvatures(surface)
Arguments
surface |
an fs.surface instance, as returned by |
Value
named list, the entries 'K1' and 'K2' contain the principal curvatures.
Note
Require the optional dependency package 'Rvcg'.
Compute the vertex positions at a given fraction between two surfaces.
Description
Computes a new mesh whose vertex positions lie on the line between the corresponding vertices of two meshes with identical vertex counts, e.g., between the white and the pial surface. This is what the FreeSurfer command line option --surf-frac does.
Usage
surface.interpolate.frac(surface_a, surface_b, frac)
Arguments
surface_a |
an |
surface_b |
an |
frac |
numeric scalar, the fraction, in range 0..1. |
Value
numeric matrix of vertex coordinates (see surface_a$vertices).
Compute simple version of center and radius of 2 meshes.
Description
Compute simple version of center and radius of 2 meshes.
Usage
surfs.props(lh, rh)
Arguments
lh |
|
rh |
|
Value
named list with entries 'center', 'radius', 'min' and 'max', each of which are numerical vectors of length 3, holding the x, y and z coordinates or values.
Note
This function treats the 'lh' and 'rh' meshes as a single mesh, and computes the properties for this combined mesh.
Given data, compute symmetric range around zero.
Description
Given data, compute symmetric range around zero.
Usage
symmrange(x)
Arguments
x |
the data, could be a range of course. |
Take screenshot of rgl scene, with fallback for systems without X11.
Description
Takes a screenshot of the current rgl scene. On systems with working X11/OpenGL, uses the standard rgl.snapshot() method. On systems without X11 (e.g., recent macOS versions where XQuartz is broken), falls back to exporting as PDF via rgl.postscript() and converting to PNG using ImageMagick.
Usage
take.screenshot(output_image, silent = TRUE)
Arguments
output_image |
character string, path to the output PNG file. |
silent |
logical, whether to suppress messages. Default TRUE. |
Value
invisible NULL, called for side effect of writing the image file.
Project a volume onto a template surface like fsaverage or fs_LR_32.
Description
Samples a volume at the positions of the vertices of a template surface, e.g., for group-level statistical maps. The volume and the template surface must be defined in the same coordinate space: fsaverage is the FreeSurfer template and its surfaces are in MNI305 (surface RAS) space, while the fs_LR_32 template (the HCP-style 32k surface space) is in MNI152 space. Projecting an MNI152 volume onto fsaverage (or vice versa) will produce wrong results, but this function will usually detect it and warn (see check_fov).
This is the equivalent of the project_vol2surf function of the Python package yabplot for the fs_LR_32 template, and of mri_vol2surf for fsaverage. See subject.vol2surf for the per-subject variant, which uses the native space of a subject.
Usage
template.vol2surf(
volume,
template = "fsaverage",
surface = NULL,
hemi = "both",
subjects_dir = NULL,
surface_frac = NULL,
frac_surface = "pial",
interpolation = "trilinear",
frame = 1L,
cortex_only = FALSE,
clamp = FALSE,
check_fov = TRUE,
affine = NULL,
vox2ras = "auto"
)
Arguments
volume |
character string or named list, see |
template |
character string, the template identifier. One of 'fsaverage' (the FreeSurfer template, in MNI305 space) or 'fs_LR_32' (the HCP-style 32k template, in MNI152 space). Additional templates can be used by passing the respective |
surface |
character string, the name of the surface to sample. Examples: 'white', 'pial', 'midthickness', 'inflated'. Defaults to 'white' for 'fsaverage' and to 'midthickness' for 'fs_LR_32' if |
hemi |
character string, see |
subjects_dir |
character string or |
surface_frac |
numeric scalar or |
frac_surface |
character string, see |
interpolation |
character string, see |
frame |
positive integer scalar, see |
cortex_only |
logical, see |
clamp |
logical, see |
check_fov |
logical, see |
affine |
numeric 4x4 matrix or |
vox2ras |
character string, see |
Value
a numerical vector of per-vertex values, or a hemilist of such vectors if hemi is 'both'. See subject.vol2surf.
Note
The fs_LR_32 template meshes can be downloaded with download_fs_LR_32_meshes. Note that the surface files of the templates are not part of the fsbrain package, and that the fsaverage data is subject to the FreeSurfer license.
See Also
Other volume to surface projection functions:
subject.vol2surf()
Examples
## Not run:
# Project a group-level stat map (e.g., in MNI152 space) onto the HCP-style fs_LR_32 template:
fsbrain::download_fs_LR_32_meshes();
subjects_dir = fsbrain::get_optional_data_filepath("subjects_dir");
stat_map = template.vol2surf("/path/to/your_statmap.nii.gz", template = "fs_LR_32",
surface = "midthickness", subjects_dir = subjects_dir);
# Project an MNI305 map onto fsaverage:
stat_map = template.vol2surf("/path/to/your_mni305_map.nii.gz", template = "fsaverage",
surface = "white");
## End(Not run)
Perform tests for group differences on paired or unpaired data for two groups.
Description
This function is intended to give you a quick overview of your demographics data, it is in no way intended to replace a detailed analysis of your data. You should always visualize and analyze your data interactively instead of relying on automated methods like this. Outliers and are very common in real-world data while perfectly normal data is very rare, multiple testing may affect your results. Look at your data!
Usage
test.numerical.meandiff(
colname,
group1_name,
group2_name,
group1_data_column,
group2_data_column,
paired
)
Arguments
colname |
string, the name of the data (used to label the data in the output) |
group1_name |
string, the name of the first group (used to label the data in the output) |
group2_name |
string, the name of the first group (used to label the data in the output) |
group1_data_column |
the data for group1 as a numerical vector. Typically a column from your demographics dataframe. |
group2_data_column |
the data for group2 as a numerical vector. Typically a column from your demographics dataframe. |
paired |
logical, whether the data is paired (repeated measures). |
Value
vector of strings, the lines of the report. You can print to STDOUT or write it to a file.
Perform tests for group differences on paired data (repeated measurements) for two conditions or time points.
Description
This function is intended to give you a quick overview of your demographics data, it is in no way intended to replace a detailed analysis of your data. You should always visualize and analyze your data interactively instead of relying on automated methods like this. Outliers and are very common in real-world data while perfectly normal data is very rare, multiple testing may affect your results. Look at your data!
Usage
test.numerical.meandiff.paired(
colname,
condition1_name,
condition2_name,
condition1_data_column,
condition2_data_column
)
Arguments
colname |
string, the name of the data (used to label the data in the output) |
condition1_name |
string, the name of the first condition (used to label the data in the output) |
condition2_name |
string, the name of the first condition (used to label the data in the output) |
condition1_data_column |
the data for condition1 as a numerical vector. Typically a column from your demographics dataframe. |
condition2_data_column |
the data for condition2 as a numerical vector. Typically a column from your demographics dataframe. |
Value
vector of strings, the lines of the report. You can print to STDOUT or write it to a file.
Perform tests for group differences on unpaired data for two groups.
Description
This function is intended to give you a quick overview of your demographics data, it is in no way intended to replace a detailed analysis of your data. You should always visualize and analyze your data interactively instead of relying on automated methods like this. Outliers and are very common in real-world data while perfectly normal data is very rare, multiple testing may affect your results. Look at your data!
Usage
test.numerical.meandiff.unpaired(
colname,
group1_name,
group2_name,
group1_data_column,
group2_data_column
)
Arguments
colname |
string, the name of the data (used to label the data in the output) |
group1_name |
string, the name of the first group (used to label the data in the output) |
group2_name |
string, the name of the first group (used to label the data in the output) |
group1_data_column |
the data for group1 as a numerical vector. Typically a column from your demographics dataframe. |
group2_data_column |
the data for group2 as a numerical vector. Typically a column from your demographics dataframe. |
Value
vector of strings, the lines of the report. You can print to STDOUT or write it to a file.
Get an fs.surface brain mesh from an rgl tmesh3d instance.
Description
Get an fs.surface brain mesh from an rgl tmesh3d instance.
Usage
tmesh3d.to.fs.surface(tmesh)
Arguments
tmesh |
a tmesh3d instance, see |
Value
an fs.surface instance, as returned by subject.surface or freesurferformats::read.fs.surface.
Compute the total length of a path given by the coordinates of its points.
Description
Compute the total length of a path given by the coordinates of its points.
Usage
track.length(point_coords)
Arguments
point_coords |
n x 3 numerical matrix of 3D point coordinates, in the order of traversal. |
Value
float, the sum of the length of all segments of the path.
Compute the bundle name for a tract file.
Description
Compute the bundle name for a tract file.
Usage
tract.bundle.name.from.file(filepath)
Arguments
filepath |
character string, the path to the tract file. |
Value
character string, the file name without the extension (and without a trailing '.gz').
Create a 4x4 translation matrix.
Description
Create the affine matrix which translates coordinates by the given offsets, for use with apply.transform.
Usage
translation.matrix(x = 0, y = 0, z = 0)
Arguments
x |
numerical scalar, the translation along the first axis. |
y |
numerical scalar, the translation along the second axis. |
z |
numerical scalar, the translation along the third axis. |
Value
numeric 4x4 matrix, the translation matrix.
Compute the vertices and faces of a unit icosphere (subdivision surface of the icosahedron).
Description
The returned sphere has radius 1 and is centered at the origin. The number of vertices is 10 * 4^subdivisions + 2 and the number of faces is 20 * 4^subdivisions (42 and 80 for 1 subdivision, 162 and 320 for 2).
Usage
unit.icosphere(subdivisions = 2L)
Arguments
subdivisions |
non-negative integer, the number of subdivision steps. 0 gives the plain icosahedron. Defaults to 2L, which is smooth enough for plot-sized spheres. |
Value
named list with entries 'vertices' (n x 3 numeric matrix) and 'faces' (m x 3 integer matrix), i.e., an freesurferformats::fs.surface instance.
Map values to a color layer and the matching colorbar metadata.
Description
Map values to a color layer and the matching colorbar metadata.
Usage
values.to.colorlayer(values, makecmap_options)
Arguments
values |
numeric vector, the values to map to colors. |
makecmap_options |
named list of parameters to pass to |
Value
named list with entries 'colors' (the hex color strings for the values) and 'makecmap_options' (the input options, extended with the effective range, for use as colorbar metadata).
Note
The colors are computed from the color ramp that the colorbar uses for the same options, i.e., the values are binned into the interval boundaries of a ramp of 'n' colors over the value range, so the colorbar always matches the data. Values which are not finite (NA/NaN/Inf) get the color 'col.na'.
Scale values into a given range.
Description
Linearly maps the values to the target range. Values which are all identical (or a single value) are mapped to the middle of the range.
Usage
values.to.range(x, target_range)
Arguments
x |
numeric vector, the input values. |
target_range |
numeric vector of length 2, the target range. |
Value
numeric vector of the same length as x, the scaled values.
Split morph data vector at hemisphere boundary.
Description
Given a single vector of per-vertex data for a mesh, split it at the hemi boundary. This is achieved by loading the respective surface and checking the number of vertices for the 2 hemispheres.
Usage
vdata.split.by.hemi(
subjects_dir,
subject_id,
vdata,
surface = "white",
expand = TRUE
)
Arguments
subjects_dir |
string. The FreeSurfer SUBJECTS_DIR, i.e., a directory containing the data for all your subjects, each in a subdir named after the subject identifier. |
subject_id |
string. The subject identifier |
vdata |
numerical vector of data for both hemispheres, one value per vertex |
surface |
the surface to load to determine the vertex counts |
expand |
logical, whether to allow input of length 1, and expand (repeat) it to the length of the hemispheres. |
Value
a hemilist, each entry contains the data part of the respective hemisphere.
Note
Instead of calling this function to split the data, you could use the 'split_by_hemi' parameter of subject.morph.native.
Return coordinates for vertices, supporting entire brain via hemilist.
Description
Return coordinates for vertices, supporting entire brain via hemilist.
Usage
vertex.coords(surface, vertices)
Arguments
surface |
an fs.surface instance, see |
vertices |
vector of positive integers, the vertex indices. Values which are outside of the valid indices for the surface will be silently ignored, making it easier to work with the two hemispheres. |
Value
double nx3 matrix of vertex coordinates.
See Also
Other 3d utility functions:
highlight.points.spheres(),
highlight.vertices.spheres()
Return the proper hemi string ('lh' or 'rh') for each vertex.
Description
Return the proper hemi string ('lh' or 'rh') for each vertex.
Usage
vertex.hemis(surface, vertices)
Arguments
surface |
hemilist of surfaces or a single integer which will be interpreted as the vertex count of the left hemisphere. |
vertices |
vector of positive integers, the query vertex indices. Can be in range |
Value
vector of character strings, each string is 'lh' or 'rh'.
Note
It is not checked in any way whether the vertex indices are out of bounds on the upper side (higher than the highest rh vertex index).
Examples
vertex.hemis(100L, vertices=c(99L, 100L, 101L));
Get the hemisphere filter for a view angle
Description
Get the hemisphere filter for a view angle
Usage
view.angle.to.hemi.filter(view_angle)
Arguments
view_angle |
character string, a valid view angle (with or without the 'sd_' prefix). |
Value
character string, one of "lh", "rh", or "both".
Map an fsbrain view angle to a scimesh camera
Description
Translates an fsbrain view_angle string (e.g., "lateral_lh", "dorsal", etc.) to a scimesh camera specification. The returned object includes the camera list and a hemi_filter field indicating which hemispheres to render for this view.
Usage
view_angle_to_scimesh_camera(scene, view_angle, fallback_bbox = NULL)
Arguments
scene |
a named list of scimesh mesh descriptors with "lh" and/or "rh"
entries, as returned by |
view_angle |
character string, a valid view angle. See
|
fallback_bbox |
numeric vector of length 6 or NULL, the bounding box to
compute the camera from if the scene contains no mesh, see
|
Value
a list with entries: camera (scimesh camera list from
camera_auto), and hemi_filter (one of "lh", "rh", or "both").
Draw a view label at a position, compensating for the camera rotation.
Description
With camera-based views, geometry (and text) stays in world coordinates while the camera applies the view rotation. To keep a label at the same screen position relative to the (now unrotated) renderables as in the legacy mesh-rotation views, the label offset is pre-rotated by the view's mesh rotation matrix R_mesh.
Usage
view_label3d(text, x, y, z, R_mesh = NULL)
Arguments
text |
character string, the label text. |
x |
y, z numeric, the label offset in the rotated (view) frame. |
R_mesh |
4x4 numeric rotation matrix, the view's mesh rotation (use
|
Visualize pre-defined vertex colors on a subject.
Description
Visualize pre-defined vertex colors on a subject.
Usage
vis.color.on.subject(
subjects_dir,
vis_subject_id,
color_lh = NULL,
color_rh = NULL,
surface = "white",
views = c("t4"),
rgloptions = rglo(),
rglactions = list(),
color_both = NULL,
style = "default"
)
Arguments
subjects_dir |
string. The FreeSurfer SUBJECTS_DIR, i.e., a directory containing the data for all your subjects, each in a subdir named after the subject identifier. |
vis_subject_id |
string. The subject identifier from which to obtain the surface for data visualization. Example: 'fsaverage'. |
color_lh |
vector of colors to visualize on the left hemisphere surface. Length must match number of vertices in hemi surface, or be a single color. |
color_rh |
vector of colors to visualize on the right hemisphere surface. Length must match number of vertices in hemi surface, or be a single color. |
surface |
string. The display surface. E.g., "white", "pial", or "inflated". Defaults to "white". |
views |
list of strings. Valid entries include: 'si': single interactive view. 't4': tiled view showing the brain from 4 angles. 't9': tiled view showing the brain from 9 angles. |
rgloptions |
option list passed to |
rglactions |
named list. A list in which the names are from a set of pre-defined actions. The values can be used to specify parameters for the action. The following example clips outliers in the data before plotting and writes a screenshot in PNG format: |
color_both |
vector of colors to visualize on the left and right hemispheres. Alternative to 'color_lh' and 'color_rh'. Length must match sum of vertices in both hemis. Can also be a hemilist. |
style |
character string or rgl rendering style, see |
Value
list of coloredmeshes. The coloredmeshes used for the visualization.
See Also
Other visualization functions:
highlight.vertices.on.subject(),
highlight.vertices.on.subject.spheres(),
vis.data.on.fsaverage(),
vis.data.on.subject(),
vis.labeldata.on.subject(),
vis.mask.on.subject(),
vis.region.values.on.subject(),
vis.rglwidget(),
vis.subcortical.region.values(),
vis.subject.annot(),
vis.subject.label(),
vis.subject.morph.native(),
vis.subject.morph.standard(),
vis.subject.pre(),
vis.symmetric.data.on.subject(),
vis.volume.clusters(),
vis.volume.on.surface(),
vislayout.from.coloredmeshes()
Other surface visualization functions:
highlight.vertices.on.subject(),
highlight.vertices.on.subject.spheres()
Examples
## Not run:
fsbrain::download_optional_data();
subjects_dir = fsbrain::get_optional_data_filepath("subjects_dir");
color_lh = '#ff0000';
num_verts_subject1_rh = 153333;
color_rh = rep('#333333', num_verts_subject1_rh);
color_rh[1:30000] = '#00ff00';
color_rh[30001:60000] = '#ff0000';
color_rh[60001:90000] = '#0000ff';
color_rh[90001:120000] = '#ffff00';
color_rh[120001:150000] = '#00ffff';
vis.color.on.subject(subjects_dir, 'subject1', color_lh, color_rh);
## End(Not run)
Draw a coloredmesh using a style.
Description
Draw a coloredmesh using a style.
Usage
vis.coloredmesh(cmesh, style = "default")
Arguments
cmesh |
a coloredmesh. A coloredmesh is a named list as returned by the coloredmesh.from.* functions. It has the entries 'mesh' of type tmesh3d, a 'col', which is a color specification for such a mesh. |
style |
a named list of style parameters or a string specifying an available style by name (e.g., 'shiny'). Defaults to 'default', the default style. Pass the magic word 'from_mesh' to try to retrieve a style (as a name or a style list) from the field |
See Also
Visualize a list of colored meshes in a single scene.
Description
Visualize a list of colored meshes in a single scene.
Usage
vis.coloredmeshes(
coloredmeshes,
background = "white",
skip_all_na = TRUE,
style = "default",
rgloptions = rglo(),
rglactions = list(),
draw_colorbar = FALSE
)
Arguments
coloredmeshes |
list of coloredmesh. A coloredmesh is a named list as returned by the coloredmesh.from.* functions. It has the entries 'mesh' of type tmesh3d, a 'col', which is a color specification for such a mesh. |
background |
string, background color passed to rgl::bg3d() |
skip_all_na |
logical, whether to skip (i.e., not render) meshes in the list that have the property 'render' set to FALSE. Defaults to TRUE. Practically, this means that a hemisphere for which the data was not given is not rendered, instead of being rendered in a single color. |
style |
a named list of style parameters or a string specifying an available style by name (e.g., 'shiny'). Defaults to 'default', the default style. Use the magic word 'from_mesh' to use the 'style' field of each coloredmesh instead of a single, global style: this allows you to give individual meshes in the scene their own look, e.g., to render a cortex mesh semi-transparently behind colored data meshes. Meshes which have no 'style' field fall back to the 'default' style. See |
rgloptions |
option list passed to |
rglactions |
named list. A list in which the names are from a set of pre-defined actions. Defaults to the empty list. |
draw_colorbar |
logical. Whether to draw a colorbar. WARNING: Will only show up if there is enough space in the plot area and does not resize properly. Defaults to FALSE. See |
Value
the list of visualized coloredmeshes
Note
To change or adapt the colorbar, you should use the makecmap_options parameter when constructing them in a vis function. See the example.
Examples
## Not run:
fsbrain::download_optional_data();
subjects_dir = fsbrain::get_optional_data_filepath("subjects_dir");
cm = vis.subject.morph.native(subjects_dir, 'subject1', 'thickness',
makecmap_options=list('n'=100, 'colFn'=viridis::viridis));
# You could mess with the meshes here.
vis.coloredmeshes(cm);
## End(Not run)
Visualize a list of colored meshes in a single scene and rotate them, movie-style.
Description
Visualize a list of colored meshes in a single scene and rotate them, movie-style.
Usage
vis.coloredmeshes.rotating(
coloredmeshes,
background = "white",
skip_all_na = TRUE,
style = "default",
x = 0,
y = 0,
z = 1,
rpm = 6,
duration = 10,
rgloptions = rglo(),
rglactions = list()
)
Arguments
coloredmeshes |
list of coloredmesh. A coloredmesh is a named list as returned by the coloredmesh.from.* functions. It has the entries 'mesh' of type tmesh3d, a 'col', which is a color specification for such a mesh. |
background |
string, background color passed to rgl::bg3d() |
skip_all_na |
logical, whether to skip (i.e., not render) meshes in the list that have the property 'rendner' set to FALSE. Defaults to TRUE. Practically, this means that a hemisphere for which the data was not given is not rendered, instead of being rendered in a single color. |
style |
a named list of style parameters or a string specifying an available style by name (e.g., 'shiny'). Defaults to 'default', the default style. |
x |
rotation x axis value, passed to |
y |
rotation y axis value, passed to |
z |
rotation z axis value, passed to |
rpm |
rotation rpm value, passed to |
duration |
rotation duration value, passed to |
rgloptions |
option list passed to |
rglactions |
named list. A list in which the names are from a set of pre-defined actions. Defaults to the empty list. |
Value
the list of visualized coloredmeshes
Draw the segments of an fs.coloredpaths instance with rgl.
Description
Uses rgl::segments3d, i.e., hardware lines, so that a line is always one pixel wide (times the requested width) no matter how far away it is from the camera. Segments which share a line width are drawn in a single call, because the line width is a material property (like the color, which can be set per segment).
Usage
vis.coloredpaths(cpaths, style = "default")
Arguments
cpaths |
an fs.coloredpaths instance. |
style |
a rendering style, see |
Value
invisible NULL.
Create a separate legend plot for a colortable or an annotation.
Description
This plots a legend for a colortable or an atlas (annotation), showing the region names and their assigned colors. This function creates a new plot.
Usage
vis.colortable.legend(colortable, ncols = 1L, plot_struct_index = TRUE)
Arguments
colortable |
dataframe, a colortable as returned by |
ncols |
positive integer, the number of columns to use when plotting |
plot_struct_index |
logical, whether to plot the region index from tge 'struct_index' field. If there is no such field, this is silently ignored. |
Note
This function plots one or more legends (see legend). You may have to adapt the device size before calling this function if you inted to plot a large colortable.
Examples
## Not run:
fsbrain::download_optional_data();
subjects_dir = fsbrain::get_optional_data_filepath("subjects_dir");
annot = subject.annot(subjects_dir, 'subject1', 'lh', 'aparc');
vis.colortable.legend(annot$colortable_df, ncols=3);
## End(Not run)
Visualize a connectivity matrix as a connectome on a brain surface.
Description
Draws the edges of a connectivity matrix as lines between region centroids, the nodes as spheres, and (optionally) a semi-transparent brain surface as context. This is the fsbrain equivalent of the plot_connectome function of the Python package yabplot. It can be used for any brain connectome, e.g., structural connectivity (tractography), functional connectivity (correlation), or any other square matrix that describes a relation between brain regions.
Note that this is a visualization function: it does not compute a connectivity matrix, and it does not check whether the data is a valid connectivity estimate.
Usage
vis.connectome(
connectivity_matrix,
node_coords = NULL,
node_names = NULL,
subjects_dir = NULL,
template_id = "fs_LR_32",
atlas = NULL,
context = list(surface = "midthickness", alpha = 0.08, color = "#B0B0B0"),
edge_threshold = NULL,
edge_threshold_quantile = 0.95,
edge_absolute = TRUE,
edge_negative = FALSE,
edge_width = 1,
edge_width_range = c(0.5, 3),
edge_scale = c("weight", "none"),
edge_color = NULL,
edge_makecmap_options = modifyList(mkco.div(), list(symm = FALSE)),
node_radius = 2,
node_radius_range = NULL,
node_scale = c("none", "strength"),
node_color = NULL,
node_makecmap_options = mkco.seq(),
views = c("sd_lateral_lh", "sd_medial_lh", "sd_lateral_rh", "sd_medial_rh"),
rgloptions = rglo(),
rglactions = list(),
style = "default",
draw_colorbar = FALSE,
silent = FALSE
)
Arguments
connectivity_matrix |
numeric square matrix, the connectivity matrix. The rows and columns are the nodes (brain regions). The names of the rows/columns (or the parameter |
node_coords |
(n, 3) numeric matrix, the coordinates of the nodes (brain regions), in the same order as the matrix rows. If |
node_names |
vector of character strings, the node names. Only used if |
subjects_dir |
character string or NULL. The FreeSurfer |
template_id |
character string, the identifier of the template (or subject) whose atlas and surface define the nodes and the context surface. Defaults to 'fs_LR_32'. Ignored if |
atlas |
character string or NULL, the atlas whose regions are the nodes, e.g., 'schaefer400'. Not required if |
context |
named list or NULL, the semi-transparent brain surface drawn behind the connectome. The list can have the entries: 'surface' (character string, the surface to use, defaults to 'midthickness'), 'alpha' (numeric, the transparency of the surface, defaults to 0.08), and 'color' (character string, the color of the surface, defaults to '#B0B0B0'). Set to NULL to draw the connectome without any brain surface, which is much faster and gives a 'spring layout' style figure (the camera then frames the nodes). |
edge_threshold |
numeric or NULL, an absolute threshold on the edge weight. Edges with a lower magnitude are not drawn. Defaults to NULL (no absolute threshold). |
edge_threshold_quantile |
numeric or NULL, a quantile (in the range 0 to 1) of the edge magnitudes. Only edges with a magnitude above that quantile are drawn, i.e., the quantile selects the strongest edges. Defaults to 0.95, i.e., the strongest 5 percent of the edges are drawn. Set to NULL to use all edges. |
edge_absolute |
logical, whether the magnitude of the edge weights is used for thresholding and for the line widths. Defaults to TRUE, i.e., a strong negative edge is drawn like a strong positive one (but see the parameter |
edge_negative |
logical, whether to draw the negative edges instead of the positive ones. Defaults to FALSE, i.e., only positive edges are considered. To show both the positive and the negative edges of a signed matrix in one figure, call this function twice and combine the results (the second call can be rendered on top of the first). |
edge_width |
positive number, the line width in pixels. Defaults to 1.0 (a thin line, which is what hardware line rendering supports best). |
edge_width_range |
numeric vector of length 2 or NULL, the range of the line widths used when |
edge_scale |
character string, one of 'weight' (the line width encodes the edge weight) or 'none' (all edges have the width |
edge_color |
vector of hex color strings or NULL. A single color for all edges, or one color per edge. If NULL (the default), the edges are colored by their weight, using the colormap defined by |
edge_makecmap_options |
named list of parameters to pass to |
node_radius |
positive number, the radius of the node spheres, in the units of the surface coordinates (millimeters). Defaults to 2.0. |
node_radius_range |
numeric vector of length 2 or NULL, the range of the node radii used when |
node_scale |
character string, one of 'none' (all nodes have the radius |
node_color |
vector of hex color strings or NULL. A single color for all nodes, or one color per node. If NULL (the default), the nodes are colored by their strength (see |
node_makecmap_options |
named list of parameters to pass to |
views |
vector of character strings, the views to render, see |
rgloptions |
|
rglactions |
named list. A list in which the names are from a set of pre-defined actions, see |
style |
a rendering style for the surface meshes, see |
draw_colorbar |
logical or one of the character strings 'vertical' or 'horizontal', whether to draw a colorbar for the edges. Defaults to FALSE. Note that a colorbar is only drawn for the edges, not for the nodes: if you want to draw a colorbar for the node strengths, use |
silent |
logical, whether to suppress the status messages. Defaults to FALSE. |
Value
named list of renderables, invisibly: the entries 'edges' (an fs.coloredpaths instance), 'nodes' (an fs.coloredmesh instance) and 'context_lh'/'context_rh' (the context surface, if requested). This list can be passed to export to create a publication quality figure with a colorbar, which is also the recommended way to use the scimesh renderer backend.
See Also
Other connectome functions:
subject.region.centroids()
Examples
## Not run:
# Use the fs_LR_32 template (see subject.region.centroids for the download commands).
centroids = subject.region.centroids(subjects_dir = NULL, subject_id = "fs_LR_32",
atlas = "schaefer400", surface = "midthickness");
set.seed(42);
mat = matrix(runif(nrow(centroids)^2), nrow = nrow(centroids),
dimnames = list(rownames(centroids), rownames(centroids)));
mat = (mat + t(mat)) / 2;
diag(mat) = 0;
# Render the connectome in 3 views:
cm = vis.connectome(mat, atlas = "schaefer400",
views = c("sd_lateral_lh", "sd_dorsal", "sd_caudal"));
# Or create a publication quality image with a colorbar for the edges:
export(cm, draw_colorbar = "horizontal",
output_img = "connectome.png", colorbar_legend = "Edge weight");
## End(Not run)
Visualize arbitrary data on the fsaverage template subject, if available.
Description
Creates a surface mesh, applies a colormap transform the morphometry data values into colors, and renders the resulting colored mesh in an interactive window. If hemi is 'both', the data is rendered for the whole brain. This function tries to automatically retrieve the subjects dir of the fsaverage template subject by checking the environment variables SUBJECTS_DIR and FREESURFER_HOME for the subject. The subject is required for its surfaces, which are not shipped with this package for licensing reasons.
Usage
vis.data.on.fsaverage(
subjects_dir = NULL,
vis_subject_id = "fsaverage",
morph_data_lh = NULL,
morph_data_rh = NULL,
surface = "white",
views = c("t4"),
rgloptions = rglo(),
rglactions = list(),
draw_colorbar = FALSE,
makecmap_options = mkco.seq(),
bg = NULL,
morph_data_both = NULL,
style = "default"
)
Arguments
subjects_dir |
string. The FreeSurfer SUBJECTS_DIR, i.e., a directory containing the data for all your subjects, each in a subdir named after the subject identifier. |
vis_subject_id |
string. The subject identifier from which to obtain the surface for data visualization. Defaults to 'fsaverage'. |
morph_data_lh |
numeric vector or character string or NULL, the data to visualize on the left hemisphere surface. If a string, it is treated as a filename and data is loaded from it first. When it is a numerical vector, this is assumed to be the data already. The data must have the same length as the surface of the vis_subject_id has vertices. If NULL, this surface will not be rendered. Only one of morph_data_lh or morph_data_rh is allowed to be NULL. |
morph_data_rh |
numeric vector or character string or NULL, the data to visualize on the right hemisphere surface. If a string, it is treated as a filename and data is loaded from it first. When it is a numerical vector, this is assumed to be the data already. The data must have the same length as the surface of the vis_subject_id has vertices. If NULL, this surface will not be rendered. Only one of morph_data_lh or morph_data_rh is allowed to be NULL. |
surface |
string. The display surface. E.g., "white", "pial", or "inflated". Defaults to "white". |
views |
list of strings. Valid entries include: 'si': single interactive view. 't4': tiled view showing the brain from 4 angles. 't9': tiled view showing the brain from 9 angles. |
rgloptions |
option list passed to |
rglactions |
named list. A list in which the names are from a set of pre-defined actions. The values can be used to specify parameters for the action. The following example clips outliers in the data before plotting and writes a screenshot in PNG format: |
draw_colorbar |
logical or one of the character strings 'vertical' or 'horizontal', whether to draw a colorbar. Notice: the colorbar is drawn to a separate subplot, and this only works if there is enough space for it, i.e., the plot resolution must be high enough. You may have to increase the plot size for the colorbar to show up, see the vignette for instructions. Defaults to |
makecmap_options |
named list of parameters to pass to |
bg |
a background definition. Can be a surface color layer or a character string like 'curv_light' to select a pre-defined layer, see |
morph_data_both |
numeric vector or NULL, the data to visualize on both hemispheres. This must be a single vector with length equal to the sum of the vertex counts of the left and the right hemisphere. The data for the left hemisphere must come first. If this is given, 'morph_data_lh' and 'morph_data_rh' must be NULL. |
style |
character string, a rendering style, e.g., 'default', 'shiny' or 'semitransparent'. |
Value
list of coloredmeshes. The coloredmeshes used for the visualization.
See Also
Other visualization functions:
highlight.vertices.on.subject(),
highlight.vertices.on.subject.spheres(),
vis.color.on.subject(),
vis.data.on.subject(),
vis.labeldata.on.subject(),
vis.mask.on.subject(),
vis.region.values.on.subject(),
vis.rglwidget(),
vis.subcortical.region.values(),
vis.subject.annot(),
vis.subject.label(),
vis.subject.morph.native(),
vis.subject.morph.standard(),
vis.subject.pre(),
vis.symmetric.data.on.subject(),
vis.volume.clusters(),
vis.volume.on.surface(),
vislayout.from.coloredmeshes()
Other morphometry visualization functions:
vis.data.on.subject(),
vis.subject.morph.native(),
vis.subject.morph.standard(),
vis.symmetric.data.on.subject()
Visualize native space data on a group of subjects.
Description
Plot surface data on the native space surfaces of a group of subjects and combine the tiles into a single large image.
Usage
vis.data.on.group.native(
subjects_dir,
subject_id,
morph_data_both,
view_angles = "sd_dorsal",
output_img = "fsbrain_group_morph.png",
num_per_row = 5L,
captions = subject_id,
rglactions = list(no_vis = TRUE),
...
)
Arguments
subjects_dir |
string. The FreeSurfer SUBJECTS_DIR, i.e., a directory containing the data for all your subjects, each in a subdir named after the subject identifier. |
subject_id |
vector of character strings, the subject identifiers |
morph_data_both |
named list of numerical vectors, the morph data for both hemispheres of all subjects. Can be loaded with |
view_angles |
see |
output_img |
character string, the file path for the output image. Should end with '.png'. |
num_per_row |
positive integer, the number of tiles per row. |
captions |
optional vector of character strings, the short text annotations for the individual tiles. Typically used to plot the subject identifier. |
rglactions |
named list. A list in which the names are from a set of pre-defined actions. The values can be used to specify parameters for the action. The following example clips outliers in the data before plotting and writes a screenshot in PNG format: |
... |
extra parameters passed to the subject level visualization function. Not all may make sense in this context. Example: |
Value
named list, see the return value of arrange.brainview.images.grid for details.
Note
The subjects are plotted row-wise, in the order in which they appear in the 'morph_data_both' parameter. The surfaces are loaded in the order of the 'subject_id' parameter, so the order in both must match.
You can force an identical plot range for all subjects, so that one color represents identical values across subjects, via 'makecmap_options'. E.g., for the ... parameter, pass makecmap_options=list('colFn'=viridis::viridis, 'range'=c(0, 4))).
See Also
Other group visualization functions:
vis.data.on.group.standard(),
vis.group.annot(),
vis.group.coloredmeshes(),
vis.group.morph.native(),
vis.group.morph.standard()
Visualize standard space data for a group on template.
Description
Plot standard space data for a group of subjects onto a template brain and combine the tiles into a single large image.
Usage
vis.data.on.group.standard(
subjects_dir,
vis_subject_id,
morph_data_both,
captions = NULL,
view_angles = "sd_dorsal",
output_img = "fsbrain_group_morph.png",
num_per_row = 5L,
rglactions = list(no_vis = TRUE),
...
)
Arguments
subjects_dir |
character string, the path to the SUBJECTS_DIR containing the template subject |
vis_subject_id |
character string, the template subject name. A typical choice is 'fsaverage'. |
morph_data_both |
named list of numerical vectors, 4D array or dataframe, the morph data for both hemispheres of all subjects. Can be loaded with |
captions |
optional vector of character strings, the short text annotations for the individual tiles. Typically used to plot the subject identifier. |
view_angles |
see |
output_img |
character string, the file path for the output image. Should end with '.png'. |
num_per_row |
positive integer, the number of tiles per row. |
rglactions |
named list. A list in which the names are from a set of pre-defined actions. The values can be used to specify parameters for the action. The following example clips outliers in the data before plotting and writes a screenshot in PNG format: |
... |
extra parameters passed to the subject level visualization function. Not all may make sense in this context. Example: |
Value
named list, see the return value of arrange.brainview.images.grid for details.
Note
The subject data are plotted row-wise, in the order in which they appear in the 'morph_data_both' parameter.
You can force an identical plot range for all subjects, so that one color represents identical values across subjects, via 'makecmap_options'. E.g., for the ... parameter, pass makecmap_options=list('colFn'=viridis::viridis, 'range'=c(0, 4))).
See Also
Other group visualization functions:
vis.data.on.group.native(),
vis.group.annot(),
vis.group.coloredmeshes(),
vis.group.morph.native(),
vis.group.morph.standard()
Visualize arbitrary data on the surface of any subject.
Description
Creates a surface mesh, applies a colormap transform the morphometry data values into colors, and renders the resulting colored mesh in an interactive window. If hemi is 'both', the data is rendered for the whole brain.
Usage
vis.data.on.subject(
subjects_dir,
vis_subject_id,
morph_data_lh = NULL,
morph_data_rh = NULL,
surface = "white",
views = c("t4"),
rgloptions = rglo(),
rglactions = list(),
draw_colorbar = FALSE,
makecmap_options = mkco.seq(),
bg = NULL,
morph_data_both = NULL,
style = "default"
)
Arguments
subjects_dir |
string. The FreeSurfer SUBJECTS_DIR, i.e., a directory containing the data for all your subjects, each in a subdir named after the subject identifier. |
vis_subject_id |
string. The subject identifier from which to obtain the surface for data visualization. Example: 'fsaverage'. |
morph_data_lh |
numeric vector or character string or NULL, the data to visualize on the left hemisphere surface. If a string, it is treated as a filename and data is loaded from it first. When it is a numerical vector, this is assumed to be the data already. The data must have the same length as the surface of the vis_subject_id has vertices. If NULL, this surface will not be rendered. Only one of morph_data_lh or morph_data_rh is allowed to be NULL. |
morph_data_rh |
numeric vector or character string or NULL, the data to visualize on the right hemisphere surface. If a string, it is treated as a filename and data is loaded from it first. When it is a numerical vector, this is assumed to be the data already. The data must have the same length as the surface of the vis_subject_id has vertices. If NULL, this surface will not be rendered. Only one of morph_data_lh or morph_data_rh is allowed to be NULL. |
surface |
string. The display surface. E.g., "white", "pial", or "inflated". Defaults to "white". |
views |
list of strings. Valid entries include: 'si': single interactive view. 't4': tiled view showing the brain from 4 angles. 't9': tiled view showing the brain from 9 angles. |
rgloptions |
option list passed to |
rglactions |
named list. A list in which the names are from a set of pre-defined actions. The values can be used to specify parameters for the action. The following example clips outliers in the data before plotting and writes a screenshot in PNG format: |
draw_colorbar |
logical or one of the character strings 'vertical' or 'horizontal', whether to draw a colorbar. Notice: the colorbar is drawn to a separate subplot, and this only works if there is enough space for it, i.e., the plot resolution must be high enough. You may have to increase the plot size for the colorbar to show up, see the vignette for instructions. Defaults to |
makecmap_options |
named list of parameters to pass to |
bg |
a background definition. Can be a surface color layer or a character string like 'curv_light' to select a pre-defined layer, see |
morph_data_both |
numeric vector or NULL, the data to visualize on both hemispheres. This must be a single vector with length equal to the sum of the vertex counts of the left and the right hemisphere. The data for the left hemisphere must come first. If this is given, 'morph_data_lh' and 'morph_data_rh' must be NULL. |
style |
character string, a rendering style, e.g., 'default', 'shiny' or 'semitransparent'. |
Value
list of coloredmeshes. The coloredmeshes used for the visualization.
See Also
Other visualization functions:
highlight.vertices.on.subject(),
highlight.vertices.on.subject.spheres(),
vis.color.on.subject(),
vis.data.on.fsaverage(),
vis.labeldata.on.subject(),
vis.mask.on.subject(),
vis.region.values.on.subject(),
vis.rglwidget(),
vis.subcortical.region.values(),
vis.subject.annot(),
vis.subject.label(),
vis.subject.morph.native(),
vis.subject.morph.standard(),
vis.subject.pre(),
vis.symmetric.data.on.subject(),
vis.volume.clusters(),
vis.volume.on.surface(),
vislayout.from.coloredmeshes()
Other morphometry visualization functions:
vis.data.on.fsaverage(),
vis.subject.morph.native(),
vis.subject.morph.standard(),
vis.symmetric.data.on.subject()
Examples
## Not run:
fsbrain::download_optional_data();
subjects_dir = fsbrain::get_optional_data_filepath("subjects_dir");
morph_data_lh = subject.morph.native(subjects_dir, 'subject1', 'thickness', 'lh');
morph_data_rh = NULL;
vis.data.on.subject(subjects_dir, 'subject1', morph_data_lh, morph_data_rh);
## End(Not run)
Visualize DTI tracks from Diffusion Toolkit/TrackVis TRK format file.
Description
Visualize DTI tracks from Diffusion Toolkit/TrackVis TRK format file.
Usage
vis.dti.trk(
trk,
filter_tracks = list(min_length = 15, min_segment_count = 6),
color_by_orientation = FALSE
)
Arguments
trk |
character string, the path to a TRK file that should be loaded. Alternatively, a loaded |
filter_tracks |
optional, named list of filters. Can contain fields |
color_by_orientation |
logical, whether to color the tracks by orientation. Slower, but may make the resulting visualization easier to interprete. |
Value
The (loaded or received) trk instance. Note that this function is typically called for the side effect of visualization.
Note
The current simple implementation is very slow if the number of tracks becomes large (several thousand tracks).
Examples
## Not run:
# Create the following file with Diffusion Toolkit from your DTI data:
trk = freesurferformats::read.dti.trk("~/data/tim_only/tim/DICOM/dti.trk");
vis.dti.trk(trk);
## End(Not run)
Export high-quality brainview image with a colorbar.
Description
This function serves as an easy (but slightly inflexible) way to export a high-quality, tight-layout, colorbar figure to disk. If no colorbar is required, one can use vislayout.from.coloredmeshes instead.
Usage
vis.export.from.coloredmeshes(
coloredmeshes,
colorbar_legend = NULL,
img_only = TRUE,
horizontal = TRUE,
silent = TRUE,
quality = 1L,
output_img = "fsbrain_arranged.png",
image.plot_extra_options = NULL,
large_legend = TRUE,
view_angles = get.view.angle.names(angle_set = "t4"),
style = "default",
grid_like = TRUE,
background_color = "white",
transparency_color = NULL,
...
)
Arguments
coloredmeshes |
list of coloredmesh. A coloredmesh is a named list as returned by the |
colorbar_legend |
character string or NULL, the title for the colorbar. |
img_only |
logical, whether to return only the resulting image |
horizontal |
logical, whether to plot the colorbar horizontally (TRUE) or vertically (FALSE). Pass 'NULL' to force no colorbar at all. |
silent |
logical, whether to suppress messages |
quality |
integer, an arbitrary quality. This is the resolution per tile before trimming, divided by 1000, in pixels. Example: 1L means 1000x1000 pixels per tile before trimming. Currently supported values: |
output_img |
string, path to the output file. Defaults to "fsbrain_arranged.png" |
image.plot_extra_options |
named list, custom options for fields::image.plot. Overwrites those derived from the quality setting. If in doubt, leave this alone. |
large_legend |
logical, whether to plot extra large legend text, affects the font size of the colorbar_legend and the tick labels. |
view_angles |
list of strings. See |
style |
the rendering style, see |
grid_like |
logical, passed to |
background_color |
hex color string (like '#FFFFFF'), the color to use for the background. Ignored if 'transparency_color' is not NULL. To get a transparent background, use 'transparency_color' instead of this parameter. WARNING: Do not use color names (like 'gray'), as their interpretation differs between rgl and image magick! |
transparency_color |
hex color string (like '#FFFFFF'), the temporary background color that will get mapped to transparency, or NULL if you do not want a transparent background. If used, it can be any color that does not occur in the foreground. Try '#FFFFFF' (white) or '#000000' (black) if in doubt. WARNING: Do not use color names (like 'gray'), as their interpretation differs between rgl and image magick! |
... |
extra arguments passed to |
Value
magick image instance or named list, depending on the value of 'img_only'. If the latter, the list contains the fields 'rev_vl', 'rev_cb', and 'rev_ex', which are the return values of the functions vislayout.from.coloredmeshes, coloredmesh.plot.colorbar.separate, and combine.colorbar.with.brainview.image, respectively.
Note
Note that your screen resolution has to be high enough to generate the final image in the requested resolution, see the 'fsbrain FAQ' vignette for details and solutions if you run into trouble.
See Also
This function should not be used anymore, it will be deprecated soon. Please use the export function instead.
Examples
## Not run:
rand_data = rnorm(327684, 5, 1.5);
cm = vis.data.on.fsaverage(morph_data_both=rand_data,
rglactions=list('no_vis'=T));
vis.export.from.coloredmeshes(cm, colorbar_legend='Random data',
output_img="~/fsbrain_arranged.png");
## End(Not run)
Visualize fs.surface mesh
Description
Render a mesh. All mesh formats supported by the freesurferformats package are supported, including OFF, PLY, OBJ, STL, and many more.
Usage
vis.fs.surface(
fs_surface,
col = "white",
per_vertex_data = NULL,
hemi = "lh",
makecmap_options = mkco.seq(),
...
)
Arguments
fs_surface |
an fs.surface instance, as returned by function like |
col |
vector of colors, the per-vertex-colors. Defaults to white. Must be a single color or one color per vertex. If parameter 'hemi' is 'both', this must be a hemilist. |
per_vertex_data |
numerical vector, per-vertex data. If given, takes precedence over 'col'. Used to color the mesh using the colormap options in parameter 'makecmap_options'. If a character string, it is assumed to be the full path of a morphometry data file, and the respective file is loaded with |
hemi |
character string, one of 'lh' or 'rh'. This may be used by visualization functions to decide whether or not to show this mesh in a certain view. |
makecmap_options |
named list of parameters to pass to |
... |
extra parameters to pass to |
Value
Note
This function can be used to visualize arbitrary triangular meshes in R. Despite its name, it is not limited to brain surface meshes.
Plot atlas annotations for a group of subjects.
Description
Plot atlas annotations for a group of subjects and combine them into a single large image.
Usage
vis.group.annot(
subjects_dir,
subject_id,
atlas,
view_angles = "sd_dorsal",
output_img = "fsbrain_group_annot.png",
num_per_row = 5L,
captions = subject_id,
rglactions = list(no_vis = TRUE),
...
)
Arguments
subjects_dir |
string. The FreeSurfer SUBJECTS_DIR, i.e., a directory containing the data for all your subjects, each in a subdir named after the subject identifier. |
subject_id |
vector of character strings, the subject identifiers |
atlas |
vector of character strings, the atlas names. Example: |
view_angles |
see |
output_img |
character string, the file path for the output image. Should end with '.png'. |
num_per_row |
positive integer, the number of tiles per row. |
captions |
optional vector of character strings, the short text annotations for the individual tiles. Typically used to plot the subject identifier. |
rglactions |
named list. A list in which the names are from a set of pre-defined actions. The values can be used to specify parameters for the action. The following example clips outliers in the data before plotting and writes a screenshot in PNG format: |
... |
extra parameters passed to the subject level visualization function. Not all may make sense in this context. Example: |
Value
named list, see the return value of arrange.brainview.images.grid for details.
Note
The subjects are plotted row-wise, in the order in which they appear in the 'subject_id' parameter. This function is vectorized over 'subject_id' and 'atlas'.
See Also
Other group visualization functions:
vis.data.on.group.native(),
vis.data.on.group.standard(),
vis.group.coloredmeshes(),
vis.group.morph.native(),
vis.group.morph.standard()
Plot coloredmeshes for a group of subjects.
Description
Plot coloredmeshes for a group of subjects into a single image.
Usage
vis.group.coloredmeshes(
coloredmeshes,
view_angles = "sd_dorsal",
output_img = "fsbrain_group_annot.png",
num_per_row = 5L,
captions = NULL,
background_color = "white"
)
Arguments
coloredmeshes |
a list of coloredmeshes lists, each entry in the outer list contains the hemilist of coloredmeshes (lefgt and right hemisphere mesh) for one subject. |
view_angles |
see |
output_img |
character string, the file path for the output image. Should end with '.png'. |
num_per_row |
positive integer, the number of tiles per row. |
captions |
optional vector of character strings, the short text annotations for the individual tiles. Typically used to plot the subject identifier. |
background_color |
color for image background (transparency is not supported). |
Value
named list, see the return value of arrange.brainview.images.grid for details.
Note
This is a mid-level function, end users may want to call high-level functions like vis.group.annot instead.
See Also
Other group visualization functions:
vis.data.on.group.native(),
vis.data.on.group.standard(),
vis.group.annot(),
vis.group.morph.native(),
vis.group.morph.standard()
Plot native space morphometry data for a group of subjects.
Description
Plot native space morphometry data for a group of subjects and combine them into a single large image.
Usage
vis.group.morph.native(
subjects_dir,
subject_id,
measure,
view_angles = "sd_dorsal",
output_img = "fsbrain_group_morph.png",
num_per_row = 5L,
captions = subject_id,
rglactions = list(no_vis = TRUE),
...
)
Arguments
subjects_dir |
string. The FreeSurfer SUBJECTS_DIR, i.e., a directory containing the data for all your subjects, each in a subdir named after the subject identifier. |
subject_id |
vector of character strings, the subject identifiers |
measure |
vector of character strings, the morphometry measures, e.g., |
view_angles |
see |
output_img |
character string, the file path for the output image. Should end with '.png'. |
num_per_row |
positive integer, the number of tiles per row. |
captions |
optional vector of character strings, the short text annotations for the individual tiles. Typically used to plot the subject identifier. |
rglactions |
named list. A list in which the names are from a set of pre-defined actions. The values can be used to specify parameters for the action. The following example clips outliers in the data before plotting and writes a screenshot in PNG format: |
... |
extra parameters passed to the subject level visualization function. Not all may make sense in this context. Example: |
Value
named list, see the return value of arrange.brainview.images.grid for details.
Note
The subjects are plotted row-wise, in the order in which they appear in the 'subject_id' parameter. This function is vectorized over 'subject_id' and 'measure'.
You can force an identical plot range for all subjects, so that one color represents identical values across subjects, via 'makecmap_options'. E.g., for the ... parameter, pass makecmap_options=list('colFn'=viridis::viridis, 'range'=c(0, 4))).
See Also
Other group visualization functions:
vis.data.on.group.native(),
vis.data.on.group.standard(),
vis.group.annot(),
vis.group.coloredmeshes(),
vis.group.morph.standard()
Plot standard space morphometry data for a group of subjects.
Description
Plot standard space morphometry data for a group of subjects and combine them into a single large image.
Usage
vis.group.morph.standard(
subjects_dir,
subject_id,
measure,
fwhm = "10",
view_angles = "sd_dorsal",
output_img = "fsbrain_group_morph.png",
num_per_row = 5L,
captions = subject_id,
rglactions = list(no_vis = TRUE),
...
)
Arguments
subjects_dir |
string. The FreeSurfer SUBJECTS_DIR, i.e., a directory containing the data for all your subjects, each in a subdir named after the subject identifier. |
subject_id |
vector of character strings, the subject identifiers |
measure |
vector of character strings, the morphometry measures, e.g., |
fwhm |
vector of character strings, the smoothing kernel FWHM strings, e.g., |
view_angles |
see |
output_img |
character string, the file path for the output image. Should end with '.png'. |
num_per_row |
positive integer, the number of tiles per row. |
captions |
optional vector of character strings, the short text annotations for the individual tiles. Typically used to plot the subject identifier. |
rglactions |
named list. A list in which the names are from a set of pre-defined actions. The values can be used to specify parameters for the action. The following example clips outliers in the data before plotting and writes a screenshot in PNG format: |
... |
extra parameters passed to the subject level visualization function. Not all may make sense in this context. Example: |
Value
named list, see the return value of arrange.brainview.images.grid for details.
Note
The subjects are plotted row-wise, in the order in which they appear in the 'subject_id' parameter. This function is vectorized over 'subject_id', 'measure' and 'fwhm'.
You can force an identical plot range for all subjects, so that one color represents identical values across subjects, via 'makecmap_options'. E.g., for the ... parameter, pass makecmap_options=list('colFn'=viridis::viridis, 'range'=c(0, 4))).
See Also
Other group visualization functions:
vis.data.on.group.native(),
vis.data.on.group.standard(),
vis.group.annot(),
vis.group.coloredmeshes(),
vis.group.morph.native()
Visualize a label on the surface of a subject.
Description
Visualizes a label. Note that a label is just a set of vertices, and that you can use this function to visualize sets of vertices, e.g., to see where on the mesh a certain vertex lies. It may be helpful the visualize the vertex with its neighbors, because otherwise it may be too small to spot. Use the function mesh.vertex.neighbors to get them. It is advisable to set the view to the interactive 'si' mode and use the 'inflated' surface to identify single vertices.
Usage
vis.labeldata.on.subject(
subjects_dir,
vis_subject_id,
lh_labeldata,
rh_labeldata,
surface = "white",
views = c("t4"),
rgloptions = rglo(),
rglactions = list(),
draw_colorbar = FALSE,
makecmap_options = list(colFn = label.colFn.inv),
style = "default",
...
)
Arguments
subjects_dir |
string. The FreeSurfer SUBJECTS_DIR, i.e., a directory containing the data for all your subjects, each in a subdir named after the subject identifier. |
vis_subject_id |
string. The subject identifier from which to obtain the surface for data visualization. Example: 'fsaverage'. |
lh_labeldata |
integer vector of vertex indices for the left hemisphere |
rh_labeldata |
integer vector of vertex indices for the right hemisphere |
surface |
string. The display surface. E.g., "white", "pial", or "inflated". Defaults to "white". |
views |
list of strings. Valid entries include: 'si': single interactive view. 't4': tiled view showing the brain from 4 angles. 't9': tiled view showing the brain from 9 angles. |
rgloptions |
option list passed to |
rglactions |
named list. A list in which the names are from a set of pre-defined actions. The values can be used to specify parameters for the action. The following example clips outliers in the data before plotting and writes a screenshot in PNG format: |
draw_colorbar |
logical or one of the character strings 'vertical' or 'horizontal', whether to draw a colorbar. Notice: the colorbar is drawn to a separate subplot, and this only works if there is enough space for it, i.e., the plot resolution must be high enough. You may have to increase the plot size for the colorbar to show up, see the vignette for instructions. Defaults to |
makecmap_options |
named list of parameters to pass to |
style |
character string, a rendering style, e.g., 'default', 'shiny' or 'semitransparent'. |
... |
extra arguments to pass to |
Value
list of coloredmeshes. The coloredmeshes used for the visualization.
Note
Drawing a colorbar for label data makes limited sense, use a legend instead. The colorbar can give a rough overview of the relative number of label and non-label vertices though, so it is possible to request one.
See Also
Other label functions:
apply.label.to.morphdata(),
apply.labeldata.to.morphdata(),
subject.lobes(),
subject.mask(),
vis.subject.label()
Other visualization functions:
highlight.vertices.on.subject(),
highlight.vertices.on.subject.spheres(),
vis.color.on.subject(),
vis.data.on.fsaverage(),
vis.data.on.subject(),
vis.mask.on.subject(),
vis.region.values.on.subject(),
vis.rglwidget(),
vis.subcortical.region.values(),
vis.subject.annot(),
vis.subject.label(),
vis.subject.morph.native(),
vis.subject.morph.standard(),
vis.subject.pre(),
vis.symmetric.data.on.subject(),
vis.volume.clusters(),
vis.volume.on.surface(),
vislayout.from.coloredmeshes()
Examples
## Not run:
fsbrain::download_optional_data();
# Define the data to use:
subjects_dir = fsbrain::get_optional_data_filepath("subjects_dir");
lh_labeldata = c(1000, 1001, 1002); # only the vertices, will be tiny.
subject_id = 'subject1';
surface = 'white'; # Should use 'inflated', but we do not currently
# ship it for the example subject to reduce download size.
# For the right hemi, extend them to neighborhood for better visibility:
rh_labeldata = c(500, 5000);
rh_surface = subject.surface(subjects_dir, subject_id, surface, 'rh');
rh_labeldata_neighborhood = mesh.vertex.neighbors(rh_surface, rh_labeldata);
vis.labeldata.on.subject(subjects_dir, subject_id, lh_labeldata,
rh_labeldata_neighborhood$vertices, surface=surface, views=c('si'));
## End(Not run)
Visualize a vertex mask on the surface of a subject.
Description
A mask is a logical vector that contains one value per vertex. You can create it manually, or use functions like mask.from.labeldata.for.hemi to create and modify it. Check the example for this function.
Usage
vis.mask.on.subject(
subjects_dir,
vis_subject_id,
mask_lh,
mask_rh,
surface = "white",
views = c("t4"),
rgloptions = rglo(),
rglactions = list(),
draw_colorbar = FALSE,
makecmap_options = list(colFn = label.colFn.inv),
style = "default"
)
Arguments
subjects_dir |
string. The FreeSurfer SUBJECTS_DIR, i.e., a directory containing the data for all your subjects, each in a subdir named after the subject identifier. |
vis_subject_id |
string. The subject identifier from which to obtain the surface for data visualization. Example: 'fsaverage'. |
mask_lh |
logical vector or NULL, the mask to visualize on the left hemisphere surface. Must have the same length as the lh surface of the vis_subject_id has vertices. If NULL, this surface will not be rendered. Only one of mask_lh or mask_rh is allowed to be NULL. |
mask_rh |
logical vector or NULL, the mask to visualize on the right hemisphere surface. Must have the same length as the rh surface of the vis_subject_id has vertices. If NULL, this surface will not be rendered. Only one of mask_lh or mask_rh is allowed to be NULL. |
surface |
string. The display surface. E.g., "white", "pial", or "inflated". Defaults to "white". |
views |
list of strings. Valid entries include: 'si': single interactive view. 't4': tiled view showing the brain from 4 angles. 't9': tiled view showing the brain from 9 angles. |
rgloptions |
option list passed to |
rglactions |
named list. A list in which the names are from a set of pre-defined actions. The values can be used to specify parameters for the action. The following example clips outliers in the data before plotting and writes a screenshot in PNG format: |
draw_colorbar |
logical or one of the character strings 'vertical' or 'horizontal', whether to draw a colorbar. Notice: the colorbar is drawn to a separate subplot, and this only works if there is enough space for it, i.e., the plot resolution must be high enough. You may have to increase the plot size for the colorbar to show up, see the vignette for instructions. Defaults to |
makecmap_options |
named list of parameters to pass to |
style |
character string, a rendering style, e.g., 'default', 'shiny' or 'semitransparent'. |
Value
list of coloredmeshes. The coloredmeshes used for the visualization.
Note
Drawing a colorbar for label data makes limited sense, use a legend instead. The colorbar can give a rough overview of the relative number of label and non-label vertices though, so it is possible to request one.
See Also
Other mask functions:
coloredmesh.from.mask(),
mask.from.labeldata.for.hemi()
Other visualization functions:
highlight.vertices.on.subject(),
highlight.vertices.on.subject.spheres(),
vis.color.on.subject(),
vis.data.on.fsaverage(),
vis.data.on.subject(),
vis.labeldata.on.subject(),
vis.region.values.on.subject(),
vis.rglwidget(),
vis.subcortical.region.values(),
vis.subject.annot(),
vis.subject.label(),
vis.subject.morph.native(),
vis.subject.morph.standard(),
vis.subject.pre(),
vis.symmetric.data.on.subject(),
vis.volume.clusters(),
vis.volume.on.surface(),
vislayout.from.coloredmeshes()
Examples
## Not run:
fsbrain::download_optional_data();
# Define the data to use:
subjects_dir = fsbrain::get_optional_data_filepath("subjects_dir");
subject_id = 'subject1';
surface = 'white';
hemi = 'both';
atlas = 'aparc';
region = 'bankssts';
# Create a mask from a region of an annotation:
lh_annot = subject.annot(subjects_dir, subject_id, 'lh', atlas);
rh_annot = subject.annot(subjects_dir, subject_id, 'rh', atlas);
lh_label = label.from.annotdata(lh_annot, region);
rh_label = label.from.annotdata(rh_annot, region);
lh_mask = mask.from.labeldata.for.hemi(lh_label, length(lh_annot$vertices));
rh_mask = mask.from.labeldata.for.hemi(rh_label, length(rh_annot$vertices));
# Edit the mask: add the vertices from another region to it:
region2 = 'medialorbitofrontal';
lh_label2 = label.from.annotdata(lh_annot, region2);
rh_label2 = label.from.annotdata(rh_annot, region2);
lh_mask2 = mask.from.labeldata.for.hemi(lh_label2, length(lh_annot$vertices),
existing_mask = lh_mask);
rh_mask2 = mask.from.labeldata.for.hemi(rh_label2, length(rh_annot$vertices),
existing_mask = rh_mask);
# Visualize the mask:
vis.mask.on.subject(subjects_dir, subject_id, lh_mask2, rh_mask2);
## End(Not run)
Draw a 3D line from vertex to vertex
Description
To get a nice path along the surface, pass the vertex indices along a geodesic path. Note: You can first open an interactive brain view (views='si') with a vis* function like vis.subject.morph.native, then run this function to draw into the active plot.
Usage
vis.path.along.verts(
surface_vertices,
path_vertex_indices = NULL,
do_vis = TRUE,
color = "#FF0000",
no_material = FALSE
)
Arguments
surface_vertices |
float matrix of size (n, 3), the surface vertex coordinates, as returned as part of |
path_vertex_indices |
vector of vertex indices, the path. You will need to have it computed already. (This function does not compute geodesic paths, see |
do_vis |
logical, whether to actually draw the path. |
color |
a color string, like '#FF0000' to color the path. |
no_material |
logical, whether to use set the custom rendering material properties for path visualization using |
Value
n x 3 matrix, the coordinates of the path, with appropriate ones duplicated for rgl pair-wise segments3d rendering.
See Also
vis.paths if you need to draw many paths, geodesic.path to compute a geodesic path.
Other surface mesh functions:
face.edges(),
label.border(),
mesh.vertex.included.faces(),
mesh.vertex.neighbors(),
subject.surface()
Examples
## Not run:
sjd = fsaverage.path(TRUE);
surface = subject.surface(sjd, 'fsaverage3',
surface = "white", hemi = "lh");
p = geodesic.path(surface, 5, c(10, 20));
vis.subject.morph.native(sjd, 'fsaverage3', views='si');
vis.path.along.verts(surface$vertices, p[[1]]);
## End(Not run)
Visualize many paths.
Description
Visualize many paths.
Usage
vis.paths(coords_list, path_color = "#FF0000")
Arguments
coords_list |
list of |
path_color |
a color value, the color in which to plot the paths. |
Note
This function is a lot faster than calling vis.path.along.verts many times and having it draw each time.
Visualize several paths in different colors.
Description
Visualize several paths in different colors.
Usage
vis.paths.along.verts(
surface_vertices,
paths,
color = viridis::viridis(length(paths))
)
Arguments
surface_vertices |
float matrix of size (n, 3), the surface vertex coordinates, as returned as part of |
paths |
list of positive integer vectors, the vertex indices of the paths |
color |
a color string, like '#FF0000' to color the path. |
Visualize arbitrary data, one value per atlas region, on the surface of any subject (including template subjects).
Description
This function can be used for rendering a single value (color) for all vertices of an atlas region. The typical usecase is the visualization of results of atlas-based analyses, e.g., p-value, means or other aggregated values over all vertices of a region.
Usage
vis.region.values.on.subject(
subjects_dir,
subject_id,
atlas,
lh_region_value_list,
rh_region_value_list,
surface = "white",
views = c("t4"),
rgloptions = rglo(),
rglactions = list(),
value_for_unlisted_regions = NA,
draw_colorbar = FALSE,
makecmap_options = mkco.heat(),
bg = NULL,
silent = FALSE,
style = "default",
border = NULL
)
Arguments
subjects_dir |
string. The FreeSurfer SUBJECTS_DIR, i.e., a directory containing the data for all your subjects, each in a subdir named after the subject identifier. |
subject_id |
string. The subject identifier. |
atlas |
string. The brain atlas to use. E.g., 'aparc' or 'aparc.a2009s'. |
lh_region_value_list |
named list. A list for the left hemisphere in which the names are atlas regions, and the values are the value to write to all vertices of that region. You can pass an unnamed list, but then the its length must exactly match the number of atlas regions. The order of values must also match the order of regions in the annotation, of course. The resulting mapping will be printed so you can check it (unless 'silent' is set). |
rh_region_value_list |
named list. A list for the right hemisphere in which the names are atlas regions, and the values are the value to write to all vertices of that region. |
surface |
string. The display surface. E.g., "white", "pial", or "inflated". Defaults to "white". |
views |
list of strings. Valid entries include: 'si': single interactive view. 't4': tiled view showing the brain from 4 angles. 't9': tiled view showing the brain from 9 angles. |
rgloptions |
option list passed to |
rglactions |
named list. A list in which the names are from a set of pre-defined actions. The values can be used to specify parameters for the action. The following example clips outliers in the data before plotting and writes a screenshot in PNG format: |
value_for_unlisted_regions |
numerical scalar or |
draw_colorbar |
logical or one of the character strings 'vertical' or 'horizontal', whether to draw a colorbar. Notice: the colorbar is drawn to a separate subplot, and this only works if there is enough space for it, i.e., the plot resolution must be high enough. You may have to increase the plot size for the colorbar to show up, see the vignette for instructions. Defaults to |
makecmap_options |
named list of parameters to pass to |
bg |
a background definition. Can be a surface color layer or a character string like 'curv_light' to select a pre-defined layer, see |
silent |
logical, whether to suppress mapping info in case of unnamed region value lists (see 'lh_region_value_list' description). |
style |
character string, a rendering style, e.g., 'default', 'shiny' or 'semitransparent'. |
border |
logical, whether to add a black border around the regions. Alternatively, the parameter can be given as a named list with entries 'color' and 'expand_inwards', where the latter defines the borders thickness. E.g., |
Value
list of coloredmeshes. The coloredmeshes used for the visualization.
See Also
Other visualization functions:
highlight.vertices.on.subject(),
highlight.vertices.on.subject.spheres(),
vis.color.on.subject(),
vis.data.on.fsaverage(),
vis.data.on.subject(),
vis.labeldata.on.subject(),
vis.mask.on.subject(),
vis.rglwidget(),
vis.subcortical.region.values(),
vis.subject.annot(),
vis.subject.label(),
vis.subject.morph.native(),
vis.subject.morph.standard(),
vis.subject.pre(),
vis.symmetric.data.on.subject(),
vis.volume.clusters(),
vis.volume.on.surface(),
vislayout.from.coloredmeshes()
Other region-based visualization functions:
vis.subcortical.region.values(),
vis.subject.annot()
Examples
## Not run:
fsbrain::download_optional_data();
subjects_dir = fsbrain::get_optional_data_filepath("subjects_dir");
atlas = 'aparc'; # Desikan atlas
# For the left hemisphere, we just assign a subset of the
# atlas regions. The others will get the default value.
lh_region_value_list = list("bankssts"=0.9, "precuneus"=0.7, "postcentral"=0.8, "lingual"=0.6);
# For the right hemisphere, we retrieve the full list of regions for
# the atlas, and assign random values to all of them.
atlas_region_names = get.atlas.region.names(atlas, template_subjects_dir = subjects_dir,
template_subject='subject1');
rh_region_value_list = rnorm(length(atlas_region_names), 3.0, 1.0);
names(rh_region_value_list) = atlas_region_names;
vis.region.values.on.subject(subjects_dir, 'subject1', atlas,
lh_region_value_list, rh_region_value_list);
## End(Not run)
Visualize a renderable object
Description
Renders instances of coloredmesh, coloredvoxels, coloredpaths and Triangles3D.
Usage
vis.renderable(cmesh, skip_all_na = TRUE, style = "default")
Arguments
cmesh |
an instance of one of the supported renderable classes |
skip_all_na |
logical, whether to skip rendering hidden instances |
style |
a rendering style, can be a style name or a list defining an rgl material style |
See Also
Visualize coloredmeshes as an interactive rgl WebGL widget for use in R Shiny apps and RMarkdown documents.
Description
Create an interactive 3D brain view that can be embedded in R Shiny applications or RMarkdown/HTML documents. Unlike the standard vis.* functions which open an X11/OpenGL window and are designed for static screenshot export, this function renders to a headless rgl device and returns an rglwidget object that provides interactive 3D rendering in a web browser. The user can rotate, zoom, and pan the brain in the widget.
Usage
vis.rglwidget(
coloredmeshes,
background = "white",
skip_all_na = TRUE,
style = "default",
rgloptions = rglo(),
...
)
Arguments
coloredmeshes |
a hemilist of coloredmeshes (as returned by |
background |
string, background color passed to |
skip_all_na |
logical, whether to skip (i.e., not render) meshes in the list that have the property 'render' set to FALSE. Defaults to TRUE. |
style |
a named list of style parameters or a string specifying an available style by name (e.g., 'shiny'). Defaults to 'default', the default style. |
rgloptions |
named list. Parameters passed to |
... |
extra arguments passed to |
Value
an htmlwidget object from the rgl package, suitable for use with rglwidgetOutput / renderRglwidget in Shiny, or for direct embedding in RMarkdown HTML output.
See Also
Other visualization functions:
highlight.vertices.on.subject(),
highlight.vertices.on.subject.spheres(),
vis.color.on.subject(),
vis.data.on.fsaverage(),
vis.data.on.subject(),
vis.labeldata.on.subject(),
vis.mask.on.subject(),
vis.region.values.on.subject(),
vis.subcortical.region.values(),
vis.subject.annot(),
vis.subject.label(),
vis.subject.morph.native(),
vis.subject.morph.standard(),
vis.subject.pre(),
vis.symmetric.data.on.subject(),
vis.volume.clusters(),
vis.volume.on.surface(),
vislayout.from.coloredmeshes()
Examples
## Not run:
fsbrain::download_optional_data();
fsbrain::download_fsaverage(accept_freesurfer_license=TRUE);
subjects_dir = fsbrain::get_optional_data_filepath("subjects_dir");
# Get coloredmeshes without opening a window:
cm = vis.subject.annot(subjects_dir, 'subject1', 'aparc', 'both',
rglactions=list('no_vis'=TRUE));
# Create an interactive WebGL widget:
widget = vis.rglwidget(cm);
# In RMarkdown, just print it:
# widget
# In Shiny, use rglwidgetOutput / renderRglwidget (see the shiny demo app).
## End(Not run)
Rotate and visualize coloredmeshes, applying a style.
Description
Rotate and visualize coloredmeshes, applying a style.
Usage
vis.rotated.coloredmeshes(
renderables,
rotation_angle,
x,
y,
z,
style = "default",
draw_colorbar = FALSE
)
Arguments
rotation_angle |
angle in radians. Passed to |
x |
x value passed to |
y |
y value passed to |
z |
z value passed to |
style |
a named list of style parameters or a string specifying an available style by name (e.g., 'shiny'). Defaults to 'default', the default style. |
draw_colorbar |
logical. Whether to draw a colorbar. |
coloredmeshes |
list of renderables. A coloredmesh is a named list as returned by the coloredmesh.from.* functions. It has the entries 'mesh' of type tmesh3d, a 'col', which is a color specification for such a mesh. |
Plot legend for a brain volume segmentation based on colorLUT.
Description
Plot legend for a brain volume segmentation based on colorLUT.
Usage
vis.seg.legend(colortable, segvol, ...)
Arguments
colortable |
a colortable data.frame, or a character string, which will be treated as a filename and loaded with |
segvol |
optional 3D or 4D array of integer data, the brain segmentation. Or a character string, which will be treated as a filename and loaded with |
... |
passed on to vis.colortable.legend |
Examples
## Not run:
ct = file.path(fs.home(), "FreeSurferColorLUT.txt");
seg = file.path(fs.home(), "subjects", "fsaverage", "mri", "aseg.mgz");
vis.seg.legend(ct, seg);
## End(Not run)
Visualize one value per region of the subcortical atlas of a subject.
Description
Render the subcortical structures of a subject and assign one color per structure, based on one value per atlas region. The subcortical atlas is not defined on the cortical surface: it comes with its own surface mesh that contains the 8 subcortical structures per hemisphere (accumbens area, amygdala, caudate, hippocampus, pallidum, putamen, thalamus and lateral ventricle). The mesh and the annotation file are expected in the subject directory ('surf/lh.subcortical', 'surf/rh.subcortical', 'label/lh.subcortical.annot', 'label/rh.subcortical.annot').
The atlas files for the fsaverage template subject are not part of FreeSurfer and are not
required for the package to work. They can be downloaded with download_optional_data or download_fsaverage_atlases into the package cache, which is searched for a subject named 'fsaverage' by default.
Optionally, the structures can be rendered inside a semi-transparent context mesh, typically the cortex of the same subject (see parameter 'cortex'). Note that the context mesh and the atlas mesh must be defined in the same coordinate space, which is why both are taken from the same subject by default.
Usage
vis.subcortical.region.values(
subjects_dir = NULL,
subject_id = "fsaverage",
lh_region_value_list,
rh_region_value_list,
atlas = "subcortical",
surface = "subcortical",
cortex = NULL,
views = c("sd_lateral_lh", "sd_medial_lh", "sd_lateral_rh", "sd_medial_rh"),
rgloptions = rglo(),
rglactions = list(),
value_for_unlisted_regions = NA,
draw_colorbar = FALSE,
makecmap_options = mkco.seq(),
style = "default",
silent = FALSE
)
Arguments
subjects_dir |
string or |
subject_id |
string. The subject identifier. Defaults to 'fsaverage', the template subject for which the subcortical atlas is available for download. |
lh_region_value_list |
named list. A list for the left hemisphere in which the names are atlas regions, and the values are the value to write to all vertices of that region, see |
rh_region_value_list |
named list, the same for the right hemisphere. |
atlas |
string. The name of the atlas to use. Defaults to 'subcortical', the subcortical atlas that ships with the package. Used to construct the annotation file name. |
surface |
string. The name of the surface mesh that belongs to the atlas. Defaults to 'subcortical'. Used to construct the surface file name, in contrast to the other vis functions this is not a cortical surface. |
cortex |
|
views |
list of strings. The views to render. Defaults to lateral and medial views of both hemispheres. See |
rgloptions |
option list passed to |
rglactions |
named list. A list in which the names are from a set of pre-defined actions, see |
value_for_unlisted_regions |
numerical scalar or |
draw_colorbar |
logical. Whether to draw a colorbar. Defaults to FALSE, see |
makecmap_options |
named list of parameters to pass to |
style |
a rendering style for the data meshes, see |
silent |
logical, whether to suppress messages. |
Value
list of coloredmeshes. The coloredmeshes used for the visualization, invisibly. The list contains the data meshes (and the context meshes, if any) as a flat list, so it can be passed to export to save the rendered views into an image file.
Hiding regions
Assigning the value NaN to a region hides it: the vertices of the region are removed from the mesh (together with the faces that use them), so the structure is not rendered at all, in contrast to drawing it in the color that represents missing data. This is a per-vertex operation on the shared mesh of all regions of a hemisphere, so hiding is not limited to entire meshes and can be combined with any rendering style.
The values of hidden regions are excluded from the colorbar range, just like NA values. Setting value_for_unlisted_regions = NaN hides all regions that are not listed in the region value lists, which is a convenient way of visualizing only a few structures of an atlas.
Note
The subcortical atlas is defined in MNI305 space (fsaverage surface RAS), so it can be combined with the cortical surfaces of the fsaverage template subject. The 8 structures per hemisphere are colored with the standard FreeSurfer 'aseg' colors when you visualize the atlas itself, this function assigns data-driven colors instead. Region names are the FreeSurfer 'aseg' structure names, e.g., 'Left-Hippocampus' or 'Right-Thalamus-Proper'.
This function is not limited to the subcortical atlas: any atlas that comes with its own mesh and annotation files works, pass the respective names via parameters 'atlas' and 'surface'.
See Also
Other visualization functions:
highlight.vertices.on.subject(),
highlight.vertices.on.subject.spheres(),
vis.color.on.subject(),
vis.data.on.fsaverage(),
vis.data.on.subject(),
vis.labeldata.on.subject(),
vis.mask.on.subject(),
vis.region.values.on.subject(),
vis.rglwidget(),
vis.subject.annot(),
vis.subject.label(),
vis.subject.morph.native(),
vis.subject.morph.standard(),
vis.subject.pre(),
vis.symmetric.data.on.subject(),
vis.volume.clusters(),
vis.volume.on.surface(),
vislayout.from.coloredmeshes()
Other region-based visualization functions:
vis.region.values.on.subject(),
vis.subject.annot()
Examples
## Not run:
fsbrain::download_optional_data(); # includes the subcortical atlas for fsaverage
subjects_dir = fsbrain::get_optional_data_filepath("subjects_dir");
# One value per region, for all 8 subcortical structures of the left and right hemisphere.
lh_region_values = list("Left-Accumbens-area"=0.1, "Left-Amygdala"=0.2,
"Left-Caudate"=0.3, "Left-Hippocampus"=0.4, "Left-Pallidum"=0.5,
"Left-Putamen"=0.6, "Left-Thalamus-Proper"=0.7, "Left-Lateral-Ventricle"=0.8);
rh_region_values = list("Right-Accumbens-area"=0.1, "Right-Amygdala"=0.2,
"Right-Caudate"=0.3, "Right-Hippocampus"=0.4, "Right-Pallidum"=0.5,
"Right-Putamen"=0.6, "Right-Thalamus-Proper"=0.7, "Right-Lateral-Ventricle"=0.8);
# Render the structures on their own, and save the result to a file:
cm = vis.subcortical.region.values(subjects_dir, "fsaverage", lh_region_values,
rh_region_values, rglactions = list("no_vis" = TRUE));
export(cm, colorbar_legend = "my values", output_img = "subcortical.png");
# Render the structures inside a semi-transparent cortex:
cm_ctx = vis.subcortical.region.values(subjects_dir, "fsaverage", lh_region_values,
rh_region_values, cortex = "white", rglactions = list("no_vis" = TRUE));
export(cm_ctx, colorbar_legend = "my values", output_img = "subcortical_in_cortex.png");
# Visualize only the two hippocampi, by hiding all other regions (they are set to NaN):
cm_hippo = vis.subcortical.region.values(subjects_dir, "fsaverage",
list("Left-Hippocampus" = 0.2), list("Right-Hippocampus" = 0.8),
value_for_unlisted_regions = NaN, rglactions = list("no_vis" = TRUE));
export(cm_hippo, colorbar_legend = "my values", output_img = "subcortical_hippocampi.png");
## End(Not run)
Visualize an annotation for a subject.
Description
Creates a surface mesh, loads the colors from the annotation, and renders the resulting colored mesh in an interactive window. If hemi is 'both', the data is rendered for the whole brain.
Usage
vis.subject.annot(
subjects_dir,
subject_id,
atlas,
hemi = "both",
surface = "white",
views = c("t4"),
rgloptions = rglo(),
rglactions = list(),
outline = FALSE,
style = "default"
)
Arguments
subjects_dir |
string. The FreeSurfer SUBJECTS_DIR, i.e., a directory containing the data for all your subjects, each in a subdir named after the subject identifier. |
subject_id |
string. The subject identifier. |
atlas |
string. The atlas name. E.g., "aparc", "aparc.2009s", or "aparc.DKTatlas". Used to construct the name of the annotation file to be loaded. Can also be a hemilist of already loaded annotations. |
hemi |
string, one of 'lh', 'rh', or 'both'. The hemisphere name. Used to construct the names of the label data files to be loaded. |
surface |
string. The display surface. E.g., "white", "pial", or "inflated". Defaults to "white". |
views |
list of strings. Valid entries include: 'si': single interactive view. 't4': tiled view showing the brain from 4 angles. 't9': tiled view showing the brain from 9 angles. |
rgloptions |
option list passed to |
rglactions |
named list. A list in which the names are from a set of pre-defined actions. The values can be used to specify parameters for the action. The following example clips outliers in the data before plotting and writes a screenshot in PNG format: |
outline |
logical, whether to draw an outline only instead of filling the regions. Defaults to |
style |
character string, a rendering style, e.g., 'default', 'shiny' or 'semitransparent'. |
Value
list of coloredmeshes. The coloredmeshes used for the visualization.
See Also
Other visualization functions:
highlight.vertices.on.subject(),
highlight.vertices.on.subject.spheres(),
vis.color.on.subject(),
vis.data.on.fsaverage(),
vis.data.on.subject(),
vis.labeldata.on.subject(),
vis.mask.on.subject(),
vis.region.values.on.subject(),
vis.rglwidget(),
vis.subcortical.region.values(),
vis.subject.label(),
vis.subject.morph.native(),
vis.subject.morph.standard(),
vis.subject.pre(),
vis.symmetric.data.on.subject(),
vis.volume.clusters(),
vis.volume.on.surface(),
vislayout.from.coloredmeshes()
Other region-based visualization functions:
vis.region.values.on.subject(),
vis.subcortical.region.values()
Examples
## Not run:
fsbrain::download_optional_data();
subjects_dir = fsbrain::get_optional_data_filepath("subjects_dir");
vis.subject.annot(subjects_dir, 'subject1', 'aparc', 'both');
## End(Not run)
Visualize a binary label for a subject.
Description
Visualize a label for a subject. A label is just a logical vector with one entry for each vertex in the mesh. Each vertex may additionally be associated with a scalar value, but this function ignored that.
Usage
vis.subject.label(
subjects_dir,
subject_id,
label,
hemi,
surface = "white",
views = c("t4"),
rgloptions = rglo(),
rglactions = list(),
draw_colorbar = FALSE,
makecmap_options = list(colFn = label.colFn.inv, col.na = "#FFFFFF00"),
map_to_NA = 0L,
bg = NULL,
style = "default"
)
Arguments
subjects_dir |
string. The FreeSurfer SUBJECTS_DIR, i.e., a directory containing the data for all your subjects, each in a subdir named after the subject identifier. |
subject_id |
string. The subject identifier. |
label |
string. Name of the label file, without the hemi part (if any), but including the '.label' suffix. E.g., 'cortex.label' for '?h.cortex.label'. |
hemi |
string, one of 'lh', 'rh', or 'both'. The hemisphere name. Used to construct the names of the label data files to be loaded. |
surface |
string. The display surface. E.g., "white", "pial", or "inflated". Defaults to "white". |
views |
list of strings. Valid entries include: 'si': single interactive view. 't4': tiled view showing the brain from 4 angles. 't9': tiled view showing the brain from 9 angles. |
rgloptions |
option list passed to |
rglactions |
named list. A list in which the names are from a set of pre-defined actions. The values can be used to specify parameters for the action. The following example clips outliers in the data before plotting and writes a screenshot in PNG format: |
draw_colorbar |
logical or one of the character strings 'vertical' or 'horizontal', whether to draw a colorbar. Notice: the colorbar is drawn to a separate subplot, and this only works if there is enough space for it, i.e., the plot resolution must be high enough. You may have to increase the plot size for the colorbar to show up, see the vignette for instructions. Defaults to |
makecmap_options |
named list of parameters to pass to |
map_to_NA |
the value or value range that should not be considered part of the label, and should thus be plotted as background color. Only used if 'bg' is not |
bg |
a background definition. Can be a surface color layer or a character string like 'curv_light' to select a pre-defined layer, see |
style |
character string, a rendering style, e.g., 'default', 'shiny' or 'semitransparent'. |
Value
list of coloredmeshes. The coloredmeshes used for the visualization.
Note
Drawing a colorbar for label data makes limited sense, use a legend instead. The colorbar can give a rough overview of the relative number of label and non-label vertices though, so it is possible to request one.
See Also
Other visualization functions:
highlight.vertices.on.subject(),
highlight.vertices.on.subject.spheres(),
vis.color.on.subject(),
vis.data.on.fsaverage(),
vis.data.on.subject(),
vis.labeldata.on.subject(),
vis.mask.on.subject(),
vis.region.values.on.subject(),
vis.rglwidget(),
vis.subcortical.region.values(),
vis.subject.annot(),
vis.subject.morph.native(),
vis.subject.morph.standard(),
vis.subject.pre(),
vis.symmetric.data.on.subject(),
vis.volume.clusters(),
vis.volume.on.surface(),
vislayout.from.coloredmeshes()
Other label functions:
apply.label.to.morphdata(),
apply.labeldata.to.morphdata(),
subject.lobes(),
subject.mask(),
vis.labeldata.on.subject()
Examples
## Not run:
fsbrain::download_optional_data();
subjects_dir = fsbrain::get_optional_data_filepath("subjects_dir");
subject_id = 'subject1';
surface = 'white';
hemi = 'both';
label = 'cortex.label';
vis.subject.label(subjects_dir, subject_id, label, hemi, views="si");
## End(Not run)
Visualize native space morphometry data for a subject.
Description
Creates a surface mesh, applies a colormap transform the morphometry data values into colors, and renders the resulting colored mesh in an interactive window. If hemi is 'both', the data is rendered for the whole brain.
Usage
vis.subject.morph.native(
subjects_dir,
subject_id,
measure,
hemi = "both",
surface = "white",
views = c("t4"),
rgloptions = rglo(),
rglactions = list(),
draw_colorbar = FALSE,
cortex_only = FALSE,
style = "default",
makecmap_options = mkco.seq(),
bg = NULL
)
Arguments
subjects_dir |
string. The FreeSurfer SUBJECTS_DIR, i.e., a directory containing the data for all your subjects, each in a subdir named after the subject identifier. |
subject_id |
string. The subject identifier. |
measure |
string. The morphometry data to use. E.g., 'area' or 'thickness'. Pass NULL to render just the surface in white, without any data. |
hemi |
string, one of 'lh', 'rh', or 'both'. The hemisphere name. Used to construct the names of the label data files to be loaded. |
surface |
string. The display surface. E.g., "white", "pial", or "inflated". Defaults to "white". |
views |
list of strings. Valid entries include: 'si': single interactive view. 't4': tiled view showing the brain from 4 angles. 't9': tiled view showing the brain from 9 angles. |
rgloptions |
option list passed to |
rglactions |
named list. A list in which the names are from a set of pre-defined actions. The values can be used to specify parameters for the action. The following example clips outliers in the data before plotting and writes a screenshot in PNG format: |
draw_colorbar |
logical or one of the character strings 'vertical' or 'horizontal', whether to draw a colorbar. Notice: the colorbar is drawn to a separate subplot, and this only works if there is enough space for it, i.e., the plot resolution must be high enough. You may have to increase the plot size for the colorbar to show up, see the vignette for instructions. Defaults to |
cortex_only |
logical, whether to mask the medial wall, i.e., whether the morphometry data for all vertices which are not part of the cortex (as defined by the label file |
style |
character string, a rendering style, e.g., 'default', 'shiny' or 'semitransparent'. |
makecmap_options |
named list of parameters to pass to |
bg |
a background definition. Can be a surface color layer or a character string like 'curv_light' to select a pre-defined layer, see |
Value
list of coloredmeshes. The coloredmeshes used for the visualization.
See Also
Other visualization functions:
highlight.vertices.on.subject(),
highlight.vertices.on.subject.spheres(),
vis.color.on.subject(),
vis.data.on.fsaverage(),
vis.data.on.subject(),
vis.labeldata.on.subject(),
vis.mask.on.subject(),
vis.region.values.on.subject(),
vis.rglwidget(),
vis.subcortical.region.values(),
vis.subject.annot(),
vis.subject.label(),
vis.subject.morph.standard(),
vis.subject.pre(),
vis.symmetric.data.on.subject(),
vis.volume.clusters(),
vis.volume.on.surface(),
vislayout.from.coloredmeshes()
Other morphometry visualization functions:
vis.data.on.fsaverage(),
vis.data.on.subject(),
vis.subject.morph.standard(),
vis.symmetric.data.on.subject()
Examples
## Not run:
fsbrain::download_optional_data();
subjects_dir = fsbrain::get_optional_data_filepath("subjects_dir");
vis.subject.morph.native(subjects_dir, 'subject1', 'thickness', 'lh', views=c("t9"));
## End(Not run)
Visualize native space morphometry data for a subject or a group.
Description
Renders standard space morphometry data for a single subject, or the group mean for a group of subjects. The default template subject is fsaverage.
Usage
vis.subject.morph.standard(
subjects_dir,
subject_id,
measure,
hemi = "both",
fwhm = "10",
surface = "white",
template_subject = "fsaverage",
template_subjects_dir = NULL,
views = c("t4"),
rgloptions = rglo(),
rglactions = list(),
draw_colorbar = FALSE,
cortex_only = FALSE,
makecmap_options = mkco.seq(),
bg = NULL,
style = "default"
)
Arguments
subjects_dir |
string. The FreeSurfer SUBJECTS_DIR, i.e., a directory containing the data for all your subjects, each in a subdir named after the subject identifier. |
subject_id |
character string or vector of character strings, the subject or subjects. For a single subjects, its data will be plotted. If a group of subjects is given instead, at each vertex the mean value over all the subjects will be plotted. |
measure |
string. The morphometry data to use. E.g., 'area' or 'thickness'. Pass NULL to render just the surface in white, without any data. |
hemi |
string, one of 'lh', 'rh', or 'both'. The hemisphere name. Used to construct the names of the label data files to be loaded. |
fwhm |
string, smoothing setting (full width at half maximum of the kernel). The smoothing part of the filename, typically something like '0', '5', '10', ..., or '25'. |
surface |
string. The display surface. E.g., "white", "pial", or "inflated". Defaults to "white". |
template_subject |
The template subject used. This will be used as part of the filename, and its surfaces are loaded for data visualization. Defaults to 'fsaverage'. |
template_subjects_dir |
The template subjects dir. If NULL, the value of the parameter 'subjects_dir' is used. If you have FreeSurfer installed and configured, and are using the standard fsaverage subject, try passing the result of calling 'file.path(Sys.getenv('FREESURFER_HOME'), 'subjects')'. |
views |
list of strings. Valid entries include: 'si': single interactive view. 't4': tiled view showing the brain from 4 angles. 't9': tiled view showing the brain from 9 angles. |
rgloptions |
option list passed to |
rglactions |
named list. A list in which the names are from a set of pre-defined actions. The values can be used to specify parameters for the action. The following example clips outliers in the data before plotting and writes a screenshot in PNG format: |
draw_colorbar |
logical or one of the character strings 'vertical' or 'horizontal', whether to draw a colorbar. Notice: the colorbar is drawn to a separate subplot, and this only works if there is enough space for it, i.e., the plot resolution must be high enough. You may have to increase the plot size for the colorbar to show up, see the vignette for instructions. Defaults to |
cortex_only |
logical, whether to mask the medial wall, i.e., whether the morphometry data for all vertices which are not part of the cortex (as defined by the label file |
makecmap_options |
named list of parameters to pass to |
bg |
a background definition. Can be a surface color layer or a character string like 'curv_light' to select a pre-defined layer, see |
style |
character string, a rendering style, e.g., 'default', 'shiny' or 'semitransparent'. |
Value
list of coloredmeshes. The coloredmeshes used for the visualization.
See Also
Other visualization functions:
highlight.vertices.on.subject(),
highlight.vertices.on.subject.spheres(),
vis.color.on.subject(),
vis.data.on.fsaverage(),
vis.data.on.subject(),
vis.labeldata.on.subject(),
vis.mask.on.subject(),
vis.region.values.on.subject(),
vis.rglwidget(),
vis.subcortical.region.values(),
vis.subject.annot(),
vis.subject.label(),
vis.subject.morph.native(),
vis.subject.pre(),
vis.symmetric.data.on.subject(),
vis.volume.clusters(),
vis.volume.on.surface(),
vislayout.from.coloredmeshes()
Other morphometry visualization functions:
vis.data.on.fsaverage(),
vis.data.on.subject(),
vis.subject.morph.native(),
vis.symmetric.data.on.subject()
Examples
## Not run:
fsbrain::download_optional_data();
subjects_dir = fsbrain::get_optional_data_filepath("subjects_dir");
fsaverage_dir = file.path(Sys.getenv('FREESURFER_HOME'), 'subjects');
if(dir.exists(fsaverage_dir)) {
vis.subject.morph.standard(subjects_dir, 'subject1', 'thickness', 'lh',
'10', template_subjects_dir=fsaverage_dir);
}
# The last command will load the file
# *<subjects_dir>/subject1/surf/lh.thickness.fwhm10.fsaverage.mgh* and
# visualize the data on *$FREESURFER_HOME/subjects/fsaverage/surf/lh.white*.
## End(Not run)
Visualize pre-loaded data.
Description
Visualize pre-loaded data.
Usage
vis.subject.pre(
surfaces,
pervertex_data,
hemi = "both",
views = c("t4"),
rgloptions = rglo(),
rglactions = list(),
draw_colorbar = FALSE,
style = "default",
makecmap_options = mkco.seq()
)
Arguments
surfaces |
a |
pervertex_data |
a |
hemi |
string, one of 'lh', 'rh', or 'both'. The hemisphere name. Used to construct the names of the label data files to be loaded. |
views |
list of strings. Valid entries include: 'si': single interactive view. 't4': tiled view showing the brain from 4 angles. 't9': tiled view showing the brain from 9 angles. |
rgloptions |
option list passed to |
rglactions |
named list. A list in which the names are from a set of pre-defined actions. The values can be used to specify parameters for the action. The following example clips outliers in the data before plotting and writes a screenshot in PNG format: |
draw_colorbar |
logical or one of the character strings 'vertical' or 'horizontal', whether to draw a colorbar. Notice: the colorbar is drawn to a separate subplot, and this only works if there is enough space for it, i.e., the plot resolution must be high enough. You may have to increase the plot size for the colorbar to show up, see the vignette for instructions. Defaults to |
style |
character string, a rendering style, e.g., 'default', 'shiny' or 'semitransparent'. |
makecmap_options |
named list of parameters to pass to |
See Also
Other visualization functions:
highlight.vertices.on.subject(),
highlight.vertices.on.subject.spheres(),
vis.color.on.subject(),
vis.data.on.fsaverage(),
vis.data.on.subject(),
vis.labeldata.on.subject(),
vis.mask.on.subject(),
vis.region.values.on.subject(),
vis.rglwidget(),
vis.subcortical.region.values(),
vis.subject.annot(),
vis.subject.label(),
vis.subject.morph.native(),
vis.subject.morph.standard(),
vis.symmetric.data.on.subject(),
vis.volume.clusters(),
vis.volume.on.surface(),
vislayout.from.coloredmeshes()
Visualize clusters or activation data on the surface of any subject.
Description
This function is intended to plot symmetric data around zero (like positive and negative activation data, signed p-values, etc.) on a subject's surface. It is a thin wrapper around vis.data.on.subject.
Usage
vis.symmetric.data.on.subject(
subjects_dir,
vis_subject_id,
morph_data_lh = NULL,
morph_data_rh = NULL,
surface = "white",
views = c("t4"),
rgloptions = rglo(),
rglactions = list(),
draw_colorbar = TRUE,
makecmap_options = list(colFn = cm.cbry(), symm = TRUE, col.na = "#FFFFFF00", n = 200),
map_to_NA = c(0),
bg = NULL,
morph_data_both = NULL,
style = "default"
)
Arguments
subjects_dir |
string. The FreeSurfer SUBJECTS_DIR, i.e., a directory containing the data for all your subjects, each in a subdir named after the subject identifier. |
vis_subject_id |
string. The subject identifier from which to obtain the surface for data visualization. Example: 'fsaverage'. |
morph_data_lh |
numeric vector or character string or NULL, the data to visualize on the left hemisphere surface. If a string, it is treated as a filename and data is loaded from it first. When it is a numerical vector, this is assumed to be the data already. The data must have the same length as the surface of the vis_subject_id has vertices. If NULL, this surface will not be rendered. Only one of morph_data_lh or morph_data_rh is allowed to be NULL. |
morph_data_rh |
numeric vector or character string or NULL, the data to visualize on the right hemisphere surface. If a string, it is treated as a filename and data is loaded from it first. When it is a numerical vector, this is assumed to be the data already. The data must have the same length as the surface of the vis_subject_id has vertices. If NULL, this surface will not be rendered. Only one of morph_data_lh or morph_data_rh is allowed to be NULL. |
surface |
string. The display surface. E.g., "white", "pial", or "inflated". Defaults to "white". |
views |
list of strings. Valid entries include: 'si': single interactive view. 't4': tiled view showing the brain from 4 angles. 't9': tiled view showing the brain from 9 angles. |
rgloptions |
option list passed to |
rglactions |
named list. A list in which the names are from a set of pre-defined actions. The values can be used to specify parameters for the action. The following example clips outliers in the data before plotting and writes a screenshot in PNG format: |
draw_colorbar |
logical or one of the character strings 'vertical' or 'horizontal', whether to draw a colorbar. Notice: the colorbar is drawn to a separate subplot, and this only works if there is enough space for it, i.e., the plot resolution must be high enough. You may have to increase the plot size for the colorbar to show up, see the vignette for instructions. Defaults to |
makecmap_options |
named list of parameters to pass to |
map_to_NA |
the value or value range that should not be considered a cluster, and should thus be plotted as background color. These values will be set to NA, leading to transparcent rendering, so the background will be visible instead. If a single value, only exactly this value is used (typically 0). If two values, they are interpreted as a range, and a values between them are mapped to NA. If you prefer to map the data to NA yourself before using this function or do not want to use a , pass |
bg |
a background definition. Can be a surface color layer or a character string like 'curv_light' to select a pre-defined layer, see |
morph_data_both |
numeric vector or NULL, the data to visualize on both hemispheres. This must be a single vector with length equal to the sum of the vertex counts of the left and the right hemisphere. The data for the left hemisphere must come first. If this is given, 'morph_data_lh' and 'morph_data_rh' must be NULL. |
style |
character string, a rendering style, e.g., 'default', 'shiny' or 'semitransparent'. |
Value
list of coloredmeshes. The coloredmeshes used for the visualization.
See Also
Other visualization functions:
highlight.vertices.on.subject(),
highlight.vertices.on.subject.spheres(),
vis.color.on.subject(),
vis.data.on.fsaverage(),
vis.data.on.subject(),
vis.labeldata.on.subject(),
vis.mask.on.subject(),
vis.region.values.on.subject(),
vis.rglwidget(),
vis.subcortical.region.values(),
vis.subject.annot(),
vis.subject.label(),
vis.subject.morph.native(),
vis.subject.morph.standard(),
vis.subject.pre(),
vis.volume.clusters(),
vis.volume.on.surface(),
vislayout.from.coloredmeshes()
Other morphometry visualization functions:
vis.data.on.fsaverage(),
vis.data.on.subject(),
vis.subject.morph.native(),
vis.subject.morph.standard()
Examples
## Not run:
fsbrain::download_optional_data();
subjects_dir = fsbrain::get_optional_data_filepath("subjects_dir");
morph_data_lh = subject.morph.native(subjects_dir, 'subject1', 'thickness', 'lh');
morph_data_rh = NULL;
vis.symmetric.data.on.subject(subjects_dir, 'subject1', morph_data_lh, morph_data_rh);
## End(Not run)
Visualize white matter tracts (streamlines) on the cortical surface.
Description
Draws white matter streamlines (tractography data) as lines, with
an optional semi-transparent brain surface as context. The streamlines can come
from a tract file (TRK or TCK format), from a directory of such files (a tract
atlas with one file per bundle, e.g. the XTRACT atlas, see
download_xtract_tracts), or from in-memory data. This is
the fsbrain equivalent of the plot_tracts function of the Python package
yabplot.
Usage
vis.tracts(
tracts,
bundle_values = NULL,
subjects_dir = NULL,
template_id = "fs_LR_32",
context = list(surface = "midthickness", alpha = 0.08, color = "#B0B0B0"),
coords = "ras",
transform_matrix = NULL,
max_tracks = Inf,
skip_tracks = 0L,
bbox = NULL,
tract_color = NULL,
tract_makecmap_options = mkco.seq(),
tract_width = 1,
tract_width_range = NULL,
tract_width_scale = c("none", "value"),
color_by_orientation = FALSE,
views = c("sd_lateral_lh", "sd_medial_lh", "sd_lateral_rh", "sd_medial_rh"),
rgloptions = rglo(),
rglactions = list(),
style = "default",
draw_colorbar = FALSE,
silent = FALSE
)
Arguments
tracts |
the tracts to draw. One of: a character string, the path to a
tract file (TRK or TCK format) or to a directory containing one file per
bundle (a tract atlas); a vector of tract file paths; an |
bundle_values |
numeric vector or NULL, one value per bundle, in the order of the bundles (or named with the bundle names). The values are mapped to colors, see the details. |
subjects_dir |
character string or NULL, the subjects directory that
contains the template. If NULL, the standard fsbrain locations are searched,
see |
template_id |
character string, the template or subject to draw the context
surface for. Defaults to 'fs_LR_32', the HCP-style surface space that is
widely used for tractography data. Note that the template meshes are not part
of this package, see |
context |
named list or NULL, the semi-transparent brain surface drawn around the tracts. Entries are 'surface' (the surface name, default 'midthickness'), 'alpha' (the transparency, default 0.08) and 'color' (default '#B0B0B0'). Set to NULL to draw the tracts without any context surface. |
coords |
character string or NULL, the coordinate system of TRK files, see
|
transform_matrix |
a 4x4 numeric matrix or NULL, a transformation that is applied to all tract coordinates after reading them. Note that tract data and template surfaces have to be in the same space for the overlay to be correct: the XTRACT atlas, for example, is defined in MNI152 space, while the fs_LR_32 and fsaverage templates use an fsaverage-like (MNI305) space, which is close but not identical, and both are close enough for the overlay to look right without a transformation. Use this parameter if you have an accurate transformation, e.g. from a registration of the template to MNI152 space. |
max_tracks |
numeric, the maximum number of streamlines to read per file,
see |
skip_tracks |
integer, the number of streamlines to skip per file, see
|
bbox |
numeric vector of length 6 or NULL, a bounding box to select the
streamlines that pass through a region, see
|
tract_color |
vector of hex color strings, the color(s) of the tracts.
Either a single color which is used for all bundles, or one color per bundle.
Ignored if |
tract_makecmap_options |
named list of colormap options, see
|
tract_width |
a single positive number, the line width in pixels. |
tract_width_range |
numeric vector of length 2 or NULL, the range of the
line widths used when the widths are scaled by the bundle values, see
|
tract_width_scale |
character string, either 'none' (all lines have the
same width, the default) or 'value' (the line width encodes the bundle values,
which requires |
color_by_orientation |
logical, whether to color the segments by their direction instead of by bundle, see the details. The colors then do not encode the bundle values, so no colorbar is drawn. |
views |
vector of character strings, the views to render, see
|
rgloptions |
named list, options for |
rglactions |
named list, actions to perform, see
|
style |
character string, the rendering style for the tracts, see
|
draw_colorbar |
logical or one of the character strings 'vertical' or
'horizontal', whether to draw a colorbar for the bundle values. Note that the
headless scimesh renderer backend does not support colorbars in this function,
use |
silent |
logical, whether to suppress the progress messages. |
Details
The streamlines are drawn with the line renderable of the connectome
code, see fs.coloredpaths, so the result is a regular
fsbrain renderable list which works with both renderer backends (rgl and the
headless scimesh renderer) and can be passed to export
to create publication quality figures with a colorbar.
The colors can be defined in three ways: (1) as one value per bundle via
bundle_values (e.g. a tractometry measure like the mean fractional
anisotropy of each bundle), which is mapped to colors with
tract_makecmap_options and produces a colorbar; (2) as a single color
for all bundles via tract_color; or (3) per segment, based on the
direction of the segment, via color_by_orientation, which is the
classic DTI look (red/green/blue for left-right/anterior-posterior/superior-inferior).
Value
invisible named list of renderables: the entry tracts are the
lines (an fs.coloredpaths instance), and context_lh and
context_rh the context surfaces (if context is not NULL). The
list can be passed to export.
See Also
Other tracts functions:
download_xtract_tracts(),
read.tract.bundles()
Examples
## Not run:
# Download the XTRACT tract atlas (see the function documentation):
download_xtract_tracts("xtract_tiny");
atlas_dir = file.path(get_optional_data_filepath("tracts"), "xtract_tiny");
bundles = read.tract.bundles(atlas_dir);
# One color per bundle, colors follow a colormap, with a colorbar in the figure:
values = seq(0.2, 0.8, length.out = length(bundles));
names(values) = names(bundles);
tracts = vis.tracts(bundles, bundle_values = values,
views = c("sd_lateral_lh", "sd_lateral_rh"));
# Or a publication quality figure with 3 views and a colorbar:
export(tracts, view_angles = c("sd_lateral_lh", "sd_dorsal", "sd_rostral"),
draw_colorbar = "horizontal", colorbar_legend = "Mean FA",
output_img = "tracts.png");
# Draw a whole-brain tractogram from MRtrix (a subset, it is huge):
vis.tracts("~/data/sub-01_streamlines.tck.gz", max_tracks = 20000);
## End(Not run)
Render renderables for a static view and orient the camera (camera-based).
Description
Renders the given renderables UNROTATED and orients the rgl
camera so the scene appears exactly as if the renderables had been rotated by
(rotation_angle, x, y, z) and then viewed from (theta, phi, fov=0). This is
the camera-based replacement for the legacy mesh-rotation approach
(vis.rotated.coloredmeshes); it is pixel-identical for the fsbrain
view angles (see tests/testthat/test-camera_unification.R).
Usage
vis.view(
renderables,
style = "default",
rotation_angle = 0,
x = 1,
y = 0,
z = 0,
theta = 0,
phi = 0
)
Arguments
renderables |
list of renderables (coloredmesh, coloredvoxels, Triangles3D) to render into the current scene. |
style |
a rendering style, see |
rotation_angle |
x, y, z the mesh rotation that the camera must
reproduce (passed to |
theta |
phi the fixed-camera angles (passed to |
Visualize clusters of a volume inside a translucent anatomical mesh.
Description
Visualize the clusters of a volume, e.g., the supra-threshold voxels of a statistical map, as 3D iso-surfaces inside a single semi-transparent anatomical mesh (the context, typically the cortex of the same subject). A cluster is rendered as a set of nested iso-surface shells: the outermost shell is the iso-surface at the threshold (the cluster boundary), the inner ones sit at the higher iso-levels, and the innermost shell is at the cluster peak. This way the shape of the cluster and the location of its peak are visible at the same time, and the voxel structure of the data does not show up as staircase artifacts.
The shells are colored with a diverging colormap that encodes the iso-level, i.e., they use exactly the colors that the colorbar shows, and they become more opaque towards the core of the cluster, so that the core is visible through the outer shells. Positive and negative clusters can be rendered together, they use the two halves of the diverging colormap.
To render the clusters without a context mesh, pass context = NULL. To show the location of the clusters within a specific subject, use the context parameter to select the surface (e.g., "white" or "pial"); the surfaces of the fsaverage template subject can be downloaded with download_fsaverage if needed.
Usage
vis.volume.clusters(
subjects_dir = NULL,
subject_id = "fsaverage",
volume,
threshold = NULL,
threshold_quantile = 0.95,
max_level = NULL,
max_level_quantile = 0.99,
num_levels = 4L,
positive = TRUE,
negative = TRUE,
smoothing = 2L,
downsample = 1L,
frame = 1L,
backend = "auto",
context = list(surface = "white", alpha = 0.05),
alpha_range = c(0.08, 1),
makecmap_options = mkco.cluster(),
views = c("sd_lateral_lh", "sd_medial_lh", "sd_lateral_rh", "sd_medial_rh"),
rgloptions = rglo(),
rglactions = list(),
silent = FALSE
)
Arguments
subjects_dir |
string or |
subject_id |
string. The subject identifier, used to load the context mesh. Defaults to 'fsaverage', the template subject for which the surfaces can be downloaded automatically. |
volume |
a 3D numerical array (or an |
threshold |
single positive number or |
threshold_quantile |
single value between 0 and 1, the quantile of the absolute non-zero voxel values used as the threshold if |
max_level |
single positive number or |
max_level_quantile |
single value between 0 and 1, the quantile of the supra-threshold voxel values used to compute |
num_levels |
positive integer, the number of nested shells per cluster, i.e., per sign. The outermost shell is at the threshold, the innermost at |
positive |
logical, whether to render the clusters above |
negative |
logical, whether to render the clusters below |
smoothing |
non-negative integer, the number of 3x3x3 box blur passes applied to the volume before the shells are extracted. This removes the staircase artifacts of the marching cubes algorithm and is what makes the clusters look like smooth blobs. Defaults to 2. Set to 0 to extract the shells from the raw volume. |
downsample |
positive integer, a factor by which the volume is subsampled before the shells are extracted. Values larger than 1 reduce the number of triangles (and thus the rendering time) considerably, at the cost of a less detailed surface, which can be useful because a cluster is rendered as |
frame |
positive integer, the frame (4th dimension) to use for a 4D volume. Defaults to 1. |
backend |
character string, the backend used to extract the iso-surfaces, one of 'auto' (the default: use the |
context |
|
alpha_range |
numerical vector of length 2, the alpha value of the outermost shell (at the threshold) and of the innermost shell (at the cluster peak), each between 0 and 1. The values in between are interpolated, separately for the positive and the negative clusters. Defaults to |
makecmap_options |
named list of parameters to pass to |
views |
list of character strings, the views to visualize. Available views are |
rgloptions |
option list passed to |
rglactions |
named list, passed to the visualization functions, see |
silent |
logical, whether to suppress the console messages which report the threshold, the levels and the backend used. Defaults to |
Value
the list of renderable meshes, invisibly: the context meshes (if any) first, then the cluster shells, ordered from the outermost to the innermost shell of each sign. Passing this list to export saves the scene as an image, including the colorbar of the cluster values.
Coordinate system
The cluster shells are extracted in the voxel space of the volume and transformed to surface RAS with index2ras_tkr, so they are aligned with surface renderings of the same subject. This requires the volume to be in the standard FreeSurfer orientation with 1 mm voxels (a conformed volume), which is the case for volumes read with subject.volume; volumes in other spaces (like a 2 mm MNI template) have to be transformed to the subject space outside of fsbrain first.
Visual style
A single iso-surface contains, by definition, the threshold value at all of its vertices, so a color gradient within one shell is not meaningful. The value information is therefore encoded in the nesting: each shell is drawn in the color of its own iso-level (the outer shell in the color of the threshold, the innermost one in the color of the peak), and the shells are semi-transparent, with the transparency decreasing towards the core (see alpha_range). This results in a soft glow which is brightest at the location of the maximum. Setting num_levels = 1 instead renders one fully opaque shell per sign (the cluster boundary), which is the cleanest option if only the extent of the clusters matters. Note that the backfaces of the shells are drawn (back = 'filled'): with culled backfaces, the rgl renderer would composite the nested transparent shells in the wrong order, so the innermost shell would end up on top of the outer ones.
Performance
A cluster is rendered as num_levels meshes, so the number of iso-surfaces that have to be extracted is num_levels times the number of signs (20 for the defaults). For a conformed volume of 256^3 voxels this takes about 30 seconds with the Rvcg backend, most of which is the marching cubes extraction. Setting downsample = 2 reduces this to a few seconds (and the number of triangles by roughly a factor of 8), which is usually not visible for the smooth blobs that the default smoothing produces; it is a good choice for larger volumes, for small num_levels it matters less.
See Also
volvis.shells to visualize a whole volume (not just the clusters) as nested shells, volvis.voxels for a voxel-based rendering, vis.volume.on.surface to combine a volume with a morphometry-colored surface, and vis.subcortical.region.values for the related atlas version with one value per region.
Other visualization functions:
highlight.vertices.on.subject(),
highlight.vertices.on.subject.spheres(),
vis.color.on.subject(),
vis.data.on.fsaverage(),
vis.data.on.subject(),
vis.labeldata.on.subject(),
vis.mask.on.subject(),
vis.region.values.on.subject(),
vis.rglwidget(),
vis.subcortical.region.values(),
vis.subject.annot(),
vis.subject.label(),
vis.subject.morph.native(),
vis.subject.morph.standard(),
vis.subject.pre(),
vis.symmetric.data.on.subject(),
vis.volume.on.surface(),
vislayout.from.coloredmeshes()
Other volume visualization:
vis.volume.on.surface(),
volvis.lb(),
volvis.lb.with.surface(),
volvis.lightbox(),
volvis.slices.with.surface()
Examples
## Not run:
fsbrain::download_optional_data();
fsbrain::download_fsaverage(accept_freesurfer_license = TRUE);
subjects_dir = fsbrain::get_optional_data_filepath("subjects_dir");
# Use the brain volume of the demo subject as a fake statistical map: bright voxels are
# 'positive', dark ones are 'negative'.
brain = subject.volume(subjects_dir, 'subject1', 'brain');
stat = (brain - 110) / 30;
# Render the clusters inside a semi-transparent cortex of the fsaverage template subject:
cm = vis.volume.clusters(subjects_dir, 'fsaverage', stat, threshold = 1.5,
rglactions = list('no_vis' = TRUE));
export(cm, colorbar_legend = 'value', output_img = 'clusters.png');
# A single opaque shell per cluster, which only shows the cluster extent:
cm_simple = vis.volume.clusters(subjects_dir, 'fsaverage', stat, threshold = 1.5,
num_levels = 1, rglactions = list('no_vis' = TRUE));
# Without any context mesh, and with a fixed colormap range:
cm_ctx = vis.volume.clusters(subjects_dir, 'fsaverage', stat, threshold = 1.5,
context = NULL, makecmap_options = list('colFn' = squash::blueorange, 'n' = 100L,
'symm' = TRUE, 'range' = c(-2.0, 2.0)), rglactions = list('no_vis' = TRUE));
## End(Not run)
Visualize a brain volume overlaid on a cortical surface in 3D.
Description
Render a brain volume (as an isosurface or as voxels) together with a cortical surface mesh colored by morphometry data in the same interactive 3D scene. The volume coordinates are transformed to surface RAS space using the FreeSurfer vox2ras_tkr matrix (more precisely index2ras_tkr, see there for the R-index versus CRS distinction), ensuring proper spatial alignment of volume and surface.
Usage
vis.volume.on.surface(
subjects_dir,
subject_id,
volume = "brain",
volume_mode = "contour",
volume_level = 80,
volume_color = "#666666",
volume_alpha = 0.3,
measure = "thickness",
surface = "white",
hemi = "both",
views = c("t4"),
surface_style = "semitransparent",
rgloptions = rglo(),
makecmap_options = mkco.seq(),
cortex_only = FALSE,
render_every = 20L,
...
)
Arguments
subjects_dir |
character string, the FreeSurfer SUBJECTS_DIR, i.e., a directory containing the data for all your subjects, each in a subdir named after the subject identifier. |
subject_id |
character string, the subject identifier. |
volume |
numeric 3D array or character string. Either a 3D volume array with voxel intensities, or the name of a volume file to load from the subject's |
volume_mode |
character string, one of |
volume_level |
numeric scalar, the intensity threshold for contour mode. Only voxels with intensity values >= this threshold contribute to the isosurface. Ignored in voxel mode. Defaults to 80 (suitable for a raw brain.mgz with values in range 0-255). |
volume_color |
character string, the color for the volume rendering. Defaults to |
volume_alpha |
numeric in range 0..1, the transparency (alpha) of the volume overlay. Lower values make the volume more transparent, revealing the surface beneath. Defaults to 0.3. |
measure |
character string or NULL, the morphometry data to use for coloring the surface. E.g., |
surface |
character string, the display surface. E.g., |
hemi |
character string, one of |
views |
list of strings, the view configuration. For single interactive view use |
surface_style |
character string, a rendering style for the cortical surface, e.g., |
rgloptions |
named list, parameters passed to |
makecmap_options |
named list of parameters to pass to |
cortex_only |
logical, whether to mask the medial wall (i.e., only render cortical vertices). Defaults to |
render_every |
integer, for voxel mode only: render every Nth foreground voxel. Higher values improve performance but reduce density. Set to 1 to render all voxels (may be slow). Defaults to 20. |
... |
extra parameters passed to the volume rendering backend (e.g., |
Value
invisible named list with entries: "surface" (the coloredmeshes from the surface rendering, a hemilist of coloredmesh instances) and "volume" (the volume rendering result: a Triangles3D object for contour mode, or a list of coloredvoxels for voxel mode).
See Also
Other visualization functions:
highlight.vertices.on.subject(),
highlight.vertices.on.subject.spheres(),
vis.color.on.subject(),
vis.data.on.fsaverage(),
vis.data.on.subject(),
vis.labeldata.on.subject(),
vis.mask.on.subject(),
vis.region.values.on.subject(),
vis.rglwidget(),
vis.subcortical.region.values(),
vis.subject.annot(),
vis.subject.label(),
vis.subject.morph.native(),
vis.subject.morph.standard(),
vis.subject.pre(),
vis.symmetric.data.on.subject(),
vis.volume.clusters(),
vislayout.from.coloredmeshes()
Other volume visualization:
vis.volume.clusters(),
volvis.lb(),
volvis.lb.with.surface(),
volvis.lightbox(),
volvis.slices.with.surface()
Examples
## Not run:
fsbrain::download_optional_data();
subjects_dir = fsbrain::get_optional_data_filepath("subjects_dir");
# Contour overlay of brain volume on thickness-colored surface:
vis.volume.on.surface(subjects_dir, 'subject1', 'brain',
volume_mode='contour', volume_level=60, measure='thickness',
views=c('si'), surface_style='semitransparent');
# Voxel overlay of aseg segmentation ventricles:
aseg = subject.volume(subjects_dir, 'subject1', 'aseg');
ventricle_mask = vol.mask.from.segmentation(aseg, c(4,14,15,43));
vis.volume.on.surface(subjects_dir, 'subject1', ventricle_mask,
volume_mode='voxels', measure=NULL, views=c('si'),
volume_color='red');
## End(Not run)
Visualize coloredmeshes from several angles and combine the images into a new figure.
Description
Create a tight layout view of coloredmeshes from several angles. Creates separate sd_<angle> images, then crops and finally merges them into a single output image with image magick. The coloredmeshes to pass to this function are usually obtained by running any vis* function (like vis.subject.morph.native, vis.subject.morph.standard, vis.subject.label, vis.subject.annot, and others). That means you can use this function to visualize all kinds of data, e.g., morphometry data in native and standard space, labels, and brain atlases.
Usage
vislayout.from.coloredmeshes(
coloredmeshes,
view_angles = get.view.angle.names(angle_set = "t4"),
rgloptions = rglo(),
rglactions = list(),
style = "default",
output_img = "fsbrain_arranged.png",
silent = FALSE,
grid_like = TRUE,
background_color = "white",
transparency_color = NULL
)
Arguments
coloredmeshes |
list of coloredmesh. A coloredmesh is a named list as returned by the |
view_angles |
list of strings. See |
rgloptions |
option list passed to |
rglactions |
named list. A list in which the names are from a set of pre-defined actions. The values can be used to specify parameters for the action. |
style |
character string, a rendering style, e.g., 'default', 'shiny' or 'semitransparent'. Alternatively, a named list of style parameters (see |
output_img |
string, path to the output file. Defaults to "fsbrain_arranged.png" |
silent |
logical, whether to suppress all messages |
grid_like |
logical, whether to arrange the images in a grid-like fashion. If FALSE, they will all be merged horizontally. Passed to |
background_color |
hex color string (like '#FFFFFF'), the color to use for the background. Ignored if 'transparency_color' is not NULL. To get a transparent background, use 'transparency_color' instead of this parameter. WARNING: Do not use color names (like 'gray'), as their interpretation differs between rgl and image magick! |
transparency_color |
hex color string (like '#FFFFFF'), the temporary background color that will get mapped to transparency, or NULL if you do not want a transparent background. If used, it can be any color that does not occur in the foreground. Try '#FFFFFF' (white) or '#000000' (black) if in doubt. WARNING: Do not use color names (like 'gray'), as their interpretation differs between rgl and image magick! |
Value
named list, see arrange.brainview.images for details
See Also
Other visualization functions:
highlight.vertices.on.subject(),
highlight.vertices.on.subject.spheres(),
vis.color.on.subject(),
vis.data.on.fsaverage(),
vis.data.on.subject(),
vis.labeldata.on.subject(),
vis.mask.on.subject(),
vis.region.values.on.subject(),
vis.rglwidget(),
vis.subcortical.region.values(),
vis.subject.annot(),
vis.subject.label(),
vis.subject.morph.native(),
vis.subject.morph.standard(),
vis.subject.pre(),
vis.symmetric.data.on.subject(),
vis.volume.clusters(),
vis.volume.on.surface()
Examples
## Not run:
fsbrain::download_optional_data();
subjects_dir = fsbrain::get_optional_data_filepath("subjects_dir");
# Use any vis function to get coloredmeshes. You can visualize morphometry,
# labels, an atlas, whatever. You can suppress the view unless you need it.
coloredmeshes = vis.subject.morph.native(subjects_dir, "subject1", "thickness",
cortex_only=TRUE, rglactions=list("clip_data"=c(0.05, 0.95)),
views=NULL);
# The meshes contain the surface, data, and color information and can be
# visualized. You could adapt the rendering style while doing so:
vislayout.from.coloredmeshes(coloredmeshes, style='shiny');
# You could change the rendering style on a per-mesh basis.
coloredmeshes[[1]]$style = list("shininess"=50, alpha=0.5);
vislayout.from.coloredmeshes(coloredmeshes, style='from_mesh');
## End(Not run)
Apply the cortex mask to projected data.
Description
Apply the cortex mask to projected data.
Usage
vol.apply.cortex.mask(data, subjects_dir, subject_id, cortex_label = "cortex")
Arguments
data |
named list of numeric vectors, per hemisphere. |
subjects_dir |
character string, the subjects dir holding the label files. |
subject_id |
character string, the subject/template identifier. |
cortex_label |
character string, the name of the cortex label file (or the loaded label data). |
Value
named list of numeric vectors, with medial wall values set to NA.
Compute 3D bounding box of a volume.
Description
Compute the axis-aligned foreground bounding box of a 3D volume, i.e. the inner foreground area that must be retained if you want to remove all background from the corners of the volume. The foreground is determined by thresholding, such that all values greater than 0 are considered foreground. See vol.boundary.mask for details.
Usage
vol.boundary.box(volume, threshold = 0L, apply = FALSE)
Arguments
volume |
a 3D image volume |
threshold |
numerical, the threshold intensity used to separate background and foreground. All voxels with intensity values greater than this value will be considered |
apply |
logical, whether to directly apply the bounding box and return the resulting volume instead. |
Value
named list with 2 entries: from is an integer vector of length 3, defining the minimal (x,y,z) foreground indices. to is an integer vector of length 3, defining the maximal (x,y,z) foreground indices.
See Also
Other volume utility:
vol.imagestack(),
vol.merge(),
vol.overlay.colors.from.activation(),
vol.planes(),
vol.slice()
Apply a boundary box to a volume, returning the inner volume part
Description
Apply a boundary box to a volume, returning the inner volume part
Usage
vol.boundary.box.apply(volume, bbox)
Arguments
volume |
a 3D image volume |
bbox |
the boundary box |
Value
a 3D image volume, the inner volume part, resulting from the application of the boundary box
Compute foreground pixels over the whole 3D imagestack.
Description
Compute, over all images in a stack along an axis, the foreground and background pixels as a binary mask. A pixel is a foreground pixel iff its value is greater than the threshold parameter in at least one of the slices. A pixel is a background pixel iff its value is below or euqal to the threshold in all slices.
Usage
vol.boundary.mask(volume, plane = 1L, threshold = 0L)
Arguments
volume |
a 3D image volume |
plane |
integer vector of length 2 or something that will be turned into one by |
threshold |
numerical, the threshold intensity used to separate background and foreground. All voxels with intensity values greater than this value will be considered |
Value
integer 2D matrix with dimensions of a slice of the volume. Positions set to 1 are foreground pixels and positions set to 0 are background pixels (see Details section).
Check and normalize the interpolation parameter.
Description
Check and normalize the interpolation parameter.
Usage
vol.check.interpolation(interpolation = "trilinear")
Arguments
interpolation |
character string, the interpolation method. |
Value
character string, one of 'trilinear' or 'nearest'.
Check and normalize the surface_frac parameters.
Description
Check and normalize the surface_frac parameters.
Usage
vol.check.surface.frac(surface_frac)
Arguments
surface_frac |
numeric scalar or NULL, the fraction between two surfaces. |
Compute the filepath of a volume file.
Description
Takes a volume specification (a filepath, a name without extension, or an in-memory volume) and computes the filepath of the volume file on disk.
Usage
vol.find.file(volume, default_dir = NULL)
Arguments
volume |
character string or named list. If a character string and the file exists, it is interpreted as the volume filepath. If it does not exist, it is interpreted as the volume name without extension, resolved against |
default_dir |
character string or NULL, the directory to resolve volume names against, typically the |
Value
character string, the volume filepath, or NULL if volume is an in-memory volume.
Compute the vertex coordinates of a (possibly interpolated) surface for one hemisphere.
Description
Compute the vertex coordinates of a (possibly interpolated) surface for one hemisphere.
Usage
vol.frac.vertices(surface, frac_surface, surface_frac)
Arguments
surface |
an |
frac_surface |
an |
surface_frac |
numeric scalar or |
Value
numeric matrix, the vertex coordinates.
Retain only the outer hull voxels of the foreground.
Description
Filters the foreground voxel in the volume by keeping only an outer border of voxels, and setting the inner core voxels to NA. This is a utility function for voxel-based visualization. The goal is to remove the inner voxels, which will not be visible anyways, and thus to dramatically reduce the number of triangles that will need to be computed for the mesh.
Usage
vol.hull(volume, thickness = 1L, axes = c(2L))
Arguments
volume |
numeric 3d array, must contain foreground voxel and background voxels. The latter must have value |
thickness |
integer, the width of the border in voxels, i.e., how many of the voxels in each upright column to keep at the top and at the bottom. |
axes |
integer vector, the axes to use. Valid values in the vector are 1L, 2L and 3L. You will have to use all 3 axes if you do not want any holes in the object. (Obvisouly, having noise around the object can still lead to holes.) |
Value
numeric 3d array, a filtered version of the input. It contains at least as many NA voxels as the input. If the function had any effect, it contains a lot more NA values. The other values and the volume dimensions are left unchanged.
Turn volume into an ImageMagick image stack.
Description
Create an image from each slice along the axis, then stack those into an ImageMagick image stack.
Usage
vol.imagestack(volume, axis = 1L, intensity_scale = 255)
Arguments
volume |
a 3D image volume. Can be numeric, or something that can be read directly by |
axis |
positive integer in range 1L..3L or an axis name, the axis to use. |
intensity_scale |
integer, value by which to scale the intensities in the volume to the range |
Value
a vectorized ImageMagick image, containing one subimage per slice. This can be interpreted as an animation or whatever.
See Also
Other volume utility:
vol.boundary.box(),
vol.merge(),
vol.overlay.colors.from.activation(),
vol.planes(),
vol.slice()
Convert integer intensity image to RGB color string form.
Description
Convert a gray-scale image defined by intensity values in range [0, 1] to an image with identical dimensions that contains an R color string (like #222222) at each position. The color strings are computed from the intensities, by taking the intensity value as the value for all three RGB channels. I.e., the output is still gray-scale, but defined in RGB space. To make it clear, this function does not apply a colormap. It only changes the representation of the data, not the resulting colors.
Usage
vol.intensity.to.color(volume, scale = NULL)
Arguments
volume |
numeric array, typically a 3D image with intensities in range |
scale |
numeric or character string, a scaling to apply to the values. Defaults to NULL, which means no scaling and requires the values in |
Value
array (or matrix, or vector) of RGB color strings. All of them will represent gray values.
Examples
vol.intensity.to.color(c(0.0, 0.5, 1.0));
# output: "#000000" "#808080" "#FFFFFF"
vol.intensity.to.color(c(20, 186, 240), scale="normalize");
vol.intensity.to.color(c(20, 186, 240), scale=255);
vol.intensity.to.color(c(0.0, 0.5, 0.8), scale="normalize");
vol.intensity.to.color(c(0.0, 0.5, 0.8), scale="normalize_if_needed");
Load a volume (from file or memory) and return the data along with the affine transformation.
Description
Load a volume (from file or memory) and return the data along with the affine transformation.
Usage
vol.load(volume, default_dir = NULL, affine = NULL, vox2ras = "auto")
Arguments
volume |
character string or named list. If a string, either a volume filepath or the name of a volume file without extension. If a named list, an in-memory volume with entries 'data' (numeric 3D or 4D array) and 'affine' (4x4 numeric matrix mapping 0-based voxel indices to world coordinates). |
default_dir |
character string or NULL, the directory used to resolve volumes specified as names without extension. |
affine |
numeric 4x4 matrix or |
vox2ras |
character string, how to compute the transformation from voxel indices to world coordinates for the volume: 'auto' (the default) uses |
Value
named list with entries 'data', 'affine' and 'filepath' (see vol.read.file.with.affine).
Extract subset from a volume by value.
Description
Extract subset from a volume by value, set all other voxel values to NA. Typically used to extract a brain structure (like corpus callosum) from a volume segmentation (like the mri/aseg.mgz file of a subject). You should consider passing the volume and the include values as integers.
Usage
vol.mask.from.segmentation(volume, include_values)
Arguments
volume |
numeric 3D array |
include_values |
numerical vector, the intensity values which qualify a voxel to be part of the result (without being set to NA) |
Value
numerical array with same dimensions as the input volume. All values which are not part of include_values replaced with NA.
Merge background volume and overlay to new colors.
Description
Merge background volume and overlay to new colors.
Usage
vol.merge(
volume,
overlay_colors,
bbox_threshold = 0L,
forced_overlay_color = NULL
)
Arguments
volume |
3D array, can be numeric (gray-scale intensity values) or color strings. If numeric, the intensity values must be in range |
overlay_colors |
3D array of color strings, values which are not part of the overlay (and should display background in the result) must have |
bbox_threshold |
numerical, the threshold intensity used to separate background and foreground. All voxels with intensity values greater than this value in the background |
forced_overlay_color |
NULL or an rgb color string, like '#FF0000' for red. If NULL, the activation colors will be used as foreground colors. Otherwise, the given color will be for all foreground vertices. |
Value
3D array of color strings, the merged colors
See Also
Other volume utility:
vol.boundary.box(),
vol.imagestack(),
vol.overlay.colors.from.activation(),
vol.planes(),
vol.slice()
Generate colors for a 3D volume, based on the activation data and a colormap.
Description
Applies the colormap function to the data, then sets the alpha value (transparency) to full in all areas without any activation. Feel free to clip data or whatever before passing it, so that all your no-activation data has the same value.
Usage
vol.overlay.colors.from.activation(
volume,
colormap_fn = squash::blueorange,
no_act_source_value = 0
)
Arguments
volume |
a 3D array, the activation data (or p-values, effect sizes, or whatever) |
colormap_fn |
function, a colormap function |
no_act_source_value |
numerical scalar, the value from the data in 'volume' that means no activation. The output colors for this value will be set to |
Value
a 3D matrix of color strings, with the same dimensions as the input volume
See Also
Other volume utility:
vol.boundary.box(),
vol.imagestack(),
vol.merge(),
vol.planes(),
vol.slice()
Compute voxel colors based on colortable.
Description
Use the intensity values of the voxels in volume and lookup the respective colors in a colortable.
Usage
vol.overlay.colors.from.colortable(
volume,
colortable,
ignored_struct_indices = c(),
ignored_struct_names = c("unknown", "Unknown")
)
Arguments
volume |
numeric 3D array, the values should be integers present in the |
colortable |
a colortable, as returned by |
ignored_struct_indices |
integer vector, |
ignored_struct_names |
vector of character strings, |
Value
character string 3D array, the colors. Voxels in the volume which were not matched by the colortable are set to NA in it.
Get indices of the axes defining the given plane.
Description
When using plane names, this function assumes that the volume is in the standard FreeSurfer orientation, as returned by reading a conformed volume with functions like subject.volume.
Usage
vol.plane.axes(plane)
Arguments
plane |
integer or string. If a string, one of "axial", "coronal", or "sagittal". If this is an integer vector of length 2 already, it is returned as given. If it is a single integer, it is interpreted as an axis index, and the plane orthogonal to the axis is returned. A warning on using the plane names: these only make sense if the volume is in the expected orientation, no checking whatsoever on this is performed. |
Value
integer vector of length 2, the axes indices.
Translate names and indices of planes.
Description
Translate names and indices of 3D image planes. The names only make sense if the data in the volume is in the default FreeSurfer conformed orientation.
Usage
vol.planes(plane = NULL)
Arguments
plane |
NULL, a plane index, or a plane name. |
Value
if plane is NULL, all available planes and their indices as a named list. If plane is an integer (a plane index), its name. If plane is an characters string (a plane name), its index.
See Also
Other volume utility:
vol.boundary.box(),
vol.imagestack(),
vol.merge(),
vol.overlay.colors.from.activation(),
vol.slice()
Load a volume file and return the data along with the affine transformation.
Description
Supports MGH/MGZ volumes (read with read.fs.mgh) and NIfTI v1 volumes, including oblique ones (read with read.fs.volume.nii, which requires the 'oro.nifti' package). The data array is returned in the storage order of the file, i.e., it is not reoriented, and the returned affine maps 0-based voxel indices (column, row, slice) to world coordinates. This is the convention used by the NIfTI sform and by mghheader.vox2ras.
Usage
vol.read.file.with.affine(filepath)
Arguments
filepath |
character string, the path to an |
Value
named list with entries: 'data' (numeric array, 3D or 4D), 'affine' (4x4 numeric matrix), 'filepath' (character string), 'file_format' (character string, either 'mgh' or 'nifti'), and 'frames' (integer, the number of volumes in a 4D file).
Note
If the header of an MGH/MGZ file does not contain a valid vox2ras matrix (ras_good_flag is 0), the surface RAS convention vox2ras_tkr is used for conformed volumes (dimension 256x256x256) and a warning is emitted. For NIfTI files without a valid sform/qform, an error is raised, as the coordinate space is unknown in that case.
Sample a 3D volume at world coordinates.
Description
This is the core of the volume-to-surface projection: the world coordinates (e.g., surface vertex positions) are transformed into voxel coordinates using the inverse of the affine matrix, and the volume is then sampled at those coordinates.
Usage
vol.sample.at.coords(
volume_data,
affine,
coords,
interpolation = "trilinear",
clamp = FALSE,
check_outside = TRUE
)
Arguments
volume_data |
numeric 3D array, the volume data. |
affine |
numeric 4x4 matrix, maps 0-based voxel indices (column, row, slice) to world coordinates. |
coords |
numeric matrix with 3 columns and one row per query point, the world coordinates at which to sample the volume. |
interpolation |
character string, one of 'trilinear' (or its alias 'linear') or 'nearest'. |
clamp |
logical, whether to clamp query points which are outside the volume to the closest voxel at the volume border (edge replication). If FALSE, such points get the value NA. |
check_outside |
logical, whether to determine which of the query points are outside the volume. Setting this to FALSE saves the (small) cost of the comparison, but the caller cannot report or mask such points. |
Value
named list with entries 'values' (numeric vector) and 'outside' (logical vector or NULL if check_outside is FALSE).
Sample a 3D volume at the given voxel coordinates using nearest neighbor interpolation.
Description
Sample a 3D volume at the given voxel coordinates using nearest neighbor interpolation.
Usage
vol.sample.nearest(volume_data, coords)
Arguments
volume_data |
numeric 3D array, the volume data. |
coords |
numeric matrix with 3 columns and one row per query point, the 0-based voxel coordinates. Coordinates must be within the volume. |
Value
numeric vector, one value per query point.
Note
A coordinate which is exactly between two voxels is resolved towards the larger voxel index, i.e., floor(coord + 0.5) is used. This matches the behavior of scipy.ndimage.map_coordinates(..., order = 0). Note that R's round uses banker's rounding and would give different results for such coordinates.
Sample a 3D volume at the given voxel coordinates using trilinear interpolation.
Description
Sample a 3D volume at the given voxel coordinates using trilinear interpolation.
Usage
vol.sample.trilinear(volume_data, coords)
Arguments
volume_data |
numeric 3D array, the volume data. |
coords |
numeric matrix with 3 columns and one row per query point, the 0-based voxel coordinates (column, row, slice). Coordinates must be within the volume, or an error will be raised. |
Value
numeric vector, one interpolated value per query point.
Note
Coordinates which are exactly on the last voxel result in the value of that voxel: the interpolation weights of the out-of-range upper neighbors become 0, and their index is clamped (which is safe because their weight is 0).
Select a single frame (3D volume) from a volume array.
Description
Select a single frame (3D volume) from a volume array.
Usage
vol.select.frame(volume_data, frame = 1L)
Arguments
volume_data |
numeric array, 3D or 4D. |
frame |
integer scalar, the frame index (1-based). |
Value
numeric 3D array.
Extract a slice of a 3D image stack.
Description
Extracts one or more 2D slices from a 3D image (or a frame of a 4D image). To display the result, you can use volvis.lightbox.
Usage
vol.slice(
volume,
slice_index = NULL,
frame = 1L,
axis = 1L,
rotation = 0L,
flip = NULL
)
Arguments
volume |
a 3D or 4D image volume. Note that empty dimensions will be dropped before any processing, and the remaining volume must have 3 or 4 dimensions. |
slice_index |
positive integer or vector of positive integers, the index into the slices (for the axis). A slice in the sense of this function is any 2D image plane extracted from the 3D volume (no matter the axis). If NULL, the slice in the middle of the volume is used. One can pass the magic character string 'all' to use all slice indices along the axis. |
frame |
positive integer, optional. The frame (time point) to use, only relevant for 4D volumes. The last (i.e. 4th) dimension is assumed to be the time dimension in that case. |
axis |
positive integer, the axis to use when indexing the slices. Defaults to 1. |
rotation |
integer, rotation in degrees. Defaults to 0 (no ratation). Must be a multiple of 90L if given. |
flip |
NULL or one of the character strings 'vertically' or 'horizontally'. Note that flipping horizontally means that the image will be mirrored along the central vertical axis. If |
Value
slice data. If slice_index is a scalar, a numerical 2D matrix (a 2D image from the stack). Otherwise, a numerical 3D array that contains the selected 2D images.
See Also
Other volume utility:
vol.boundary.box(),
vol.imagestack(),
vol.merge(),
vol.overlay.colors.from.activation(),
vol.planes()
Transform a volume affine matrix into the FreeSurfer tkregister convention.
Description
FreeSurfer stores brain surfaces (and all surface-based data) in the surface RAS coordinate system, which is also called the tkregister or tkreg space: the RAS coordinate (0, 0, 0) is at the center of the field of view of the volume. The transformation from voxel indices to this space is not the transformation stored in the header of the volume: a volume can have a center-of-RAS offset (cras), which is preserved by FreeSurfer in the header but ignored by the surface-based tools (this is the difference between the --vox2ras and --vox2ras-tkr options of mri_vol2surf).
This function takes the header transformation matrix of a volume and returns the corresponding tkregister matrix, i.e., the same direction cosines and voxel sizes, but with the translation replaced so that the center of the volume is at RAS (0, 0, 0). For a conformed FreeSurfer volume (256x256x256 voxels of 1 mm), the result is identical to vox2ras_tkr.
Usage
vol.tkreg.affine(affine, dims)
Arguments
affine |
numeric 4x4 matrix, the transformation matrix from the volume header (maps 0-based voxel indices to world coordinates). |
dims |
integer vector of length 3 or more, the dimensions of the volume ( |
Value
numeric 4x4 matrix, the tkregister transformation matrix.
Project a volume onto the vertices of the given surfaces (internal workhorse).
Description
Project a volume onto the vertices of the given surfaces (internal workhorse).
Usage
vol.vol2surf.hemilist(
surfaces,
volume,
default_dir,
interpolation,
frame,
clamp,
check_fov,
affine = NULL,
vox2ras = "auto"
)
Arguments
surfaces |
named list of vertex coordinate matrices, per hemisphere. |
volume |
the volume, as accepted by |
default_dir |
character string or NULL, the directory used to resolve volume names without extension. |
interpolation |
character string, see |
frame |
integer scalar, see |
clamp |
logical, whether to clamp query points outside the volume to the volume border. |
check_fov |
logical, whether to check (and warn about) vertices outside the volume. |
affine |
numeric 4x4 matrix or |
vox2ras |
character string, see |
Value
named list of numeric vectors (one per hemisphere), with attribute 'outside' (named list of logical vectors or NULLs).
Compute R voxel index for FreeSurfer CRS voxel index.
Description
Performs a vox2vos transform from FreeSurfer to R indices.
Usage
vol.vox.from.crs(fs_crs, add_affine = FALSE)
Arguments
fs_crs |
integer vector of length 3, Freesurfer indices for column, row, and slice (CRS). |
add_affine |
logical, whether to add 1 to the output vector as the 4th value |
Value
the R indices into the volume data for the given FreeSurfer CRS indices
Examples
# Get voxel intensity data on the command line, based
# on the FreeSUrfer (zero-based) CRS voxel indices:
# `mri_info --voxel 127 100 100 ~/data/tim_only/tim/mri/brain.mgz`
# (the result is: 106.0)
#
# That should be identical to:
# our_crs = vol.vox.from.crs(c(127,100,100), add_affine = FALSE);
# brain$data[our_crs[1], our_crs[2], our_crs[3]]; # gives 106
Warn about surface vertices which are outside the volume.
Description
Warn about surface vertices which are outside the volume.
Usage
vol.warn.outside(outside, num_verts, clamp)
Arguments
outside |
named list of logical vectors, per hemisphere (or NULL entries if the check was disabled). |
num_verts |
named list of integer scalars, the number of vertices per hemisphere. |
clamp |
logical, whether outside vertices were clamped to the volume border instead of being set to NA. |
Value
NULL, called for the side effect of emitting a warning.
Smooth a volume with a 3x3x3 box blur.
Description
Applies a separable 3x3x3 box blur to a 3D array, once per requested pass. Voxels at the border of the volume are treated as if the volume were padded with its edge values.
Usage
volume.boxblur(volume, passes = 1L)
Arguments
volume |
a 3D numerical array. |
passes |
positive integer, the number of blur passes. |
Value
a 3D numerical array with identical dimensions.
Apply a 1D 3-element box blur along one axis of a 3D array.
Description
Apply a 1D 3-element box blur along one axis of a 3D array.
Usage
volume.boxblur.axis(volume, axis = 1L)
Arguments
volume |
a 3D numerical array. |
axis |
integer, the axis along which to blur (1, 2 or 3). |
Value
a 3D numerical array with identical dimensions.
Compute the highest iso-level per sign.
Description
Computes the highest absolute iso-level for the positive and the negative clusters, i.e., the level of the innermost shell of a cluster. If max_level is NULL, the max_level_quantile quantile of the absolute values beyond the threshold is used, so that a single extreme voxel does not dominate the visualization.
Usage
volume.cluster.extremes(
volume,
threshold,
max_level = NULL,
max_level_quantile = 0.99,
positive = TRUE,
negative = TRUE
)
Arguments
volume |
a 3D numerical array. |
threshold |
single positive number, the cluster threshold. |
max_level |
single positive number or |
max_level_quantile |
single value between 0 and 1, the quantile used to compute the highest level if |
positive |
logical, whether to consider the positive clusters. |
negative |
logical, whether to consider the negative clusters. |
Value
named numerical vector with the entries 'neg' and 'pos' (the highest absolute iso-level of the negative and of the positive clusters), or NA for a sign that has no voxels beyond the threshold (or was not requested).
Compute the iso-levels of the cluster shells.
Description
Computes the iso-levels at which the shells of the clusters are extracted: num_levels levels from the threshold up to the highest level, for each requested sign, ordered from the outermost (the threshold) to the innermost (the highest level) shell.
Usage
volume.cluster.levels(
volume,
threshold,
num_levels = 10L,
max_level = NULL,
max_level_quantile = 0.99,
positive = TRUE,
negative = TRUE
)
Arguments
volume |
a 3D numerical array. |
threshold |
single positive number, the cluster threshold. |
num_levels |
positive integer, the number of levels per sign. |
max_level |
single positive number or |
max_level_quantile |
single value between 0 and 1, the quantile used to compute |
positive |
logical, whether to compute levels for the positive side. |
negative |
logical, whether to compute levels for the negative side. |
Value
numerical vector of iso-levels, the negative ones (if any) first, each ordered from the outermost to the innermost shell.
Compute the cluster threshold of a volume.
Description
Computes the threshold from the data if none was given, namely the requested quantile of the absolute values of the non-zero voxels.
Usage
volume.cluster.threshold(volume, threshold = NULL, threshold_quantile = 0.95)
Arguments
volume |
a 3D numerical array. |
threshold |
single positive number or |
threshold_quantile |
single value between 0 and 1, the quantile used if |
Value
single positive number, the threshold.
Compute the shared colormap of the cluster shells.
Description
All shells of both signs share one colormap, so that the color of a shell is exactly the color that the colorbar shows for its iso-level. A symmetric range which covers all iso-levels is used unless the user requested a range via the 'range' entry of makecmap_options.
Usage
volume.clusters.colormap(makecmap_options, levels, max_abs = max(abs(levels)))
Arguments
makecmap_options |
named list, the colormap options, see |
levels |
numerical vector of iso-levels. |
max_abs |
single positive number, the absolute value of the most extreme value that the colormap has to cover, i.e., half of the range of the colormap. Defaults to the highest absolute iso-level. |
Value
named list with the entries 'map' (the squash colormap), 'colors' (a color per entry of levels), 'range' (the range of the colormap) and 'options' (makecmap_options, including the range, for the colorbar metadata of the meshes).
Subsample a volume.
Description
Subsample a volume.
Usage
volume.subsample(volume, factor = 1L)
Arguments
volume |
a 3D numerical array. |
factor |
positive integer, the subsampling factor. |
Value
a 3D numerical array, smaller than the input if factor is larger than 1.
Compute the transform between the voxel space of a subsampled volume and the original voxel space.
Description
Subsampling a volume with a factor f keeps voxels 1, 1+f, 1+2f, ... of the original volume, so the coordinate i of the subsampled volume corresponds to the original 1-based R array index i*f + (1-f) (e.g., for f = 2: the subsampled voxels are the original voxels 1, 3, 5, ... and they stay at 1, 3, 5 of the original volume). This function returns the 4x4 affine matrix which implements this mapping. Note that it maps to 1-based R array indices, so it has to be composed with index2ras_tkr() (and not with vox2ras_tkr(), which expects 0-based CRS indices) to transform subsampled shells to surface RAS.
Usage
volume.subsample.matrix(factor = 1L)
Arguments
factor |
positive integer, the subsampling factor. |
Value
a 4x4 numerical matrix.
Visualize contour of a volume.
Description
Compute a smoothed surface from the voxel intensities in the given volume and render it. Requires the misc3d package to be installed, which is an optional dependency.
Usage
volvis.contour(volume, level = 80, show = TRUE, frame = 1L, color = "white")
Arguments
volume |
a 3D brain volume |
level |
numeric, intensity threshold for the data. Voxels with intensity value smaller than |
show |
logical, whether to display the triangles. Defaults to |
frame |
integer, the frame to show in case of a 4D input volume. Can also be the character string 'all' to draw the contents of all frames at once. Useful to plot white matter tracts from DTI data, where each tract is stored in a different frame. |
color |
the color to use when plotting. Can be a vector of colors when plotting all frames of a 4D image (one color per frame). |
Value
the rendered triangles (a Triangles3D instance) with coordinates in surface RAS space if any, NULL otherwise. This will be a list if you pass a 4D volume and select 'all' frames.
Examples
## Not run:
fsbrain::download_optional_data();
subjects_dir = fsbrain::get_optional_data_filepath("subjects_dir");
brain = subject.volume(subjects_dir, 'subject1', 'brain');
# Plot all voxels of the brain:
volvis.contour(brain);
## End(Not run)
Show continuous 3D voxel/volume data as a lightbox, optionally with a background brain volume and colormap.
Description
This function is the main way to visualize 3D volume images that contain raw MRI scans or statistical results.
Usage
volvis.lb(
volume,
background = NULL,
colFn = viridis::viridis,
colortable = NULL,
no_act_source_value = 0,
bbox_threshold = NULL,
bbox_of_volume = TRUE,
...
)
Arguments
volume |
numerical 3D array of per-voxel data, typically activation data, a raw MRI image, or a segmentation to show. Can also be a filename if the file can be loaded as such a volume with |
background |
numerical 3D array or 3D array of color strings, the background volume. Typically a raw brain volume. Dimensions and space must match those of the 'volume' for an array. Can also be a single file name as a character string. Can also be a single color name, like '#FEFEFE' but the string then must start with '#' (color names like 'red' are not allowed, they would be treated as file names). If a color string, be sure to use the |
colFn |
a colormap function, passed to |
colortable |
optional, only makes sense for categorical 'volume' data like segmentations. If not NULL, a colortable as returned by |
no_act_source_value |
numerical value, passed to |
bbox_threshold |
numerical scalar, passed on to |
bbox_of_volume |
logical, whether the bounding box is computed on the volume (foreground), which typically is what you want. Leave alone if in doubt. |
... |
extra parameters to be passed to |
Note
This function should be preferred over manually calling volvis.lightbox.
See Also
Other volume visualization:
vis.volume.clusters(),
vis.volume.on.surface(),
volvis.lb.with.surface(),
volvis.lightbox(),
volvis.slices.with.surface()
Examples
## Not run:
volume = subject.volume(subjects_dir, subject_id, 'brain');
volvis.lb(volume);
volvis.lb("~/study1/subject1/mri/brain.mgz");
volvis.lb("~/study1/subject1/mri/brain.mgz", bbox_threshold = 1L);
volvis.lb("~/study1/subject1/mri/brain.mgz", background = "~/data/study1/subject1/mri/T1.mgz");
volvis.lb("~/study1/subject1/mri/brain.mgz", background = "#FEFEFE", background_color="#FEFEFE");
ct = file.path(find.freesurferhome(mustWork = T), "FreeSurferColorLUT.txt"); # ct = "color table"
volvis.lb("~/study1/subject1/mri/aseg.mgz", background="~/study1/subject1/mri/T1.mgz",
colortable = ct, colFn=NULL, axis=2L);
volvis.lb("~/study1/subject1/mri/aseg.mgz", background = "~/study1/subject1/mri/T1.mgz",
colortable = ct, colFn=NULL, bbox_threshold = 0);
## End(Not run)
Visualize volume slices with surface mesh contours overlaid in lightbox view.
Description
Creates a lightbox view of 2D MRI slices with the cortical surface boundary contours drawn on top. This is the fsbrain equivalent of what FreeSurfer's freeview or tkmedit show — useful for quality assessment of surface reconstruction against the underlying MRI volume. The surface mesh is loaded from the subject's FreeSurfer directory and its intersection with each displayed slice plane is computed and drawn as colored contour lines.
Usage
volvis.lb.with.surface(
subjects_dir,
subject_id,
volume = "brain",
surface = "white",
hemi = "both",
surface_color = "#FF0000",
surface_lwd = 1,
slices = -5,
axis = 1L,
scale = 1L,
per_row = 5L,
per_col = NULL,
border_geometry = "5x5",
background_color = "#000000",
silent = TRUE
)
Arguments
subjects_dir |
character string, the FreeSurfer SUBJECTS_DIR. |
subject_id |
character string, the subject identifier. |
volume |
numeric 3D array or character string. Either a 3D brain volume (e.g., from T1.mgz or brain.mgz), or the name of a volume file to load from the subject's |
surface |
character string or vector of strings, the surface(s) to use for contour extraction. One or more of |
hemi |
character string, one of |
surface_color |
character string or character vector, the color(s) for the surface contour lines. If a single color, all surfaces and hemispheres use it. If a vector of length |
surface_lwd |
numeric, line width for the contour lines (passed as |
slices |
passed to |
axis |
integer, the slice axis. 1 = sagittal, 2 = coronal, 3 = axial (in volume CRS convention). Defaults to |
scale |
integer >= 1, the factor by which to upscale the slice images in both dimensions using nearest-neighbor interpolation (keeps the MRI pixels sharp, which is good for QA). The surface contour lines are drawn on a high-resolution overlay and downsampled to the final size, so they appear thin and smooth. Defaults to |
per_row |
integer, number of slice images per row in the lightbox grid. Defaults to |
per_col |
integer, number of rows. If |
border_geometry |
character string, geometry for borders between tiles, passed to |
background_color |
character string, background color for borders and empty tiles. Defaults to |
silent |
logical, whether to suppress messages. Defaults to |
Value
a magick image instance containing the lightbox with surface contours overlaid. Can be saved with image_write or displayed interactively.
See Also
Other volume visualization:
vis.volume.clusters(),
vis.volume.on.surface(),
volvis.lb(),
volvis.lightbox(),
volvis.slices.with.surface()
Examples
## Not run:
fsbrain::download_optional_data();
subjects_dir <- fsbrain::get_optional_data_filepath("subjects_dir");
# Axial slices with white surface contours in red:
img <- volvis.lb.with.surface(subjects_dir, "subject1",
volume="brain", surface="white", axis=3L,
surface_color="#FF0000");
magick::image_write(img, "~/fsbrain_qa_axial.png");
# Coronal slices in green:
img <- volvis.lb.with.surface(subjects_dir, "subject1",
volume="brain", surface="white", axis=2L,
surface_color="#00FF00");
# Sagittal slices: left hemisphere red, right hemisphere blue:
img <- volvis.lb.with.surface(subjects_dir, "subject1",
volume="brain", surface="white", axis=1L,
surface_color=c("#FF0000", "#0000FF"));
# Single hemisphere, pial surface, every 5th slice:
img <- volvis.lb.with.surface(subjects_dir, "subject1",
volume="brain", surface="pial", hemi="lh",
axis=3L, slices=-5, surface_color="#FF8800");
# Both white and pial surfaces overlaid: white in red, pial in yellow:
img <- volvis.lb.with.surface(subjects_dir, "subject1",
volume="brain", surface=c("white", "pial"), axis=3L,
surface_color=c("#FF0000", "#FFFF00"));
# White (lh red, rh blue) + pial (lh green, rh orange):
img <- volvis.lb.with.surface(subjects_dir, "subject1",
volume="brain", surface=c("white", "pial"), axis=3L,
surface_color=c("#FF0000", "#0000FF", "#00FF00", "#FF8800"));
# 2x upscaled slices for larger images with thin, smooth contours:
img <- volvis.lb.with.surface(subjects_dir, "subject1",
volume="brain", surface="white", axis=3L, scale=2L);
## End(Not run)
Draw a lightbox view from volume slices.
Description
A lightbox is a single image that holds a set of subimages, arranged in a grid. The images can have a small border or spacing between them. Consecutive subimages will be appear the same row of the grid.
If overlay_colors are given, the volume will be used as the background, and it will only be visible where overlay_colors has transparency.
Usage
volvis.lightbox(
volume,
slices = -5,
axis = 1L,
per_row = 5L,
per_col = NULL,
border_geometry = "5x5",
background_color = "#000000",
arrange_single_image = FALSE,
scale = 1L
)
Arguments
volume |
3D array, can be numeric (gray-scale intensity values) or color strings. If numeric, the intensity values must be in range |
slices |
slice index definition. If a vector of integers, interpreted as slice indices. If a single negative interger |
axis |
positive integer in range 1L..3L, the axis to use. |
per_row |
positive integer, the number of subimages per row in the output image. If |
per_col |
positive integer, the number of subimages per column in the output image. If |
border_geometry |
string, a geometry string passed to |
background_color |
string, a valid ImageMagick color string such as "white" or "#000080". The color to use when extending images (e.g., when creating the border). Defaults to black. |
arrange_single_image |
logical, whether to apply the given arrangement (from parameters |
scale |
integer >= 1, the factor by which to upscale the slice images in both dimensions using nearest-neighbor interpolation. This keeps the MRI pixels sharp (no smoothing) while making the images larger. Defaults to 1L (no upscaling). |
Value
a magick image instance
Note
You should, in most cases, not call this function directly. Use volvis.lb instead, which has a more intuitive interface.
See Also
Other volume visualization:
vis.volume.clusters(),
vis.volume.on.surface(),
volvis.lb(),
volvis.lb.with.surface(),
volvis.slices.with.surface()
Visualize a volume as nested, semi-transparent iso-surface shells.
Description
Visualize the iso-surfaces (shells) of a volume at several levels as nested, semi-transparent meshes, like the nested contour lines of a topographic map. This is useful to show the shape and the internal structure of a volume at the same time, e.g., for a statistical map: the outer shells (low levels) are rendered more transparently than the inner ones (high levels), so that the inner structure remains visible. The volume is extracted in voxel space and transformed to surface RAS with the index2ras_tkr matrix, so the result is spatially aligned with surface renderings of the same subject (see vis.subject.morph.native). To combine the shells with a surface rendering, use the rglactions parameter of the surface function (key 'no_vis') to keep the rendering window open, or call this function with views = NULL and render the returned meshes yourself.
Usage
volvis.shells(
volume,
levels = NULL,
num_levels = 4L,
level_type = "quantile",
level_range = c(0.2, 0.95),
frame = 1L,
colors = NULL,
alphas = NULL,
palette = "grey_context",
alpha_range = NULL,
smoothing = 1L,
downsample = 1L,
cut_away = NULL,
cut_fraction = 0.5,
backend = "auto",
views = c("sd_lateral_lh", "sd_medial_lh", "sd_lateral_rh", "sd_medial_rh"),
rgloptions = rglo(),
rglactions = list(),
silent = FALSE
)
Arguments
volume |
a 3D numerical array (or an |
levels |
numerical vector or |
num_levels |
positive integer, the number of shells to create. Ignored if |
level_type |
character string, how to compute the levels if |
level_range |
numerical vector of length 2, the range from which the automatic levels are taken. For |
frame |
positive integer, the frame (4th dimension) to use for a 4D volume. Defaults to 1. |
colors |
character vector of colors, one per shell (outermost shell first). Defaults to |
alphas |
numerical vector of alpha values, one per shell (outermost shell first), values between 0 and 1. Defaults to |
palette |
character string, the color and transparency recipe used for the shells if |
alpha_range |
numerical vector of length 2 or |
smoothing |
non-negative integer, the number of 3x3x3 box blur passes applied to the volume before the shells are extracted. This removes the staircase artifacts of the marching cubes algorithm and leads to much nicer surfaces. Defaults to 1. Set to 0 to disable and extract the shells from the raw volume. |
downsample |
positive integer, a factor by which the volume is subsampled before the shells are extracted. Values larger than 1 reduce the number of triangles (and thus the rendering time) considerably, at the cost of a less detailed surface. The coordinates of the subsampled shells are corrected, so the result is still aligned with the original volume. Defaults to 1. Note that the volume is smoothed before subsampling if |
cut_away |
character string or |
cut_fraction |
numerical value between 0 and 1, the position of the cut along the axis given by |
backend |
character string, the backend used to extract the iso-surfaces. One of 'auto' (the default: use the |
views |
list of character strings, the views to visualize. Available views are |
rgloptions |
option list passed to |
rglactions |
named list, passed to the visualization functions, see |
silent |
logical, whether to suppress the console messages which report the levels and the backend used. Defaults to |
Value
the list of fs.coloredmesh instances, one per shell (from the outermost to the innermost), invisibly. Note that the colorbar of the rendering functions is not used here, the color of a shell encodes its level, which is reported in the console unless silent is TRUE.
Note
Both renderers are used with the mesh's own style (see get.rglstyle), which sets the alpha value of the shell. Note that backfaces are rendered for the shells (back = 'filled'): if they were culled, the rgl renderer would composite the nested transparent shells in the wrong order (the innermost shell would end up on top of the outer ones).
See Also
volvis.contour for a single iso-surface, volvis.voxels for a voxel-based rendering of a volume, and vis.volume.on.surface to combine a volume with a surface rendering.
Examples
## Not run:
fsbrain::download_optional_data();
subjects_dir = fsbrain::get_optional_data_filepath("subjects_dir");
brain = subject.volume(subjects_dir, 'subject1', 'brain');
# Show the 5 inner shells of the brain, cut open from the right:
shells = volvis.shells(brain, num_levels = 5, downsample = 2, cut_away = 'right', views = NULL);
# Combine the 4 standard views into a single image:
view_angles = c('sd_lateral_lh', 'sd_medial_lh', 'sd_lateral_rh', 'sd_medial_rh');
fsbrain::export(shells, view_angles = view_angles, output_img = 'shells.png');
## End(Not run)
Export individual volume slices with surface contours to image files.
Description
Creates individual 2D slice images with surface contour overlays and exports them to separate files — ideal for browsing through slices one by one. This is the single-slice export counterpart of volvis.lb.with.surface, which arranges slice images in a lightbox grid. Supports optional slice index labelling and automatic skipping of empty slices (i.e., slices where no surface contour intersects the plane).
Usage
volvis.slices.with.surface(
subjects_dir,
subject_id,
volume = "brain",
surface = "white",
hemi = "both",
surface_color = "#FF0000",
surface_lwd = 1,
slices = -5,
axis = 1L,
scale = 1L,
silent = TRUE,
output_dir = ".",
output_prefix = NULL,
image_format = "png",
label_slices = FALSE,
label_color = "white",
label_size = 20,
label_gravity = "northwest",
skip_empty = FALSE
)
Arguments
subjects_dir |
character string, the FreeSurfer SUBJECTS_DIR. |
subject_id |
character string, the subject identifier. |
volume |
numeric 3D array or character string. Either a 3D brain volume, or the name of a volume file to load from the subject's |
surface |
character string or vector of strings, the surface(s) to use for contour extraction. One or more of |
hemi |
character string, one of |
surface_color |
character string or character vector, the color(s) for the surface contour lines. See |
surface_lwd |
numeric, line width for the contour lines. Defaults to 1. |
slices |
passed to |
axis |
integer, the slice axis. 1 = sagittal, 2 = coronal, 3 = axial (in volume CRS convention). Defaults to |
scale |
integer >= 1, the factor by which to upscale the slice images in both dimensions using nearest-neighbor interpolation (keeps the MRI pixels sharp, which is good for QA). The surface contour lines are drawn on a high-resolution overlay and downsampled to the final size, so they appear thin and smooth. Defaults to |
silent |
logical, whether to suppress messages. Defaults to |
output_dir |
character string, directory in which to write the slice image files. Created if it does not exist. Defaults to |
output_prefix |
character string, prefix for output filenames. If |
image_format |
character string, image format for output files (e.g., |
label_slices |
logical, whether to annotate each slice image with its slice index (e.g., "slice 42") in the top-left corner. Uses |
label_color |
character string, color for the slice label text. Defaults to |
label_size |
integer, font size for the slice label. Defaults to 20. |
label_gravity |
character string, gravity for label placement, passed to |
skip_empty |
logical, whether to skip slices where no surface contour intersects the slice plane. Defaults to |
Value
invisible character vector of file paths that were written.
See Also
Other volume visualization:
vis.volume.clusters(),
vis.volume.on.surface(),
volvis.lb(),
volvis.lb.with.surface(),
volvis.lightbox()
Examples
## Not run:
fsbrain::download_optional_data();
subjects_dir <- fsbrain::get_optional_data_filepath("subjects_dir");
# Export all sagittal slices with white surface contours:
volvis.slices.with.surface(subjects_dir, "subject1",
volume="brain", surface="white", axis=1L,
output_dir="~/qa_slices");
# Export with slice labels, skipping empty slices:
volvis.slices.with.surface(subjects_dir, "subject1",
volume="brain", surface="white", axis=3L,
output_dir="~/qa_slices", label_slices=TRUE,
skip_empty=TRUE);
# Both white and pial surfaces, different colors:
volvis.slices.with.surface(subjects_dir, "subject1",
volume="brain", surface=c("white","pial"), axis=3L,
surface_color=c("#FF0000","#FFFF00"),
output_dir="~/qa_slices");
# 2x upscaled slices for larger images with thin, smooth contours:
volvis.slices.with.surface(subjects_dir, "subject1",
volume="brain", surface="white", axis=3L, scale=2L,
output_dir="~/qa_slices");
## End(Not run)
Voxel-based visualization of volume mask at surface RAS positions.
Description
Plots a 3D box at every foreground voxel in the given volume. All voxels which do not have their intensity value set to NA are considered foreground voxels. The locations at which to plot the voxels is computed from the 1-based R array indices of the voxels using the index2ras_tkr matrix (see vox2ras_tkr for the CRS-based variant). This means that the position of the rendered data fits to the surface coordinates (in files like surf/lh.white), and that you can call this function while an active surface rendering window is open (e.g., from calling vis.subject.morph.native), to superimpose the surface and volume data. On coloring the voxels (using rgl materials): Note that you can call this function several times for the active plot, and color the voxels differently by passing different material properties in each call. Alternatively, check the voxelcol parameter.
Usage
volvis.voxels(volume, render_every = 1, voxelcol = NULL, ...)
Arguments
volume |
numeric 3d array, voxels which should not be plotted must have value |
render_every |
integer, how many to skip before rendering the next one (to improve performance and/or see deeper structures). Use higher values to see a less dense representation of your data that usually still allows you to see the general shape, but at lower computational burden. Set to 1 to render every (foreground) voxel. |
voxelcol |
character string or a voxel coloring. A voxel coloring can be specified in three ways: 1) the string 'from_intensity' will compute colors based on the intensity values of the foreground voxels in the volume, applying normalization of the intensity values if needed. 2) an array of RGB color strings: will be used to retrieve the colors for all foreground vertices, at their CRS indices. 3) A vector with length identical to the number of foreground voxels in the volume: will be applied directly. Obvisouly, you should not pass a color material parameter (see |
... |
material properties, passed to |
Examples
## Not run:
fsbrain::download_optional_data();
subjects_dir = fsbrain::get_optional_data_filepath("subjects_dir");
brain = subject.volume(subjects_dir, 'subject1', 'brain');
# Plot all voxels of the brain:
brain[which(brain==0L, arr.ind = TRUE)] = NA; # mark background
brain = vol.hull(brain); # remove inner triangles
volvis.voxels(brain);
## End(Not run)
The FreeSurfer default vox2ras_tkr matrix.
Description
Applying this matrix to a FreeSurfer CRS index of a conformed volume will give you the RAS coordinates of the voxel in surface coordinates, i.e., in the coordinates used in surface file like lh.white. The central voxel is 127,127,127 when using zero-based indices (or 128,128,128 when using one-based indices), meaning its surface RAS coordinates are 0.0, 0.0, 0.0. The returned matrix is the inverse of the ras2vox_tkr matrix.
Usage
vox2ras_tkr()
Value
numeric 4x4 matrix, the FreeSurfer vox2ras_tkr matrix.
See Also
Other surface and volume coordinates:
index2ras_tkr(),
ras2vox_tkr()
Examples
# Compute surface RAS coordinate of voxel with CRS (0L, 0L, 0L):
vox2ras_tkr() %*% c(0, 0, 0, 1);
# Show that voxel with CRS (128,128,128) is at the
# origin (0.0, 0.0, 0.0) of the surface RAS coordinate system:
(vox2ras_tkr() %*% c(128, 128, 128, 1))[1:3];
Wrapper around magick::image_append that allows specifying the background color when working with images of different width/height.
Description
Wrapper around magick::image_append that allows specifying the background color when working with images of different width/height.
Usage
wrapped.image.append(images, stack = FALSE, background_color = "#FFFFFF")
Arguments
images |
a vector/stack of magick images. See |
stack |
whether to append vertically, default is FALSE / horizontally. |
background_color |
hex color string, the background color to use if the images have different sizes and one needs to be extended. Do not use color names like 'gray', which differ between R and magick. |
Value
a single magick image, the stacked version.
Write standard space group data to a standard FreeSurfer directory stucture.
Description
Write standard space group data to a standard FreeSurfer directory stucture.
Usage
write.group.morph.standard(
subjects_dir,
subjects_list,
data,
measure_name,
hemi = "both",
fwhm = "10",
template_subject = "fsaverage",
format = "mgh",
create_dirs = TRUE,
template_lh_numverts = NULL
)
Arguments
subjects_dir |
string. The FreeSurfer SUBJECTS_DIR, i.e., a directory containing the data for all your subjects, each in a subdir named after the subject identifier. |
subjects_list |
vector of strings. The subject identifiers. |
data |
the data matrix |
measure_name |
character string, the data part of the generated file names, e.g., 'thickness' or 'area'. |
hemi |
string, one of 'lh', 'rh' or 'both'. The hemisphere name. Used to construct the names of the annotation and morphometry data files to be loaded. |
fwhm |
string. Smoothing as string, e.g. '10' or '25'. |
template_subject |
string. Template subject name, defaults to 'fsaverage'. |
format |
string. One of 'mgh', 'mgz', 'curv'. Defaults to 'mgh'. |
create_dirs |
logical, whether to create missing (sub) directories which occur in the 'filepaths'. |
template_lh_numverts |
positive integer, the vertex count of the left hemi of the template subject, only used if 'hemi' is 'both'. If hemi is both and this is unspecified (left at the default value |
See Also
write.group.morph.standard.sf and write.group.morph.standard.mf
Examples
## Not run:
dm = matrix(rnorm(325684 * 6, 5.0, 1.2), ncol = 6);
subjects = paste("subject", seq(6), sep="");
write.group.morph.standard("/tmp/groupdata", subjects, dm,
"rand", template_lh_numverts = 325684 / 2);
## End(Not run)
Write per-vertex standard space data for a group of subjects to given file names.
Description
Write per-vertex standard space data for a group of subjects to given file names.
Usage
write.group.morph.standard.mf(
filepaths_hl,
data_hl,
format = "auto",
create_dirs = TRUE
)
Arguments
filepaths_hl |
|
data_hl |
|
format |
character string, a valid format spec for |
create_dirs |
logical, whether to create missing (sub) directories which occur in the 'filepaths'. |
See Also
write.group.morph.standard.sf to write the data to a single stacked file instead.
Reshape and write combined per-vertex data for a group to a single MGH file.
Description
Write morphometry data for a group into a single MGH or MGZ file. In neuroimaging, the first 3 dimensions in the resulting 4D volume file are space, and the 4th is the time/subject dimension.
Usage
write.group.morph.standard.sf(filepath, data)
Arguments
filepath |
character string, path to the target file, should end with '.mgh' or '.mgz'. |
data |
numerical 2D matrix, with the rows identifying the subjects and the columns identifying the vertices. |
Note
The file will contain no information on the subject identifiers. The data can be for one or both hemispheres. See group.morph.standard.sf to read the data back into R.
Examples
## Not run:
# create per-vertex data for 5 subjects.
mat = matrix(rnorm(5 * 163842, 3.0, 0.5), nrow=5, ncol = 163842);
fsbrain::write.group.morph.standard.sf("~/group_pvd.mgz", mat);
## End(Not run)
Write single hemi per-vertex data for a group of subjects to given file names.
Description
Write single hemi per-vertex data for a group of subjects to given file names.
Usage
write.group.morph.standard.singlehemi(
filepaths,
data,
format = "auto",
create_dirs = TRUE
)
Arguments
filepaths |
vector of character strings, the full paths to the output files, including file names and extension. |
data |
numerical matrix or data.frame, the morph data for a single hemi (as returned by |
format |
character string, a valid format spec for |
create_dirs |
logical, whether to create missing (sub) directories which occur in the 'filepaths'. |
Write data aggregated over regions to morphometry file for group.
Description
Given an atlas, a subjects list and a measure, aggregate the measure over each region (e.g., mean) and write an output morphometry file in which the value for all region vertices is set to the aggregated value.
Usage
write.region.aggregated(
subjects_dir,
subjects_list,
measure,
hemi,
atlas,
agg_fun = mean,
outfile_morph_name = "",
format = "mgz"
)
Arguments
subjects_dir |
string. The FreeSurfer SUBJECTS_DIR, i.e., a directory containing the data for all your subjects, each in a subdir named after the subject identifier. |
subjects_list |
string vector. A vector of subject identifiers that match the directory names within subjects_dir. |
measure |
string. Name of the vertex-wise measure of morphometry data file. E.g., "area" or "thickness". Used to construct the name of the morphometry file to be loaded. |
hemi |
string, one of 'lh' or 'rh'. The hemisphere name. Used to construct the names of the annotation and morphometry data files to be loaded. |
atlas |
string. The atlas name. E.g., "aparc", "aparc.2009s", or "aparc.DKTatlas". Used to construct the name of the annotation file to be loaded. |
agg_fun |
function. An R function that aggregates data, typically max, mean, min or something similar. Note: this is NOT a string, put the function name without quotes. Defaults to mean. |
outfile_morph_name |
string. The measure part of the output file name. E.g., 'agg_thickness' will write the file |
format |
string. A morphometry file format. One of 'mgh', 'mgz' or 'curv.' The output file name extension will be set accordingly. Defaults to 'mgz'. |
See Also
Other output functions:
write.region.values(),
write.region.values.fsaverage()
Write one value per atlas region for a subject.
Description
Given an atlas and a list that contains one value for each atlas region, write a morphometry file in which all region vertices are assigned the value. Can be used to plot stuff like p-values or effect sizes onto brain regions.
Usage
write.region.values(
subjects_dir,
subject_id,
hemi,
atlas,
region_value_list,
outfile_morph_name,
format = "mgz",
do_write_file = TRUE,
output_path = NULL,
value_for_unlisted_regions = NaN
)
Arguments
subjects_dir |
string. The FreeSurfer SUBJECTS_DIR, i.e., a directory containing the data for all your subjects, each in a subdir named after the subject identifier. |
subject_id |
string. The subject identifier |
hemi |
string, one of 'lh' or 'rh'. The hemisphere name. Used to construct the names of the annotation and morphometry data files to be loaded. |
atlas |
string. The atlas name. E.g., "aparc", "aparc.2009s", or "aparc.DKTatlas". Used to construct the name of the annotation file to be loaded. |
region_value_list |
named list. A list in which the names are atlas regions, and the values are the value to write to all vertices of that region. |
outfile_morph_name |
string. The measure part of the output file name. E.g., 'agg_thickness' will write the file |
format |
string. A morphometry file format. One of 'mgh', 'mgz' or 'curv.' The output file name extension will be set accordingly. Defaults to 'mgz'. |
do_write_file |
logical. Whether to write the data to a file on the disk. If FALSE, the data are only returned (and the outfile_morph_name parameter gets ignored). Default to TRUE. |
output_path |
string, path to the output directory. If omitted, defaults to the 'surf' directory of the subject (i.e., |
value_for_unlisted_regions |
numeric scalar. The value to assign to vertices which are part of atlas regions that are not listed in region_value_list. Defaults to NaN. |
Value
a named list with the following entries: "data": a vector containing the data. "file_written": string, path to the file that was written, only exists if do_write = TRUE.
See Also
Other output functions:
write.region.aggregated(),
write.region.values.fsaverage()
Examples
## Not run:
fsbrain::download_optional_data();
subjects_dir = fsbrain::get_optional_data_filepath("subjects_dir");
region_value_list = list("bankssts"=0.9, "precuneus"=0.7);
write.region.values(subjects_dir, 'subject1', 'lh', 'aparc',
region_value_list, 'pvalues.mgz', do_write_file = FALSE);
## End(Not run)
Write one value per atlas region for a template subject.
Description
Given an atlas and a list that contains one value for each atlas region, write a morphometry file in which all region vertices are assigned the value. Can be used to plot stuff like p-values or effect sizes onto brain regions.
Usage
write.region.values.fsaverage(
hemi,
atlas,
region_value_list,
output_file,
template_subject = "fsaverage",
template_subjects_dir = NULL,
show_freeview_tip = FALSE,
value_for_unlisted_regions = NaN
)
Arguments
hemi |
string, one of 'lh' or 'rh'. The hemisphere name. Used to construct the names of the annotation and morphometry data files to be loaded. |
atlas |
string. The atlas name. E.g., "aparc", "aparc.2009s", or "aparc.DKTatlas". Used to construct the name of the annotation file to be loaded. |
region_value_list |
named list. A list in which the names are atlas regions, and the values are the value to write to all vertices of that region. |
output_file |
string or |
template_subject |
string, template subject name. Defaults to 'fsaverage'. |
template_subjects_dir |
string, the path to the subjects directory containing the template subject directory. If this is |
show_freeview_tip |
logical, whether to print the freeview command on howto use the overlay to the console. (Only happens if the output_file is not |
value_for_unlisted_regions |
numeric scalar. The value to assign to vertices which are part of atlas regions that are not listed in region_value_list. Defaults to NaN. |
Value
a named list with the following entries: "data": a vector containing the data. "file_written": string, path to the file that was written, only exists if do_write = TRUE.
See Also
Other output functions:
write.region.aggregated(),
write.region.values()