typedef enum
{
DOC2_VERIFY_IMPOSSIBLE = 0,
DOC2_VERIFY_UNLIKELY,
DOC2_VERIFY_UNRESOLVED,
DOC2_VERIFY_POSSIBLE,
DOC2_VERIFY_ACCEPT,
} DOC2_VERIFYCODE;
The DOC2_VERIFYCODE enumerated type lists different levels of accuracy.
Value | Meaning |
---|---|
DOC2_VERIFY_IMPOSSIBLE | The OCR engine has determined that the recognized string for the given zone cannot be possible. |
DOC2_VERIFY_UNLIKELY | The OCR engine has determined that the recognized string for the given zone is unlikely to be acceptable. |
DOC2_VERIFY_UNRESOLVED | The application's checking function cannot make a decision on the acceptability of the string for the zone. |
DOC2_VERIFY_POSSIBLE | The OCR engine has determined that the recognized string for the given zone is possibly acceptable. |
DOC2_VERIFY_ACCEPT | The OCR engine has determined that the recognized string for the given zone is certainly acceptable. |
The enumeration is used by: