top

Subcortical Segmentation

In automatic subcortical segmentation, each voxel in the normalized brain volume is assigned one of about 40 labels, including:

FreeSurfer runs automated labeling of the brain volume during the -autorecon2 stage.

The automatic subcortical segmentation can take many (11+) hours to complete.

To view just the segmentation, use this command:

tkmedit <subject name> norm.mgz -aseg 

Float your cursor over any voxel and the label assigned to it will be displayed in the TkMeditTools window.

If the voxels are incorrectly labeled, then you can re-label them yourself although we suggest contacting the freesurfer mailing list first to see if there is an automatic procedure that can be used to re-label them.. Refer to the TkMeditGuide/TkMeditWorkingWithData/TkMeditSelectionsLabels page for detailed information on manually editing the aseg.

Aseg Atlas

Automatic subcortical segmentation of a brain volume is based upon the existence of an atlas containing probablistic information on the location of structures. This is decribed here:

The atlas included with the Freesurfer distribution is found in the 'average' directory, and is called 'RB_all_2008-03-26.gca'. It is possible to construct your own atlas. This is described next.

Constructing an Aseg Atlas

Basic steps:

See also rebuild_gca_atlas.csh script in $FREESURFER_HOME/bin.

See also AtlasSubjects

For accuracy evaluations see also SubcorticalSegmentationAccuracy

Frequently Asked Questions

Are there any files which contain the left and right hemisphere segmentation of aseg.mgz separately?

No, but you could accomplish this in MATLAB by setting all the left (or right) segments to zero. For example, you can use the following code as a template and set each of the labels equal to zero.

a = MRIread('aseg.mgz');

ind = find(a.vol == 17); % Left hippo

a.vol(ind) = 0; % Set all left hippo to 0

and so on for the other segments

References

The original CMA segmentation scheme used for subcortical segmentation training is defined by (Filipek, et al, Cerebral Cortex, 1994) (paper). However, with better imaging resolution, anatomists Verne Caviness and Nikos Mkris developed the separation of the "thalamus proper" from a "ventral diencephalon" region that subtends many of the smaller nuclei and structures in the area inferior to the thalamus, such as hypothalamus, red nuclei, later and medial geniculate, ect. The first definition of the ventral diencephalon method is provided in Am J Med Genet. 1997 Sep 19;74(5):507-14. (paper). As defined by Makris in Makris, et al. Biol Psychiatry. 2008 Aug 1;64(3):192-202. (paper "...ventral diencephalon (49), which according to our morphometric definition contains the hypothalamus, basal forebrain, and sublenticular extended amygdala (SLEA), as well as a large portion of ventral tegmentum (which is included in our ventral diencephalon region by convention although part of midbrain)".

Also, from BIOL PSYCHIATRY L.J. Seidman et al 1999;46:941–954 (paper) "We used the same segmentation procedure of the thalamus developed in our preliminary MRI report (Seidman et al 1997). The central gray nuclei were divided into superior and inferior segments, the thalamus proper and the “ventral diencephalon,” respectively. The thalamus proper (including all thalamic nuclei except the lateral and medial geniculate bodies) was defined on all coronal slices on which it was present, from the first slice containing the anterior nucleus through the last slice containing the pulvinar nucleus. The structure was bounded medially by the third ventricle, and laterally by the internal capsule. The superior border was the body of the lateral ventricle, and the inferior border, the hypothalamic fissure. This structure definition differed from the central gray nuclei of Filipek and co-workers (1994) only in its inferior boundary."

The 5th ventricle, referred to as the "cavum septum pallucidum," is a bit of an enigma that tends to only occur on occasion. It's not reported in any manuscripts, but it was confirmed by neuroradiologist, P. Ellen Grant.

SubcorticalSegmentation (last edited 2018-01-04 15:07:58 by MorganFogarty)