L_LineRemoveBitmap

#include "l_bitmap.h"

L_INT EXT_FUNCTION L_LineRemoveBitmap(pBitmap, pLineRemove, pfnCallback, pUserData)

pBITMAPHANDLE pBitmap;

/* pointer to the bitmap */

LPLINEREMOVE pLineRemove;

/* pointer to a structure */

LINEREMOVECALLBACK pfnCallback;

/* optional callback function */

L_VOID L_FAR * pUserData;

/* pointer to more parameters for the callback */

Removes horizontal and vertical lines in a 1-bit black and white image. This function is available in the Document/Medical Toolkits.

Parameter

Description

pBitmap

Pointer to the bitmap handle referencing the bitmap on which to perform line removal.

pLineRemove

Pointer to the LINEREMOVE structure that LEADTOOLS uses to perform the line removal operation.

pfnCallback

Optional callback function for additional processing.

 

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

 

image\sqrblit.gif 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 LINEREMOVECALLBACK 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 L_FAR *. 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.

Returns

SUCCESS

The function was successful.

< 1

An error occurred. Refer to Return Codes.

Comments

(Document) This function removes horizontal and vertical lines from scanned text documents. If the lines pass through text, the pLineRemove parameter can be configured to remove or preserve the text. The behavior of this function can be further 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 signed data images. It returns the error code ERROR_SIGNED_DATA_NOT_SUPPORTED if a signed data image is passed to this function.

Required DLLs and Libraries

LTIMG

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

Windows 95 / 98 / Me, Windows 2000 / XP.

See Also

Functions:

LINEREMOVECALLBACK, L_SmoothBitmap, L_BorderRemoveBitmap, L_InvertedTextBitmap, L_DotRemoveBitmap, L_HolePunchRemoveBitmap

Topics:

Cleaning Up 1-Bit Images

Example

//Line Remove
//This examples removes vertical lines that are at least 200 pixels in length
//     and no more than 5 pixels in width
//The lines can have gaps up to two pixels in length
//A callback is used to display information about each line removed
//The callback does NOT return a region

L_INT L_EXPORT EXT_CALLBACK ExampleLineRemoveCB
(
 HRGN           hRgn, 
 L_INT32        iStartRow, 
 L_INT32        iStartCol, 
 L_INT32        iLength, 
 L_VOID L_FAR  *pUserData
 )
 
{
   L_TCHAR szMsg[200];
   
   wsprintf(
      szMsg, 
      TEXT("RowCol[%d,%d] Length[%d]\n"),
      iStartRow,
      iStartCol,
      iLength
      );
   OutputDebugString(szMsg);
   return SUCCESS_REMOVE; 
}

L_VOID ExampleLineRemove(pBITMAPHANDLE pBitmap)
{
   L_INT32           nRet;
   LINEREMOVE        lr;

   lr.uStructSize = sizeof(LINEREMOVE);
   lr.iGapLength     = 2;
   lr.iMaxLineWidth  = 5;
   lr.iMinLineLength = 200;
   lr.iWall          = 7;
   lr.iMaxWallPercent = 10;
   lr.uRemoveFlags   = LINEREMOVE_HORIZONTAL;
   lr.uFlags         = LINE_USE_GAP;

   nRet = L_LineRemoveBitmap(
      pBitmap, 
      &lr,
      (LINEREMOVECALLBACK)(ExampleLineRemoveCB), 
      NULL                              
      );   
}