CapturedResultItem
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
Namespace: com.dynamsoft.core.basic_structures
Assembly: DynamsoftCore.aar
class CapturedResultItem
Methods
Method | Description |
---|---|
getType |
Get the type of the captured result item, indicating what kind of data it represents. |
getReferenceItem |
Get a property of type CapturedResultItem that represents a reference to another captured result item. |
getTargetROIDefName |
Gets the name of the TargetROIDef object which includes a task that generated the result. |
getTaskName |
The name of the task that generated the result. |
getType
Get the type of the captured result item, indicating what kind of data it represents.
EnumCapturedResultItemType getType();
Return Value
The type of the captured result item.
getReferenceItem
Get a property of type CapturedResultItem
that represents a reference to another captured result item.
CapturedResultItem getReferenceItem();
Return Value
The referenced captured result item.
getTargetROIDefName
Gets the name of the TargetROIDef
object which includes a task that generated the result.
String getTargetROIDefName();
Return Value
The name of the TargetROIDef
object.
getTaskName
The name of the task that generated the result.
String getTaskName();
Return Value
The name of the task.