CapturedResultBase
Interface CapturedResultBase is the base interface of all types of captured results.
Hierarchy:
Definition
Assembly: dynamsoft-capture-vision-react-native
interface CapturedResultBase
Properties
| Properties | Types | Description |
|---|---|---|
originalImageHashId |
string | The hash id of the original image. |
rotationTransformMatrix |
number[] | The rotation transformation matrix of the original image relative to the rotated image. |
errorCode |
number | The error code of this result. |
errorMessage |
string | The error message of this result. |
originalImageHashId
The hash id of the original image.
originalImageHashId: string;
rotationTransformMatrix
The rotation transformation matrix of the original image relative to the rotated image.
rotationTransformMatrix: number[];
errorCode
The error code of this result.
errorCode: number;
errorMessage
The error message of this result.
errorMessage: string;