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
@interface DSParsedResult : NSObjectclass 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
@property (nonatomic, nullable, readonly) NSArray<DSParsedResultItem*>* items;var items: [ParsedResultItem]? { get }
Return value
Returns an array of ParsedResultItem.