RecognizedTextLinesResult
The RecognizedTextLinesResult
interface represents the result of a text recognition process. It provides access to information about the recognized text lines, the original image, and any errors that occurred during the recognition process.
interface RecognizedTextLinesResult {
textLinesResultItems: Array<TextLineResultItem>;
}
textLinesResultItems
All the recognized text line result items.
textLinesResultItems: Array<TextLineResultItem>;
See Also