Resource Base
Table of contents

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
  1. @interface DSCapturedResultItem : NSObject
    
  2. 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
  1. @property (nonatomic, readonly) DSCapturedResultItemType type
    
  2. var type: DSCapturedResultItemType { get }
    

referenceItem

A property of type DSCapturedResultItem that represents a reference to another captured result item.

  • Objective-C
  • Swift
  1. @property (nonatomic, nullable, readonly) DSCapturedResultItem *referenceItem
    
  2. var referenceItem: DSCapturedResultItem? { get }
    

targetROIDefName

The name of the TargetROIDef object which includes a task that generated the result.

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

taskName

The name of the task that generated the result.

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

This page is compatible for:

Is this page helpful?

YesYes NoNo

In this article:

latest version

    Change +