#include "ltwrappr.h"
virtual L_INT LBitmap::CLAHE(Alpha, TileSize, nfclipLimit, nx, uFlags)
L_FLOAT Alpha; |
distribution parameter value |
L_UINT TileSize; |
Size of tiles |
float nfclipLimit; |
contrast enhancement limit |
L_UINT nx; |
Number of bins for the histogram |
L_UINT uFlags; |
flags |
Adjusts the image contrast using the Contrast Limited Adaptive Histogram Equalizer (CLAHE) method, Which uses several histograms each corresponding to a distinct section in the image while limiting the amplification of the noise in the image.
Parameter | Description |
Alpha | Non-negative real scalar specifying a distribution parameter. |
TileSize | Positive integer specifying the size of tiles ranging from 1 to 60. |
nfclipLimit | Real scalar in the range [0, 1] that specifies a contrast enhancement limit. Higher numbers result in more contrast. |
nx | Multiple of 2 integer in the range [2, 1024] that specifies the number of bins for the histogram used in building a contrast enhancing transformation. |
uFlags | Flags specifying the desired histogram shape for the image tiles. Possible values are: CLAHE_RAYLIEH CLAHE_EXPONENTIAL CLAHE_NORMAL CLAHE_SIGMOID CLAHE_RETURN8BITIMAGE CLAHE_RETURN16BITIMAGE |
SUCCESS | The function was successful. |
< 1 | An error occurred. Refer to Return Codes. |
This function supports 8 and 16-bit grayscale images.
Required DLLs and Libraries
LTDIS LTFIL LTIMGCOR 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.
Topics: | Raster Image Functions: Filtering Images |
Removing Noise | |
Raster Image Functions: Removing Noise |
This example loads a bitmap and applies an CLAHE filter.
L_INT LBitmap__CLAHEBitmapExample(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 a CLAHE filter */
nRet = LeadBitmap.CLAHE(0.5f, 9, 0.04f, 512, CLAHE_RAYLIEH);
if(nRet !=SUCCESS)
return nRet;
return SUCCESS;
}
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