RecognizedTextLinesResult
The RecognizedTextLinesResult class represents the overall result(s) 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: com.dynamsoft.dlr
Assembly: DynamsoftCaptureVisionBundle.aar
class RecognizedTextLinesResult extends CapturedResultBase
Methods
| Method | Description |
|---|---|
getItems |
Gets the text line result item at the specified index. |
The following methods are inherited from CapturedResultBase:
| Method | Description |
|---|---|
getOriginalImageHashId |
Gets the hash id of the original image. |
getOriginalImageTag |
Gets the ImageTag of the original image. |
getRotationTransformMatrix |
Gets the rotation transformation matrix of the original image relative to the rotated image. |
getErrorCode |
Gets the error code of this result. |
getErrorMessage |
Gets the error message of this result. |
getItems
Gets all the text line result(s) recognized from the image/frame in an array of DSTextLineResultItem.
TextLineResultItem[] getItems();
Return value
Returns an array of TextLineResultItem that contains all text line recognition results.