DLR_Result
Stores the recognized result.
typedef struct tagDLR_Result DLR_Result
typedef struct tagDLR_Result* PDLR_Result
Attributes
Attribute | Type |
---|---|
referenceRegionName |
const char * |
textAreaName |
const char * |
location |
Quadrilateral |
confidence |
int |
lineResultsCount |
int |
lineResults |
PDLR_LineResult * |
pageNumber |
int |
reserved |
char[60] |
referenceRegionName
The name of the reference region which is used to recognize the current result.
const char* referenceRegionName
textAreaName
The name of the text area used to recognize current result.
const char* textAreaName
location
The location of current recognized text.
Quadrilateral location
confidence
The confidence of the result. It ranges from 0 to 100.
int confidence
lineResultsCount
The line result count.
int lineResultsCount
lineResults
The line results array.
PDLR_LineResult* lineResults
pageNumber
The page number the result located in. The index is 0-based.
int pageNumber
reserved
Reserved memory for the struct. The length of this array indicates the size of the memory reserved for this struct.
char reserved[60]