CapturedResultBase
The CapturedResultBase class serves as a base class for all captured result types. It is an abstract base class with multiple subclasses, each representing a different type of captured result..
Definition
Package: com.dynamsoft.core.basic_structures
public class CapturedResultBase
Methods
| Method | Description |
|---|---|
getOriginalImageHashId |
Gets the hash ID of the original image. |
getOriginalImageTag |
Gets the tag of the original image. |
getRotationTransformMatrix |
Gets the 3x3 rotation transformation matrix of the original image relative to the rotated image. |
getErrorCode |
Gets the error code of the capture operation. |
getErrorString |
Gets the error message of the capture operation. |
getOriginalImageHashId
Gets the hash ID of the original image.
public String getOriginalImageHashId()
Return Value
Returns the hash ID of the original image as a string.
getOriginalImageTag
Gets the tag of the original image.
public ImageTag getOriginalImageTag()
Return Value
Returns an ImageTag object containing the tag of the original image.
See Also
getRotationTransformMatrix
Gets the 3x3 rotation transformation matrix of the original image relative to the rotated image.
public double[] getRotationTransformMatrix()
Return Value
Returns a double array of length 9 which represents a 3x3 rotation matrix.
getErrorCode
Gets the error code of the capture operation.
public int getErrorCode()
Return Value
Returns the error code of the capture operation.
See Also
getErrorString
Gets the error message of the capture operation.
public String getErrorString()
Return Value
Returns the error message of the capture operation as a string.