TubeTK/Anisotropic Hybrid Diffusion with Continuous Switch

From KitwarePublic
< TubeTK
Revision as of 19:57, 5 April 2010 by Andinet (talk | contribs)
Jump to navigationJump to search

This module is an implementation of diffusion based smoothing technique developed by Mendrik et al.

Mendrik AM, Vonken EJ, Rutten A, Viergever MA, van Ginneken B. Noise reduction in computed tomography scans using 3-d anisotropic hybrid diffusion with continuous switch. IEEE Trans Med Imaging. 2009 Oct;28(10):1585-94.

Algorithm synopsis

This algorithm is based on anisotropic non-linear diffusion. The technique combines edge-preserving noise reduction while enhancing local structures. This algorithm proposes hybrid approach to combine the advantages of EED ( Edge enhancing diffusion ) and CED ( Coherence enhancing diffusion ).

EED focuses on edge preservation and enhancement. In EED, strong smoothing is applied along the direction of the edge while the strength of the smoothing along the other perpendicular directions depends on the gradient. The higher the gradient the lower the smoothing strength would be.

On the other hand, CED is designed to to connect lines and improve flow-like structures and also enhance plane-like structure.

Implementation

The tubetk implementation will follow ITK's finite difference solver framework. The implementation will be done as follows:

  1. Implement structure tensor generation filter ( Second moment matrix that is currently not available in ITK )
  2. Edge-enhancing diffusion filter
  3. Coherence-enhancing diffusion filter
  4. Hybrid diffusion filter