Difference between revisions of "DBP2:UNC:Regional Cortical Thickness Pipeline"

From NAMIC Wiki
Jump to: navigation, search
Line 110: Line 110:
 
|[[Image:T1Image.jpg|thumb|250px|T1-weighted skull-stripped image]]
 
|[[Image:T1Image.jpg|thumb|250px|T1-weighted skull-stripped image]]
 
|valign="center"|[[Image:Parcellation.jpg|thumb|250px|Parcellation image]]
 
|valign="center"|[[Image:Parcellation.jpg|thumb|250px|Parcellation image]]
|
+
{|
 
|valign="center"|[[Image:WMThickness.jpg|thumb|250px|Cortical thickness on WM surface]]
 
|valign="center"|[[Image:WMThickness.jpg|thumb|250px|Cortical thickness on WM surface]]
 
|valign="center"|[[Image:ThicknessInformation.jpg|thumb|250px|Cortical thickness information]]
 
|valign="center"|[[Image:ThicknessInformation.jpg|thumb|250px|Cortical thickness information]]
 +
|}
 
|}
 
|}
 
</center>
 
</center>

Revision as of 17:58, 13 December 2008

Home < DBP2:UNC:Regional Cortical Thickness Pipeline

Back to UNC Cortical Thickness Roadmap


Screenshot of the application
Pipeline description

Objective

We would like to create an end-to-end application within Slicer3 allowing individual and group analysis of regional cortical thickness.

This page describes the related pipeline with its basic components.

General information

Two modules have been developped:

  • ARCTIC
  • ARCTICA

Main pipeline description (steps)

Input: RAW images (T1-weighted, T2-weighted, PD-weighted images)

  • 1. Tissue segmentation
    • Tool: itkEMS (UNC Slicer3 external module)
  • 2. Skull stripping
    • Tool: SegPostProcess (UNC Slicer3 external module)
  • 3. Deformable registration of pediatric regional atlas
    • 3.1 Deformable registration of T1-weighted pediatric atlas
      • Tool: RegisterImages (Slicer3 module)
    • 3.2. Applying transformation to the parcellation map
      • Tool: ResampleVolume2 (Slicer3 module)
  • 4. Cortical Thickness
    • Tool: CortThick (UNC Slicer3 module)

All the tools used in the current pipeline are Slicer3 modules, some of them being UNC external modules. The user can thus compute an individual regional cortical thickness analysis by running the 'RegionalCortThickPipeline' module, either within Slicer3 or as a command line.


Before using the pipeline

Add the executables in the PATH.

 -tcsh usage : setenv PATH ARCTIC-Executables-Directory:Slicer3D-Plugins-Directory:Batchmake-Drectory:${PATH}
 -bash usage : export PATH=ARCTIC-Executables-Directory:Slicer3D-Plugins-Directory:Batchmake-Drectory:${PATH}
 notice : For an execution within Slicer3D, it is not necessary to add "Slicer3D-Plugins-Directory" in the PATH.

Set the pipeline environment variable

 -tcsh usage : setenv BatchmakeWrapper_Dir Batchmake-Wrapper-Directory
 -bash usage : export BatchmakeWrapper_Dir=Batchmake-Wrapper-Directory

Set the pipeline as a Slicer3D module

 Within Slicer3D : View->Applications Settings->Add a preset and then select the ARCTIC-Executables-Directory/

Usage (Command Line)

Inputs: T1-weighted image, T1-weigthed atlas, regional atlas (parcellation map)

A. Pipeline command line

 RegionalCortThickPipeline --T1 Image_T1.gipl --segAtlasDir TissueSegmentationAtlasDirectory/ 
 --atlas Atlas.gipl --atlasParcellation Parcellation.gipl --SaveWM  WMCorticalThicknessMap  --SaveGM GMCorticalThicknessMap

B. Step by step command line

  • 1. Tissue segmentation
    • Input: EMSparam.xml
    • Output: Image_Corrected_EMS.gipl, Label.gipl
 itkEMSCLP --XMLFile EMSparam.xml
  • 2. Skull stripping
    • Input: Label.gipl, Image_Corrected_EMS.gipl
    • Output: Image_Corrected_EMS_Stripped.gipl, BinaryMask.gipl (optional)
 SegPostProcessCLP Label.gipl  Image_Corrected_EMS_Stripped.gipl --skullstripping  Image_Corrected_EMS.gipl
  • 3. Deformable registration of pediatric regional atlas
    • 3.1 Deformable registration of T1-weighted pediatric atlas
      • Input: Atlas.gipl, Image_Corrected_EMS_Stripped.gipl
      • Output: Atlas_Registered.gipl, Atlas_Registered_Transform.txt
  RegisterImages Image_Corrected_EMS_Stripped.gipl Atlas.gipl –resampledImage  Atlas_Registered.gipl –saveTransform Atlas_Registered_Transform.txt –registration PipelineBSpline
    • 3.2. Applying transformation to the parcellation map
      • Input: Parcellation.gipl, Atlas_Registered_Transform.txt, Image_Corrected_EMS_Stripped.gipl
      • Output: Parcellation_Registered.gipl
  ResampleVolume2 Parcellation.gipl Parcellation_Registered.gipl -f Atlas_Registered_Transform.txt -i nn -R Image_Corrected_EMS_Stripped.gipl
  • 4. Cortical Thickness
    • Input: Parcellation_Registered.gipl, Label.gipl
    • Output: CortThick_Result_Dir/, WMCorticalThicknessMap, GMCorticalThicknessMap
  CortThickCLP CortThick_Result_Dir/ --par  Parcellation_Registered.gipl --inputSeg Label.gipl --SaveWM  WMCorticalThicknessMap  --SaveGM GMCorticalThicknessMap

Analysis on a small pediatric dataset

Tests have been computed on a small pediatric dataset, including 2 years old and 4 years old cases

  • 16 Autistic cases
  • 1 developmental delay
  • 3 normal control

Pearson correlation analysis

We would like to perform a regional statistical analysis (Pearson correlation analysis) to compare our method with FreeSurfer.

The study is in progress and the dataset includes 90 cases (2 and 4 years old).

Two studies will be done : 1 for the 2 years old cases and 1 for the 4 ones.



T1-weighted skull-stripped image
Parcellation image
Cortical thickness on WM surface
Cortical thickness information

Done

  • Workflow for individual analysis (Slicer3 external module using BatchMake)
  • 2 Tutorials with application example on a small dataset : "How to use the UNC modules to compute the regional cortical thickness" and "How to use ARCTIC"

In progress

  • Pediatric atlases (T1-weighted image, parcellation map, probability maps) available to the community (MIDAS : NAMIC stuff)
  • Regional analysis to compare our method with results from FreeSurfer
  • ARCTIC executables (UNC external modules for Slicer3D), Source code (SVN) and Tutorial dataset available on NITRC

Future work

  • Workflow for group analysis (KWWidgets application using BatchMake)