DSCapturedResultBase
The DSCapturedResultBase class is the base class of all types of captured results.
Definition
Assembly: DynamsoftCaptureVisionBundle.xcframework
- Objective-C
- Swift
@interface DSCapturedResultBase : NSObjectclass CapturedResultBase : NSObject
Attributes
| Attributes | Type | Description |
|---|---|---|
originalImageHashId |
NSString * | The hash id of the original image. |
originalImageTag |
DSImageTag * | The DSImageTag of the original image. |
rotationTransformMatrix |
CGAffineTransform | The rotation transformation matrix of the original image relative to the rotated image. |
errorCode |
NSInteger | Get the error code of this result. |
errorMessage |
NSString * | Get the error message of this result. |
originalImageHashId
The hash id of the original image.
- Objective-C
- Swift
@property (nonatomic, copy, readonly) NSString *originalImageHashId;var originalImageHashId: String { get }
originalImageTag
The DSImageTag of the original image.
- Objective-C
- Swift
@property (nonatomic, readonly, strong, nullable) DSImageTag *originalImageTag;var originalImageTag: ImageTag { get }
rotationTransformMatrix
The rotation transformation matrix of the original image relative to the rotated image.
- Objective-C
- Swift
@property (nonatomic, assign, readonly) CGAffineTransform rotationTransformMatrix;var rotationTransformMatrix: CGAffineTransform { get }
errorCode
The error code of this result.
- Objective-C
- Swift
@property (nonatomic, assign, readonly) NSInteger errorCode;var errorCode: Int { get }
errorMessage
The error message of this result.
- Objective-C
- Swift
@property (nonatomic, readonly, copy, nullable) NSString * errorMessage;var errorMessage: String { get }