#include "ltwrappr.h"
virtual L_INT LBitmap::TADAnisotropicDiffusion(nIterations, nLambda, nKappa, nFlags)
L_INT nIterations; |
number of iterations the filter will perform |
L_INT nLambda; |
integration constant |
L_INT nKappa; |
gradient modulus threshold that controls the conduction |
L_UINT nFlags; |
the type of the conduction function to use in the filtering process |
An iterative filter that performs Tensor-guided Anisotropic Diffusion (TAD) in order to reduce noise while preserving the edges in the image.
Parameter | Description | |
nIterations | Number of iterations the filter will perform. The default value is 10. | |
nLambda | An integer that represents the integration constant. The maximum value is 25. Lambda controls the speed of diffusion. Typically set it to the maximum (25). The default value is 14. | |
nKappa | Gradient modulus threshold that controls the conduction. The default value is 30. If Kappa is low, small intensity gradients are able to block conduction and hence diffusion across the step edges. A large value reduces the influence of intensity gradients on conduction. | |
nFlags | The type of the conduction function to use in the filtering process. Possible values are: | |
Value | Meaning | |
TAD_EXPON_FLUX | [0x00000001] Use exponential flux, which favors high contrast edges over low contrast ones. | |
TAD_QUAD_FLUX | [0x00000002] Use quadratic flux, which favors wide regions over smaller ones. This is the default value. |
SUCCESS |
The function was successful. |
< 1 |
An error occurred. Refer to Return Codes. |
Use the LBitmap::TADAnisotropicDiffusion to reduce noise in images (more specifically, medical images).
LEADTOOLS offers three functions that implement anisotropic diffusion:
All three reduce noise and preserve edges and perform better than the LBitmap::MedianFilter or LBitmap::GaussianFilter functions. With the anisotropic functions, areas within regions are smoothed, but the edges are not affected.
The number of iterations controls the number of times the filter will be applied to an image. The lower the number of iterations, the faster the filter will perform. Higher iterations typically mean clearer results.
This function can only process the entire image. It does not support regions.
This function supports 8- and 16-bit grayscale images and 24- and 32-bit colored images.
This function supports signed/unsigned images.
Required DLLs and Libraries
LTDIS For a listing of the exact DLLs and Libraries needed, based on the toolkit version, refer to Files To Be Included With Your Application. |
Win32, x64.
Functions: |
LBitmap::SRADAnisotropicDiffusion, LBitmap::AnisotropicDiffusion, Class Members |
#define MAKE_IMAGE_PATH(pFileName) TEXT("C:\\Users\\Public\\Documents\\LEADTOOLS Images\\")pFileName
#if defined (LEADTOOLS_V19_OR_LATER)
L_INT LBitmap__TADAnisotropicDiffusionExample(L_VOID)
{
L_INT nRet;
LBitmap LeadBitmap;
nRet =LeadBitmap.Load(MAKE_IMAGE_PATH(TEXT("IMAGE3.dcm")), 0,ORDER_BGR);
if(nRet !=SUCCESS)
return nRet ;
/* Apply TADAnisotropicDiffusion filter */
nRet = LeadBitmap.TADAnisotropicDiffusion(10, 14, 30, TAD_QUAD_FLUX);
return nRet ;
}
#endif // LEADTOOLS_V19_OR_LATER
Raster .NET | C API | C++ Class Library | JavaScript HTML5
Document .NET | C API | C++ Class Library | JavaScript HTML5
Medical .NET | C API | C++ Class Library | JavaScript HTML5
Medical Web Viewer .NET