IntermediateResultExtraInfo
The IntermediateResultExtraInfo
structure represents the extra information for generating an intermediate result unit.
Definition
Assembly: DynamsoftCore
typedef struct IntermediateResultExtraInfo
{
const char* targetROIDefName;
const char* taskName;
bool isSectionLevelResult;
SectionType sectionType;
char reserved[64];
}IntermediateResultExtraInfo;
Attributes Summary
Attribute | Type |
---|---|
targetROIDefName |
const char* |
taskName |
const char* |
isSectionLevelResult |
bool |
sectionType |
SectionType |
reserved |
char[64] |
targetROIDefName
Specifies the name of the TargetROIDef object that generates the intermediate result.
const char* targetROIDefName
taskName
Specifies the name of the task that generates the intermediate result.
const char* taskName
isSectionLevelResult
Specifies whether the intermediate result is section-level result.
bool isSectionLevelResult
sectionType
Specifies the SectionType that generates the intermediate result.
SectionType sectionType
See Also
reserved
Reserved for future use.
char reserved[64]