#include "Ltimgcor.h"
L_LTIMGCOR_API L_INT L_TADAnisotropicDiffusion ( pBitmap, nIter, nLambda, pRect)
Applies a 2-Dimensional Anisotropic Diffusion filter on an image in order to reduce noise and speckling, while preserving the edges.
Pointer to the bitmap handle.
Number of iterations the filter will perform. The default value is 10.
The smoothing time step value. Valid values range from 0 to 100. A value of 0 means nothing will be done to the image. The default value is 50.
Pointer to a rectangle representing the homogeneous region of uniform speckles.
Value | Meaning |
---|---|
SUCCESS | The function was successful. |
< 1 | An error occurred. Refer to Return Codes. |
The Speckle Reducing Anisotropic Diffusion (SRAD) function is similar to the L_AverageFilterBitmap function, but is used to reduce noise and speckling in images while preserving the edges instead of blurring.
LEADTOOLS offers three functions that implement anisotropic diffusion:
All three reduce noise and preserve edges and perform better than the L_MedianFilterBitmap or L_GaussianFilterBitmap 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
Win32, x64.
This example loads a bitmap and applies SRADAnisotropicDiffusion.
L_INT SRADAnisotropicDiffusionExample(L_VOID)
{
L_INT nRet;
BITMAPHANDLE LeadBitmap; /* Bitmap handle to hold the loaded image. */
/* Load the bitmap, keeping the bits per pixel of the file */
nRet = L_LoadBitmap (MAKE_IMAGE_PATH(TEXT("IMAGE3.dcm")), &LeadBitmap, sizeof(BITMAPHANDLE), 0, ORDER_BGR, NULL, NULL);
if(nRet != SUCCESS)
return nRet ;
/* Apply SRADAnisotropicDiffusion filter */
RECT rc ;
rc.left = 150;
rc.right = 180;
rc.top = 300;
rc.bottom = 330;
nRet = L_SRADAnisotropicDiffusion(&LeadBitmap, 10, 50, &rc);
if(nRet == SUCCESS)
nRet = L_SaveBitmap(MAKE_IMAGE_PATH(TEXT("Result.BMP")), &LeadBitmap, FILE_BMP, 24, 0, NULL);
//free bitmap
if(LeadBitmap.Flags.Allocated)
L_FreeBitmap(&LeadBitmap) ;
return nRet ;
}
Help Collections
Raster .NET | C API | C++ Class Library | HTML5 JavaScript
Document .NET | C API | C++ Class Library | HTML5 JavaScript
Medical .NET | C API | C++ Class Library | HTML5 JavaScript
Medical Web Viewer .NET
Multimedia
Direct Show .NET | C API | Filters
Media Foundation .NET | C API | Transforms
Supported Platforms
.NET, Java, Android, and iOS/macOS Assemblies
Imaging, Medical, and Document
C API/C++ Class Libraries
Imaging, Medical, and Document
HTML5 JavaScript Libraries
Imaging, Medical, and Document