Skip to content

Latest commit

 

History

History
80 lines (52 loc) · 2.3 KB

File metadata and controls

80 lines (52 loc) · 2.3 KB
layout title description keywords needGenerateH3Content needAutoGenerateSidebar noTitleIndex
default-layout
CapturedResultItem - Dynamsoft Core Module Android Edition API Reference
The class CapturedResultItem of Dynamsoft Core Module represents an item in a captured result, such as barcode, text line, detected quad, normalized image, original image, parsed item, etc.
captured result item, Java, Kotlin
true
true
true

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.
getReferencedItem Get a property of type CapturedResultItem that represents a reference to another captured result item.
getTargetROIDefName Gets the name of the [TargetROIDef]({{ site.dcv_parameters_reference }}target-roi-def/) 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.

getReferencedItem

Get a property of type CapturedResultItem that represents a reference to another captured result item.

CapturedResultItem getReferencedItem();

Return Value

The referenced captured result item.

getTargetROIDefName

Gets the name of the [TargetROIDef]({{ site.dcv_parameters_reference }}target-roi-def/) object which includes a task that generated the result.

String getTargetROIDefName();

Return Value

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

getTaskName

The name of the task that generated the result.

String getTaskName();

Return Value

The name of the task.