DSIntermediateResultExtraInfo
The IntermediateResultExtraInfo
class represents the extra information associated with an intermediate result. It includes properties such as the target ROI definition name, task name, section level result indicator, and section type.
Definition
Assembly: DynamsoftCore.xcframework
- Objective-C
- Swift
@interface DSIntermediateResultExtraInfo : NSObject
class IntermediateResultExtraInfo : NSObject
Attributes
Attributes | Type | Description |
---|---|---|
targetROIDefName |
NSString * | The name of the TargetROIDef object that generates the intermediate result. |
taskName |
NSString * | The property indicates the name of the processing task to which this result belongs. |
isSectionLevelResult |
bool * | The property indicates whether the result is at the section level. |
sectionType |
DSSectionType | The property indicates the type of section that generates the result, if applicable, as defined by the enumeration DSSectionType . |
targetROIDefName
The name of the TargetROIDef
object that generates the intermediate result.
- Objective-C
- Swift
@property(nonatomic, copy, readonly) NSString *targetROIDefName;
var targetROIDefName: String { get }
taskName
The name of the processing task to which this result belongs.
- Objective-C
- Swift
@property(nonatomic, copy, readonly) NSString *taskName;
var taskName: String { get }
isSectionLevelResult
The property indicates whether the result is at the section level.
- Objective-C
- Swift
@property(nonatomic, assign, readonly) bool *isSectionLevelResult;
var isSectionLevelResult: Bool { get }
sectionType
The type of section that generates the result, if applicable, as defined by the enumeration DSSectionType
.
- Objective-C
- Swift
@property(nonatomic, assign, readonly) DSSectionType sectionType;
var sectionType: EnumSectionType { get }