Gradient Anisotropic Diffusion
Overview
Runs gradient anisotropic diffusion on a volume.\n\nAnisotropic diffusion methods reduce noise (or unwanted detail) in images while preserving specific image features, like edges. For many applications, there is an assumption that light-dark transitions (edges) are interesting. Standard isotropic diffusion methods move and blur light-dark boundaries. Anisotropic diffusion methods are formulated to specifically preserve edges. The conductance term for this implementation is a function of the gradient magnitude of the image at each point, reducing the strength of diffusion at edges. The numerical implementation of this equation is similar to that described in the Perona-Malik paper, but uses a more robust technique for gradient magnitude estimation and has been generalized to N-dimensions.
Panels and their use
Anisotropic Diffusion Parameters: Parameters for the anisotropic diffusion algorithm
Conductance (conductance): Conductance controls the sensitivity of the conductance term. As a general rule, the lower the value, the more strongly the filter preserves edges. A high value will cause diffusion (smoothing) across edges. Note that the number of iterations controls how much smoothing is done within regions bounded by edges.
Iterations (numberOfIterations): The more iterations, the more smoothing. Each iteration takes the same amount of time. If it takes 10 seconds for one iteration, then it will take 100 seconds for 10 iterations. Note that the conductance controls how much each iteration smooths across edges.
Time Step (timeStep): The time step depends on the dimensionality of the image. In Slicer the images are 3D and the default (.0625) time step will provide a stable solution.
IO: Input/output parameters
Input Volume (inputVolume): Input volume to be filtered
Output Volume (outputVolume): Output filtered
Advanced: Advanced parameters for the anisotropic diffusion algorithm
Use image spacing (useImageSpacing): ![CDATA[Take into account image spacing in the computation. It is advisable to turn this option on, especially when the pixel size is different in different dimensions. However, to produce results consistent with Slicer4.2 and earlier, this option should be turned off.]]
Contributors
Bill Lorensen (GE)
Acknowledgements
This command module was derived from Insight/Examples (copyright) Insight Software Consortium