CapturedResultBase
The CapturedResultBase class is the base class of all types of captured results.
Definition
Namespace: com.dynamsoft.core.basic_structures
Assembly: DynamsoftCaptureVisionBundle.aar
class CapturedResultBase
Methods
| 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. |
getOriginalImageHashId
Gets the hash id of the original image.
String getOriginalImageHashId();
Return Value
The hash id of the original image.
getOriginalImageTag
Gets the ImageTag of the original image.
ImageTag getOriginalImageTag();
Return Value
The tag of the original image.
getRotationTransformMatrix
Gets the rotation transformation matrix of the original image relative to the rotated image.
Matrix getRotationTransformMatrix();
Return Value
The rotation transformation matrix of the original image relative to the rotated image, of type Matrix.
getErrorCode
Gets the error code of this result.
int getErrorCode();
Return Value
The error code of this result.
getErrorMessage
Gets the error message of this result.
String getErrorMessage();
Return Value
The error message of this result.