Handling of structural neuroimaging file formats for Rust.
The neuroformats
crate provides access to structural neuroimaging data in Rust by implementing parsers for various file formats. The focus is on surface-based brain morphometry data, as produced from 3D or 4D magnetic resonance imaging (MRI) data by neuroimaging software suites like FreeSurfer, CAT12 and others.
In surface-based neuroimaging, basically meshes representing the 3D structure of the human cortex are reconstructed from a segmented 3D brain image. Then properties of the human brain, like the thickness of the cortex at a specific position, are computed from the reconstruction and stored as per-vertex data for the mesh.
Fig. 1 A mesh representing the white surface of a human brain, with cortical thickness values mapped onto it using the viridis colormap. Different magnifications are displayed, and the triangles and vertex positions can be identified in the last one.
The neuroformats
crate is on crates.io.
To use the library in your project, run cargo add neuroformats
in your project directory.
Alternatively, you could manually add it as a dependency in your Cargo.toml
file, e.g.:
[dependencies]
neuroformats = "0.3.0"
- Read and write FreeSurfer per-vertex data in curv format (like
subject/surf/lh.thickness
): functionsneuroformats::read_curv
andwrite_curv
- Read and write brain meshes in FreeSurfer binary mesh format (like
subject/surf/lh.white
):read_surf
andwrite_surf
- Read and write FreeSurfer label files (like
subject/label/lh.cortex.label
):read_label
andwrite_label
- Read FreeSurfer brain surface parcellations (a.k.a. brain atlas, like
subject/label/lh.aparc.annot
):read_annot
- Read and write FreeSurfer brain volumes and other data from MGH and MGZ files:
read_mgh
andwrite_mgh
Various utility functions are implemented for performing common computations on the returned structs, e.g. computing the vox2ras matrix from the MGH header data or finding all vertices in a brain surface parcellation that belong to a certain brain atlas region. The library can also export brain meshes in standard mesh formats (Wavefront Object Format, PLY format, glTF), optionally with vertex colors based on per-vertex data (from curv or MGH/MGZ files) and the viridis colormap for quick visualization in tools like MeshLab or Blender.
The neuroformats
API docs can be found at docs.rs/neuroformats.
Read data computed by FreeSurfer for your subject subject1
from the standard FreeSurfer output directory structure (SUBJECTS_DIR):
fn main() {
// Read the brain mesh of the left hemisphere
let lh_surface =
neuroformats::read_surf("subject1/surf/lh.white").unwrap();
// Read morphometry data (native space cortical thickness per vertex) for the mesh
let lh_thickness =
neuroformats::read_curv("subject1/surf/lh.thickness").unwrap();
// Load cortical mask
let lh_cortex =
neuroformats::read_label("subject1/label/lh.cortex.label")
.unwrap();
// Print some info
print!(
"The left surface has {} vertices, of which {} are part of the cortex.\n",
lh_surface.mesh.num_vertices(),
lh_cortex.vertexes.len()
);
print!(
"The cortical thickness at vertex 0 is {:.2} mm.\n",
lh_thickness.data[0]
);
// Compute the mean cortical thickness for the left hemisphere, ignoring medial wall (non-cortex) vertices
let mut lh_cortex_thickness_sum = 0.0;
for vertex in lh_cortex.vertexes.iter() {
lh_cortex_thickness_sum += lh_thickness.data[vertex.index as usize];
}
let lh_cortex_thickness_mean = lh_cortex_thickness_sum / lh_cortex.vertexes.len() as f32;
print!(
"The mean cortical thickness for the left hemisphere is {:.2} mm.\n",
lh_cortex_thickness_mean
);
}
- brain_readme: The code from the short usage example above, wrapped in a main function and with paths adapted to point to the directory of demo files that comes with the package, so that it runs without further changes.
- brain_morph: A simple application that demonstrates working with morphometry data. It shows how to load brain surfaces and the cortical thickness values for each vertex. It then proceeds to load a cortex mask, and uses it to compute the average cortical thickness per hemisphere, restricted to cortical vertices (i.e., ignoring the medial wall).
- brain_atlas: Demonstrates how to load a brain surface atlas (the Desikan-Killiany atlas), find the vertices that belong to a specific atlas region, and the respective morphometry values for these vertices. The app then computes the average cortical thickness in a brain region.
- brain_export This app loads a brain mesh and per-vertex data (sulcal depth at each vertex), and maps the per-vertex values to colors using the viridis colormap. It does this for both hemispheres, then combines the meshes into a single mesh, centers it at the origin, merges the color values as well, and exports the result as a vertex-colored PLY file. The resulting file can be visualized in standard mesh viewers like Blender or MeshLab.
See the neuroformats API docs and the unit tests in the source code for more examples for using the neuroformats functions.
These apps do not directly illustrate using the neuroformats API, but use Rust-based tools to visualize the exported brain meshes.
- There is a small command line demo application that loads a brain surface mesh and raytraces an image based on the mesh to a PNG file available in the ./examples/brain_rpt directory. The demo uses the rpt crate by Eric Zhang and Alexander Morozov to do the raytracing. This can take quite a while on slower computers (more than 10 minutes on my laptop).
- A simple demo that loads a brain mesh into a simple scene using the bevy game engine for real-time viewing can be found in the ./examples/brain_bevy directory. This one requires some non-Rust system dependencies to run and is thus a bit harder to install. See the instructions in the main file if you're using some Debian-based Linux like Ubuntu.
To run the demo apps, type cargo run
in the respective directory, e.g., in ./examples/brain_morph/.
Long version of the instructions:
- Make sure you have git and rust installed.
- Clone the repo and use cargo to run the respective app, e.g.:
git clone https://github.com/dfsp-spirit/neuroformats-rs.git
cd neuroformats-rs/examples/brain_morph/
cargo run
Please see the README_DEV file.
The neuroformats
crate is free software, dual-licensed under the MIT or APACHE-2 licenses.
Contributions are very welcome. Please get in touch before making major changes to avoid wasted effort.
If you want to discuss something, need help or found a bug, please open an issue here on Github.
The neuroformats
crate was written by Tim Schäfer. You can find my email address on my website if you need to contact me.