Differences between revisions 3 and 4
Deletions are marked like this. Additions are marked like this.
Line 4: Line 4:

'''WORK IN PROGRESS'''
Line 11: Line 9:
 * [[attachment:load_gca.m]]
Line 12: Line 11:
 * [[attachment:load_gca.m]] 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:

 * labels --> indices of the most likely label at each voxel
 * priors --> the probability that that label occurs at that voxel
 * means --> the mean intensity of the most likely label
Line 18: Line 28:

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:

  • labels --> indices of the most likely label at each voxel

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

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

References

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