ParsedResult Class
ParsedResult class stores all parsed result items that are obtained from a single image. It carries additional information such as the original image data or error messages.
Definition
Namespace: com.dynamsoft.dcp
Assembly: DynamsoftCaptureVisionBundle.aar
class ParsedResult
| Method | Description |
|---|---|
getItems |
Gets the parsed 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 the parsed result item at the specified index.
ParsedResultItem[] getItems();
Return value
Returns an array of ParsedResultItem.
See Also