virtual L_INT LBitmap::Smooth(pSmooth, uFlags = 0)
Smooths the bumps and fills in the nicks of a 1-bit black and white image.
Pointer to the SMOOTH structure that LEADTOOLS uses to perform the smoothing operation.
Reserved for future use. Must be 0.
Value | Meaning |
---|---|
SUCCESS | The function was successful. |
< 1 | An error occurred. Refer to Return Codes. |
This function smooths the text in scanned text documents.
The behavior of this function can be modified by overriding LBitmap::SmoothCallback.
This function works only on 1-bit black and white images.
If a region is selected, only the selected region will be changed by this function. If no region is selected, the whole image will be processed.
This function does not support signed data images. It returns the error code ERROR_SIGNED_DATA_NOT_SUPPORTED if a signed data image is passed to this function.
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.
This example smooths all nicks and bumps up to 2 pixels in length
Long bumps/nicks are treated before short bumps/nicks
A LEAD region is updated to show all the changes.
L_INT LBitmap__SmoothExample(LBitmapWindow *)
{
SMOOTH smooth;
LBitmap m_Bitmap;
BITMAPHANDLE BitmapHandle;
L_INT32 nRet;
nRet = m_Bitmap.Load(MAKE_IMAGE_PATH(TEXT("clean.tif")), 0,ORDER_BGR);
if(nRet == SUCCESS)
{
ZeroMemory(&smooth, sizeof(SMOOTH));
smooth.uStructSize = sizeof (SMOOTH);
smooth.iLength = 2;
smooth.pBitmapRegion = &BitmapHandle;
smooth.uBitmapStructSize = sizeof(BITMAPHANDLE);
smooth.uFlags = SMOOTH_SINGLE_REGION | SMOOTH_LEAD_REGION | SMOOTH_FAVOR_LONG;
nRet = m_Bitmap.Smooth(&smooth);
if (nRet == SUCCESS)
{
//smooth.pBitmapRegion will have the region
//free region bitmap
L_FreeBitmap(smooth.pBitmapRegion);
}
}
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