typedef struct tagMICROptions2
{
L_UINT uStructSize;
L_BOOL bUseMicrDetector;
} MICROPTIONS2, * pMICROPTIONS2;
The MICROPTIONS2 structure contains options for MICR recognition.
Structure size. It should be equal to sizeof(MICROPTIONS2).
Flag that specifies whether the to use LEADTOOLS MICR detector. Possible values are:
Value | Meaning |
---|---|
TRUE | Using LEADTOOLS MICR detector is enabled. |
FALSE | Using LEADTOOLS MICR detector is disabled. |
This structure is used during recognition of the OCR page, if bUseMicrDetector is TRUE and the page has MICR zones then LEADTOOLS MICR detector algorithm tries to detect if these MICR zone actually have MICR data if not then the engine internally flags that zone to not get recognized.
pMICROPTIONS2 is a pointer to a MICROPTIONS2 structure. If the function parameter type is pMICROPTIONS2, declare a MICROPTIONS2 variable, update the structure's fields, and pass the variable's address in the parameter. Declaring a pMICROPTIONS2 variable is necessary only if the program requires a pointer.
The structure is used by: