TTMSFNCWXOCRResult Class
Holds the full outcome of a completed recognition job, including the recognized plain text, alternative export formats, the overall confidence, and the recognized paragraphs, lines, and words.
API unit family: TMSFNCWXOCR
Inherits from: TPersistent
Syntax
TTMSFNCWXOCRResult = class(TPersistent)
Properties
| Name | Description |
|---|---|
| Confidence | Indicates the overall recognition confidence for the result, as a percentage value where higher numbers mean greater certainty. |
| Hocr | Holds the recognized text in hOCR format, an HTML-based markup that embeds layout and position information. |
| ID | Holds the user-supplied identifier passed when the recognition job was started, allowing the result to be matched to the originating request. |
| JSONstring | Holds the raw JSON payload returned by the recognition engine, useful for accessing data that is not exposed through dedicated properties. |
| JobID | Identifies the recognition job that produced this result. |
| Lines | Lists every recognized line across the whole result, in reading order. |
| Paragraphs | Lists the recognized paragraphs in reading order. |
| Text | Holds the complete recognized text as a single plain-text string. |
| Tsv | Holds the recognized text in a tab-separated values representation. |
| Words | Lists every recognized word across the whole result, in reading order. |