ABBYY Mobile OCR Engine 4

Go to: Contents | Native Library API Reference | Structures

CFineTextLine Structure

This structure describes a line of the recognized text.

C Syntax
typedef struct tagCFineTextLine {
    CFineTextCharacter* Chars;
    int                 CharCount;
    CFineWordInfo*      Words;
    int                 WordsCount;
    RECT                Rect;  
    int                 BaseLine;
} CFineTextLine;

Fields

Name Type Description
BaseLine int Stores the coordinate of the base line.
Chars CFineTextCharacter* Stores a pointer to characters buffer.
CharCount int Stores the number of characters in the line.
Rect RECT Stores the bounding rectangle of the line.
Note: For barcode recognition this field is empty.
Words CFineWordInfo* Stores a pointer to an array of the CFineWordInfo objects with the word information structures. This field is available if the FIPO_BuildWordsInfo flag is passed to the recognition function.
WordsCount int Stores the number of elements in the Words field.

See also

CFineBarcode
CFineWordInfo
CFineTextCharacter