CapturedResultBase
The CapturedResultBase class is the base class of all types of captured results.
Sub classes:
- Barcode:
DecodedBarcodesResult- Text line:
RecognizedTextLinesResult- Document page(s):
ProcessedDocumentResult- Parsed content (DL, MRZ, VIN, GS1 AI, etc.):
ParsedResult
Definition
Assembly: dynamsoft_capture_vision_flutter
class CapturedResultBase
Properties
| Properties | Types | Description |
|---|---|---|
originalImageHashId |
String | The hash id of the original image. |
rotationTransformMatrix |
Matrix4 | The rotation transformation matrix of the original image relative to the rotated image. |
errorCode |
int | The error code of this result. |
errorMessage |
String | The error message of this result. |
originalImageHashId
The hash id of the original image.
String originalImageHashId;
rotationTransformMatrix
The rotation transformation matrix of the original image relative to the rotated image.
Matrix4 rotationTransformMatrix;
errorCode
The error code of this result.
int errorCode;
errorMessage
The error message of this result.
String? errorMessage;