Difference between revisions of "EMSegmenter-Tasks:CT-Hand-Bone"

From Slicer Wiki
Jump to: navigation, search
Line 2: Line 2:
  
 
=Description=
 
=Description=
Single channel automatic segmentation of CT hand scans into the finger bones based on the publication ( ). The task can be applied to right and and left hand scans. Subjects should be scanned with a similar protocol as atlas, which is ....
+
Single channel automatic segmentation of CT hand scans into the finger bones based on the publication (Ramme et al). The task can be applied to right and and left hand scans. Subjects should be scanned with a similar protocol as atlas, which is ....
  
 
The pipeline consist of the following steps:
 
The pipeline consist of the following steps:
Line 9: Line 9:
 
* Step 2: Create Binary MAP of the hand for the atlas template and CT scan. For each scan:
 
* Step 2: Create Binary MAP of the hand for the atlas template and CT scan. For each scan:
 
** Generate binary map of the scan by thresholding the scan above 150  
 
** Generate binary map of the scan by thresholding the scan above 150  
** Fill holwes in  
+
** Fill holes in binary map by
 
+
*** Blurring via itk::DiscreteGaussianImageFilter (parameter Variance=1.5, MaximumKernelWidth 5)
Blur resulting binary map ( via itk::DiscreteGaussianImageFilter (parameter Variance=1.5, MaximumKernelWidth 5)
+
*** Binarize map via itk::BinaryThresholdImageFilter (Set everything between 0 and 30 to 0, otherwise 255)
** Binarize blurred image  image
+
** Remove noise from the binary map by extracting largest component  
Use itk::BinaryThresholdImageFilter to remove artifacts. Set everything between 0 and 30 to 0, otherwise 255
+
<!--itk::BinaryThresholdImageFilter to extract label 255. keep everything between 1 and 255 (1-254 are not used) and set it to one -->
** extract largest component
+
*** apply itk::ConnectedComponentImageFilter to label the objects in the binary image. Each distinct object is assigned a unique label.
Use itk::BinaryThresholdImageFilter to extract label 255.
+
*** Use itk::RelabelComponentImageFilter to sort the labels based on the size of the object: the largest object will have label #1, the second largest will have label #2, etc.
<!-- keep everything between 1 and 255 (1-254 are not used) and set it to one -->
+
*** Use itk::BinaryThresholdImageFilter to extract label 1. This is the largest object in the data set.
 
 
Use itk::ConnectedComponentImageFilter to label the objects in the binary image. Each distinct object is assigned a unique label.
 
 
 
Use itk::RelabelComponentImageFilter to sort the labels based on the size of the object: the largest object will have label #1, the second largest will have label #2, etc.
 
 
 
Use itk::BinaryThresholdImageFilter to extract label 1. This is the largest object in the data set.
 
 
 
 
 
 
<!--
 
<!--
 
Island Removal and Fill:  
 
Island Removal and Fill:  
Line 32: Line 24:
 
Binary Threshold
 
Binary Threshold
 
-->
 
-->
 
 
 
 
* Step 2: Register the binarized atlas template to the binarized CT scan via [[Modules:BRAINSFit| BRAINSFit]] (Johnson et al 2007)
 
* Step 2: Register the binarized atlas template to the binarized CT scan via [[Modules:BRAINSFit| BRAINSFit]] (Johnson et al 2007)
 
** Step 2a: Use BRAINSFit to perform a affine registration.
 
** Step 2a: Use BRAINSFit to perform a affine registration.

Revision as of 19:15, 27 April 2011

Home < EMSegmenter-Tasks:CT-Hand-Bone

Return to EMSegmenter Task Overview Page

Description

Single channel automatic segmentation of CT hand scans into the finger bones based on the publication (Ramme et al). The task can be applied to right and and left hand scans. Subjects should be scanned with a similar protocol as atlas, which is ....

The pipeline consist of the following steps:

  • Step 1: Flip/Mirror the atlas (based on right hand scans) if scan of the subject is of the left hand.
  • Step 2: Create Binary MAP of the hand for the atlas template and CT scan. For each scan:
    • Generate binary map of the scan by thresholding the scan above 150
    • Fill holes in binary map by
      • Blurring via itk::DiscreteGaussianImageFilter (parameter Variance=1.5, MaximumKernelWidth 5)
      • Binarize map via itk::BinaryThresholdImageFilter (Set everything between 0 and 30 to 0, otherwise 255)
    • Remove noise from the binary map by extracting largest component
      • apply itk::ConnectedComponentImageFilter to label the objects in the binary image. Each distinct object is assigned a unique label.
      • Use itk::RelabelComponentImageFilter to sort the labels based on the size of the object: the largest object will have label #1, the second largest will have label #2, etc.
      • Use itk::BinaryThresholdImageFilter to extract label 1. This is the largest object in the data set.
  • Step 2: Register the binarized atlas template to the binarized CT scan via BRAINSFit (Johnson et al 2007)
    • Step 2a: Use BRAINSFit to perform a affine registration.
    • Register the atlas template linear to the subject scan and save the linear transformation. (BRAINSFit Rigid,Affine)
    • Step 2b: Use BRAINSDemonWarp to perform a non-linear registration.*
  • Register the atlas template non-linear to the subject scan. Use the linear transformation as initialization. (BRAINSDemonWarp)
    • Step 2c: Use BRAINSResample together with the --deformationVolume option to resample the atlas files.
  • Step 3: Compute the intensity distributions for each structure

Compute intensity distribution (mean and variance) for each label by automatically sampling from the MR scan. The sampling for a specific label is constrained to the region that consists of voxels with high probability (top 95%) of being assigned to the label according to the aligned atlas.

  • Step 4: Automatically segment the CT scan into the structures of interest using EM Algorithm (Pohl et al 2007)

Anatomical Tree

The anatomical tree represents the structures to be segmented. Node labels displayed below contain a human readable structure name and in parentheses the internally used structure name.

  • Hand
    • Air
    • Tissue
    • Index finger / digitus secundus (II)
      • Proximal (II)
      • Medial (II)
      • Distal (II)
    • Middle finger / digitus medius (III)
      • Proximal (III)
      • Medial (III)
      • Distal (III)
    • Ring finger / digitus annularis (IV)
      • Proximal (IV)
      • Medial (IV)
      • Distal (IV)
    • Little finger / digitus minimus (V)
      • Proximal (V)
      • Medial (V)
      • Distal (V)

Atlas

Result

Collaborators

Vincent Magnotta (University of Iowa)

Acknowledgment

The construction of the pipeline was supported by funding from NIH NCRR 2P41RR013218 Supplement.

Citations