DSCapturedResultItem
The CapturedResultItem
class provides a common structure for representing different types of captured results. Each specific captured result item type will have its own implementation and additional properties specific to that type.
Definition
Assembly: DynamsoftCore.xcframework
- Objective-C
- Swift
@interface DSCapturedResultItem : NSObject
class CapturedResultItem : NSObject
Attributes
Attributes | Type | Description |
---|---|---|
type |
DSCapturedResultItemType | The type of the captured result item, indicating what kind of data it represents. |
referenceItem |
DSCapturedResultItem * | A property of type DSCapturedResultItem that represents a reference to another captured result item. |
targetROIDefName |
NSString | The name of the TargetROIDef object which includes a task that generated the result. |
taskName |
NSString | The name of the task that generated the result. |
type
The type of the captured result item, indicating what kind of data it represents.
- Objective-C
- Swift
@property (nonatomic, readonly) DSCapturedResultItemType type
var type: CapturedResultItemType { get }
referenceItem
A property of type DSCapturedResultItem
that represents a reference to another captured result item.
- Objective-C
- Swift
@property (nonatomic, nullable, readonly) DSCapturedResultItem *referenceItem
var referenceItem: DSCapturedResultItem? { get }
targetROIDefName
The name of the TargetROIDef
object which includes a task that generated the result.
- Objective-C
- Swift
@property (nonatomic, nullable, readonly) NSString *targetROIDefName
var targetROIDefName: String? { get }
taskName
The name of the task that generated the result.
- Objective-C
- Swift
@property (nonatomic, nullable, readonly) NSString *taskName
var taskName: String? { get }