ITK Release 4/A2D2 Projects/Physics-Based Non-rigid Registration

From KitwarePublic
Jump to navigationJump to search

Motivation

We will develop an ITK implementation of physics-based Non-Rigid Registration (NRR) for Image- Guided Surgery (IGS) that will satisfy the following requirements: account for tissue properties in the registration, improve accuracy compared to rigid registration, and reduce execution time to less than one minute. The benefits to the ITK community are at least two-fold. First, as a stand-alone software we will provide a computationally efficient registration method that accounts for tissue properties and that approximates sparse deformation. Second, through ITK integration into other IGS toolkits, NRR will be part of open-source systems like 3D-Slicer and IGSTK, and commercial systems like BrainLab."

Goals

Deliverable

The deliverable from this project differs from the existing ITK class FEMRegistrationFilter. The methodology is based on the separation of the NRR method into two parts: a regular part, block matching that utilizes the GPU, and an irregular part, a Finite Element solver that is mapped to multi-core processors

  1. Feature Point Selection filter as itk::MaskFeaturePointSelection3D
    1. Input
      1. floating image as itk::Image
      2. Mask image as itk::Image
    2. Output:
      1. list of selected points as itk::PointSet. For each point we store:
        1. image coordinates
        2. real coordinates
        3. tensor
  2. Block Matching filter as itk::BlockMatching3D
    1. Input
      1. floating image as itk::Image
      2. fixed image as itk::Image
      3. list of selected points (output of itk::MaskFeaturePointSelection3D) as itk::PointSet
    2. Output:
      1. displacement field as itk::PointSet. For each point we store:
        1. image coordinates
        2. real coordinates
        3. tensor
        4. confidence
        5. displacement
        6. correlation
  3. FEMScatteredDataPointSetToImageFilter

Description:

FEM-based approximation to interpolation filter. The scattered point set is approximated by a piece-wise linear function regularized by a linear elastic biomechanical model. The approximation error is reduced iteratively to reach interpolation accuracy. This filter takes a point set, mesh and material as inputs and outputs a deformation field. The following figures show the flow chart and the inheritance diagram, respectively.


Data

Deliverable

Team

  • Nikos Chrisochoides ( ODU )
  • Andriy Kot ( ODU )
  • Yixun Liu ( ODU )
  • Michel Audette ( ODU )
  • Andinet Enquobahrie ( Kitware )