Difference between revisions of "Slicer3:XCEDE use cases"

From NAMIC Wiki
Jump to: navigation, search
Line 23: Line 23:
 
* Freesurfer:overlay-1 (for files that need to be associated with a model in order to load in Slicer)
 
* Freesurfer:overlay-1 (for files that need to be associated with a model in order to load in Slicer)
 
* Freesurfer:label-1 (for mgz files that are label maps) This gives us a hint about what kind of color map to use to display the image data. The default colormap for volume data is greyscale.
 
* Freesurfer:label-1 (for mgz files that are label maps) This gives us a hint about what kind of color map to use to display the image data. The default colormap for volume data is greyscale.
 +
 +
Current Xcede catalog importer notes, to-do:
 +
* We recognize files with the string "brain.mgz" "example_func" and "stat" in them, in order to do some aautomatic calculation of the Slicer transform that does the ras2ras registration intended by the FreeSurfer matrix anat2exf.register.dat.
 +
** the tests to detect these files are weak -- need a better test: now, a structural volume with the string 'stat' embedded in it will be stuffed into the transform by mistake.
 +
** no registration transform will be computed if volumes matching the brain.mgz, example_func and an anat2exf.register.dat file are not detected.
 +
** a transform will be computed using the brain.mgz and example_func volumes and the anat2exf.register.dat
  
 
=== Qdec Module ===
 
=== Qdec Module ===

Revision as of 14:40, 5 September 2007

Home < Slicer3:XCEDE use cases

Slicer3 use cases for XCEDE

Query Atlas Module

This is a record of the way we're using the xcede2.0 catalog in order to load in a query atlas scene that contains:

  • One FreeSurfer model lh.pial
  • the FreeSurfer structural brain.mgz image volume
  • some FIPS-generated Statistical volumes
  • the FreeSurfer aparc+aseg.mgz label map volume
  • the FreeSurfer lh.aparc.annot annotation file
  • the matrix to align the statistics and the morphology: anat2exf.register.dat

Assumptions:

  • we are assuming a single model is in the catalog. (Reason: Slicer will load the lh.aparc.annot file as a scalar overlay onto a model; so the overlay needs to be associated with a model automatically during load. Since the catalog attribute list contains no references to other datasets, the only way to associate the lh.aparc.annot to the lh.pial surface is by assuming only one model will be in the catalog.)
  • we are keeping track of a list of volumes and models that have "FreeSurfer" in their format value. So we aer relying on FreeSurfer volumes and models to have the string "FreeSurfer" in their format value.
  • we are detecting whether a matrix with the name "anat2efx" is in the catalog (we should probably check the uri instead) -- and if so, we are wrapping the list of all FreeSurfer volumes and models (noted above) in that transform.

New value inventions for attributes:

  • Freesurfer:matrix-1 (this gives us a clue about file format).
  • Freesurfer:overlay-1 (for files that need to be associated with a model in order to load in Slicer)
  • Freesurfer:label-1 (for mgz files that are label maps) This gives us a hint about what kind of color map to use to display the image data. The default colormap for volume data is greyscale.

Current Xcede catalog importer notes, to-do:

  • We recognize files with the string "brain.mgz" "example_func" and "stat" in them, in order to do some aautomatic calculation of the Slicer transform that does the ras2ras registration intended by the FreeSurfer matrix anat2exf.register.dat.
    • the tests to detect these files are weak -- need a better test: now, a structural volume with the string 'stat' embedded in it will be stuffed into the transform by mistake.
    • no registration transform will be computed if volumes matching the brain.mgz, example_func and an anat2exf.register.dat file are not detected.
    • a transform will be computed using the brain.mgz and example_func volumes and the anat2exf.register.dat

Qdec Module