TubeTK/Anisotropic Hybrid Diffusion with Continuous Switch: Difference between revisions

From KitwarePublic
Jump to navigationJump to search
No edit summary
Line 1: Line 1:
This module is implementation of diffusion based smoothing technique developed by Mendrik et al.
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. ''
'' 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. ''
Line 5: Line 5:
= Algorithm synopsis =
= Algorithm synopsis =


Diffusion based on
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.s


= Implementation =
= Implementation =


The tubetk implementation will follow ITK's finite difference solver framework.
The tubetk implementation will follow ITK's finite difference solver framework. The implementation will be done as follows:
 
# Implement structure tensor generation filter  ( Currently not available in ITK )
# Edge-enhancing diffusion filter
# Coherence-enhancing diffusion filter
# Hybrid diffusion filter

Revision as of 19:55, 5 April 2010

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.s

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 ( Currently not available in ITK )
  2. Edge-enhancing diffusion filter
  3. Coherence-enhancing diffusion filter
  4. Hybrid diffusion filter