RecognizedTextLinesResult
The RecognizedTextLinesResult class 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.
Definition
Namespace: Dynamsoft.DLR
Inheritance: CapturedResultBase -> RecognizedTextLinesResult
public class RecognizedTextLinesResult : CapturedResultBase, IEnumerable<TextLineResultItem>
Methods
| Method | Description |
|---|---|
GetItems |
Gets all the text line result items. |
GetItemsCount |
Gets the number of text line result items in current result object. |
GetItem |
Gets a specific text line result item. |
GetItems
Gets all the text line result items.
TextLineResultItem GetItems()
Return Value
Returns a TextLineResultItem array.
See Also
GetItemsCount
Gets the number of text line result items in current result object.
int GetItemsCount()
Return value
Returns the number of text line result items in current result object.
GetItem
Gets a specific text line result item.
TextLineResultItem GetItem(int index)
Parameters
[in] index The index of specific text line result item.
Return value
Returns the specific text line result item.
See Also