L_DotRemoveBitmap

#include "l_bitmap.h"

L_LTIMGCOR_API L_INT L_DotRemoveBitmap(pBitmap, pDotRemove, pfnCallback, pUserData, uFlags)

pBITMAPHANDLE pBitmap;

pointer to the bitmap

pDOTREMOVE pDotRemove;

pointer to a structure

DOTREMOVECALLBACK pfnCallback;

optional callback function

L_VOID *pUserData;

pointer to more parameters for the callback

L_UINT32 uFlags;

flags

Finds and removes dots and specks of various sizes.

Parameter

Description

pBitmap

Pointer to the bitmap handle referencing the bitmap from which to remove dots.

pDotRemove

Pointer to the DOTREMOVE structure that LEADTOOLS uses to remove dots.

pfnCallback

Optional callback function for additional processing.

 

If you do not provide a callback function, use NULL as the value of this parameter.

 

If you do provide a callback function, use the function pointer as the value of this parameter.

 

The callback function must adhere to the function prototype described in DOTREMOVECALLBACK Function.

pUserData

Void pointer that you can use to pass one or more additional parameters that the callback function needs.

 

To use this feature, assign a value to a variable or create a structure that contains as many fields as you need. Then, in this parameter, pass the address of the variable or structure, casting it to L_VOID  *. The callback function, which receives the address in its own pUserData parameter, can cast it to a pointer of the appropriate data type to access your variable or structure.

 

If the additional parameters are not needed, you can pass NULL in this parameter.

uFlags

Reserved for future use. Must be 0.

Returns

SUCCESS

The function was successful.

< 1

An error occurred. Refer to Return Codes.

Comments

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.

(Document) This function finds and removes dots, specks, and blobs of various sizes in 1-bit documents. The dots, specks, and blobs may or may not be all black. The behavior of this function can be modified by using its callback.

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 32-bit grayscale images. It returns the error code ERROR_GRAY32_UNSUPPORTED if a 32-bit grayscale image is passed to this function.

Required DLLs and Libraries

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.

Platforms

Win32, x64, Linux.

See Also

Functions:

DOTREMOVECALLBACK, L_SmoothBitmap, L_LineRemoveBitmap, L_AutoLineRemove, L_InvertedTextBitmap, L_BorderRemoveBitmap, L_HolePunchRemoveBitmap, L_HolesRemovalBitmapRgn, L_AutoBinarizeBitmap, L_DynamicBinaryBitmap, L_AutoBinaryBitmap, L_InvertedPageBitmap

Topics:

Cleaning Up 1-Bit Images

Example

This example returns a region of all 1x1 to 3x3 specks that are solid black If a speck has any white pixels, it is NOT part of the returned region The call is configured to return a single LEAD region corresponding to all changes The image itself is unchanged A callback is used to display information about each speck that is removed The callback does NOT return a region

L_INT EXT_CALLBACK ExampleDotRemoveCB(HRGN hRgn, PRECT pBoundingRect, L_INT32 iWhiteCount, L_INT32 iBlackCount, L_VOID *pUserData) 
{ 
   UNREFERENCED_PARAMETER(pUserData); 
   L_TCHAR  szMsg[200]; 
   L_INT32 nRet; 
   RECT rcRect; 
   GetRgnBox(hRgn, &rcRect); 
   wsprintf( 
   szMsg, 
   TEXT("Region Bounds: left=%d, right=%d, top=%d, bottom=%d \n"), 
   rcRect.left, rcRect.right, rcRect.top, rcRect.bottom); 
   OutputDebugString(szMsg); 
   DeleteObject(hRgn); 
   wsprintf(szMsg, 
   TEXT("Size[%dx%d]\tBounds[%d,%d][%d,%d]\tWhiteCount[%d]\tBlackCount[%d]\n"), 
   pBoundingRect->right - pBoundingRect->left, 
   pBoundingRect->bottom - pBoundingRect->top, 
   pBoundingRect->left, 
   pBoundingRect->top, 
   pBoundingRect->right, 
   pBoundingRect->bottom, 
   iWhiteCount, 
   iBlackCount); 
   OutputDebugString(szMsg); 
   //Do not remove the speck if it contains any white pixels 
   if (iWhiteCount > 0) 
   { 
      nRet = SUCCESS_NOREMOVE; 
   } 
   else 
   { 
      nRet = SUCCESS_REMOVE; 
   } 
   return nRet; 
} 
L_INT DotRemoveBitmapExample(pBITMAPHANDLE pBitmap) 
{ 
   L_INT32        nRet; 
   BITMAPHANDLE   BitmapRegion; 
   DOTREMOVE      dr; 
   memset(&BitmapRegion, 0, sizeof(BITMAPHANDLE)); 
   dr.uStructSize = sizeof(DOTREMOVE); 
   dr.iMinDotWidth   = 6; 
   dr.iMinDotHeight  = 6; 
   dr.iMaxDotWidth   = 8; 
   dr.iMaxDotHeight  = 8; 
   dr.uFlags         = DOT_USE_SIZE | DOT_SINGLE_REGION | DOT_LEAD_REGION | DOT_CALLBACK_REGION; 
   dr.pBitmapRegion  = &BitmapRegion; 
   dr.uBitmapStructSize = sizeof(BITMAPHANDLE); 
   nRet = L_DotRemoveBitmap( 
   pBitmap, 
   &dr, 
   ExampleDotRemoveCB, 
   NULL 
   , 0); 
   if (nRet == SUCCESS) 
   { 
      RECT rectRgn; 
      //Delete the existing region 
      L_FreeBitmapRgn(pBitmap); 
      L_GetBitmapRgnBounds(dr.pBitmapRegion, NULL, &rectRgn); 
      if (!IsRectEmpty(&rectRgn)) 
      { 
         L_CopyBitmapHandle(pBitmap, dr.pBitmapRegion, sizeof(BITMAPHANDLE)); 
      } 
   } 
   else 
   { 
      return nRet; 
   } 
   return SUCCESS; 
} 

Help Version 19.0.2017.10.27
Products | Support | Contact Us | Copyright Notices
© 1991-2017 LEAD Technologies, Inc. All Rights Reserved.
LEADTOOLS Raster Imaging C API Help