L_INT LBitmap::TissueEqualize(uFlags)
Performs equalization between the hard tissue and the soft tissue in X-ray images, resulting in better quality for better interpretation and understanding of the image.
Flags that indicate the type of processing. Possible values are:
Value | Meaning |
---|---|
TISSUEEQUALIZE_INTENSIFY | [0x00000002] Performs tissue equalization with contrast intensification. |
TISSUEEQUALIZE_SIMPLIFY | [0x00000001] Performs tissue equalization with simplification of intensity values across the image. |
Value | Meaning |
---|---|
SUCCESS | The function was successful. |
< 1 | An error occurred. Refer to Return Codes. |
If the bitmap has a region, the effect will be applied on the region only; otherwise the whole image will be processed.
This function supports DICOM images.
This function does not support 32-bit grayscale images. It returns the error code ERROR_GRAY32_UNSUPPORTED if a 32-bit grayscale image is passed to this function.
Win32, x64.
L_INT LBitmap__TissueEqualizeExample()
{
L_INT nRet;
LBitmap LeadBitmap;
nRet = LeadBitmap.Load(MAKE_IMAGE_PATH(TEXT("image2.dcm")), 0,ORDER_BGR);
if(nRet !=SUCCESS)
return nRet;
nRet = LeadBitmap.TissueEqualize (TISSUEEQUALIZE_INTENSIFY);
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