Recognition character data position information.
enum
{
L_OcrCharacterPositions_None = 0,
L_OcrCharacterPositions_EndOfLine = 1 << 0,
L_OcrCharacterPositions_EndOfParagraph = 1 << 1,
L_OcrCharacterPositions_EndOfWord = 1 << 2,
L_OcrCharacterPositions_EndOfZone = 1 << 3,
L_OcrCharacterPositions_EndOfPage = 1 << 4,
L_OcrCharacterPositions_EndOfCell = 1 << 5,
};
typedef L_UINT L_OcrCharacterPositions;
None.
This is the last character in a line.
This is the last character in a paragraph.
This is the last character of a word.
This is the last character in a zone.
This is the last character on a page.
This is the last character in a cell. (applicable only for L_OcrZoneType_Table type zones).
This enumerated type is used by the following structure:
Since the recognition character data does not contain extra characters for marking the ends of lines, paragraphs, pages, etc, these pieces of information are stored for the particular characters in the L_OcrCharacter.Positions.
The values of L_OcrCharacterPositions can be combined together (OR-ed).