Skip to content

Latest commit

 

History

History
64 lines (44 loc) · 2.46 KB

File metadata and controls

64 lines (44 loc) · 2.46 KB
layout title description keywords needGenerateH3Content needAutoGenerateSidebar noTitleIndex
default-layout
IntermediateResultExtraInfo - Dynamsoft Core Module Android Edition API Reference
The class IntermediateResultExtraInfo of Dynamsoft Core Module represents the extra information for generating an intermediate result unit, which contains the name of the TargetROIDef object, the name of the task object, whether the intermediate result is section-level result, and the type of the section that generates the intermediate result.
intermediate result extra info, Java, Kotlin
true
true
true

IntermediateResultExtraInfo

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

Namespace: com.dynamsoft.core.intermediate_results

Assembly: DynamsoftCore.aar

class IntermediateResultExtraInfo

Attributes

Attributes Type Description
targetROIDefName String The property indicates the name of the [TargetROIDef]({{ site.dcv_parameters_reference }}target-roi-def/) object that generates the intermediate result.
taskName String The property indicates the name of the processing task to which this result belongs.
isSectionLevelResult boolean The property indicates whether the result is at the section level.
sectionType [EnumSectionType]({{ site.dcv_enumerations }}core/section-type.html?lang=android) The property indicates the type of section that generates the result, if applicable, as defined by the enumeration EnumSectionType.

targetROIDefName

The name of the [TargetROIDef]({{ site.dcv_parameters_reference }}target-roi-def/) object that generates the intermediate result.

String targetROIDefName;

taskName

The name of the processing task to which this result belongs.

String taskName;

isSectionLevelResult

The property indicates whether the result is at the section level.

boolean isSectionLevelResult;

sectionType

The type of section that generates the result, if applicable, as defined by the enumeration [EnumSectionType]({{ site.dcv_enumerations }}core/section-type.html?lang=android).

EnumSectionType sectionType;