IntermediateResultExtraInfo
The IntermediateResultExtraInfo
interface 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.
interface IntermediateResultExtraInfo {
isSectionLevelResult: boolean;
sectionType: EnumSectionType;
targetROIDefName: string;
taskName: string;
};
isSectionLevelResult
Indicates whether the result is at the section level.
sectionType
The type of section, if applicable, as defined by an enumeration.
See Also
targetROIDefName
The name of the target Region Of Interest (ROI) definition.
taskName
The name of the processing task to which this result belongs.