Resource Base
Table of contents

DSParsedResult Class

DSParsedResult class stores all parsed result items that are obtained from a single image. It carries additional information such as the original image data or error messages.

Definition

Assembly: DynamsoftCaptureVisionBundle.xcframework

  • Objective-C
  • Swift
  1. @interface DSParsedResult : NSObject
    
  2. class ParsedResult : NSObject
    

Property Summary

Property Type Description
items NSArray<DSParsedResultItem> ** Gets the parsed result item at the specified index.

The following attributes are inherited from DSCapturedResultBase:

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.

Method Detail

items

Gets the parsed result item at the specified index.

  • Objective-C
  • Swift
  1. @property (nonatomic, nullable, readonly) NSArray<DSParsedResultItem*>* items;
    
  2. var items: [ParsedResultItem]? { get }
    

Return value

Returns an array of ParsedResultItem.

This page is compatible for:

Is this page helpful?

YesYes NoNo

In this article: