Differences between revisions 5 and 6
Deletions are marked like this. Additions are marked like this.
Line 21: Line 21:
 * labels --> indices of the most likely label at each voxel  * labels --> indices of the most likely label at each voxel (indices refer to '#No.' column of $FREESURFER_HOME/FreeSurferColorLUT.txt)

top | previous

The GCA Subcortical Segmentation Atlas Volume Format

The .gca (Gaussian Classifier Atlas) file format encodes voxel label information based on probabilistic information estimated from a training set. The GCA format is proprietary, defined by the NMR Center (at Massachusetts General Hospital). Below is an informal specification of the format, extracted from the code snippets below:

The .gca file is composed of three volumes, which can be extracted like this:

mri_convert atlas.gca -nth 0 means.mgz
mri_convert atlas.gca -nth 1 labels.mgz
mri_convert atlas.gca -nth 2 priors.mgz

where:

  • means --> the mean intensity of the most likely label

  • labels --> indices of the most likely label at each voxel (indices refer to '#No.' column of $FREESURFER_HOME/FreeSurferColorLUT.txt)

  • priors --> the probability that that label occurs at that voxel

References

FsTutorial/GcaFormat (last edited 2012-04-18 14:20:10 by NickSchmansky)