MLDocumentTextParagraph
interface
A structural unit of text representing a number of words in certain order.
Properties
confidence
</>The confidence of the recognized text. It only return valid result from cloud recognizers. For on-device text recognition, the confidence is always null.
confidence: null | number;
recognizedBreak
</>Gets the recognized break - the detected start or end of a structural component.
recognizedBreak: MLDocumentTextRecognizedBreak;
recognizedLanguages
</>Gets a list of recognized languages. (Cloud API only. On-Device returns empty array)
recognizedLanguages: string[];
text
</>Gets the recognized text as a string. Returned in reading order for the language. For Latin, this is top to bottom within a MLTextBlock
, and left-to-right within a MLTextLine
.
text: string;
words
</>Gets an Array of MLDocumentTextWord
s that make up this paragraph.
words: MLDocumentTextWord[];