Table of contents

DSCapturedResultBase

The DSCapturedResultBase class is the base class of all types of captured results.

Definition

Assembly: DynamsoftCaptureVisionBundle.xcframework

  • Objective-C
  • Swift
  1. @interface DSCapturedResultBase : NSObject
    
  2. class 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
  1. @property (nonatomic, copy, readonly) NSString *originalImageHashId;
    
  2. var originalImageHashId: String { get }
    

originalImageTag

The DSImageTag of the original image.

  • Objective-C
  • Swift
  1. @property (nonatomic, readonly, strong, nullable) DSImageTag *originalImageTag;
    
  2. var originalImageTag: ImageTag { get }
    

rotationTransformMatrix

The rotation transformation matrix of the original image relative to the rotated image.

  • Objective-C
  • Swift
  1. @property (nonatomic, assign, readonly) CGAffineTransform rotationTransformMatrix;
    
  2. var rotationTransformMatrix: CGAffineTransform { get }
    

errorCode

The error code of this result.

  • Objective-C
  • Swift
  1. @property (nonatomic, assign, readonly) NSInteger errorCode;
    
  2. var errorCode: Int { get }
    

errorMessage

The error message of this result.

  • Objective-C
  • Swift
  1. @property (nonatomic, readonly, copy, nullable) NSString * errorMessage;
    
  2. var errorMessage: String { get }
    

This page is compatible for:

Is this page helpful?

YesYes NoNo

In this article: