Thanks for downloading Dynamsoft Barcode Reader Package!
Your download will start shortly. If your download does not begin, click here to retry.
The LocalizationResult
extends the class TextResult
and IntermediateResult
. It stores the barcode localization data.
class com.dynamsoft.dbr.LocalizationResult;
Attribute | Type | Descriptions |
---|---|---|
terminatePhase |
int | The terminate phase of localization result. |
barcodeFormat |
int | Barcode type in BarcodeFormat group 1. |
barcodeFormatString |
String | Barcode type in BarcodeFormat group 1 as string. |
barcodeFormat_2 |
int | Barcode type in BarcodeFormat group 2. |
barcodeFormatString_2 |
String | Barcode type in BarcodeFormat group 2 as string. |
resultPoints |
Point [] |
The vertices coordinates information of the barcode region. |
angle |
int | The angle of a barcode. Values range is from 0 to 360. |
moduleSize |
int | The barcode module size (the minimum bar width in pixel). |
pageNumber |
int | The page number the barcode located in. The index is 0-based. |
regionName |
String | The region name the barcode located in. |
documentName |
String | The document name. |
resultCoordinateType |
int | The coordinate type. |
accompanyingTextBytes |
byte[] | The accompanying text content in a byte array. |
confidence |
int | The confidence of the localization result. |
The terminate phase of localization result.
int terminatePhase
Value Range
Any one of the EnumTerminatePhase
Enumeration items
Default Value
TP_BARCODE_RECOGNIZED
Remarks
When the recognition result is not desired, you can set this parameter can be set to skip certain processing stages.
See Also
Barcode type in BarcodeFormat group 1.
int barcodeFormat
Value Range
One of the EnumBarcodeFormat
Enumeration value.
See Also
EnumBarcodeFormat
, EnumBarcodeFormat_2
Barcode type in BarcodeFormat group 1 as string.
String barcodeFormatString
Value Range
One of the barcode type in EnumBarcodeFormat
.
See Also
EnumBarcodeFormat
, EnumBarcodeFormat_2
Barcode type in BarcodeFormat group 2.
int barcodeFormat_2
Value Range
One of the EnumBarcodeFormat_2
Enumeration items
See Also
EnumBarcodeFormat
, EnumBarcodeFormat_2
Barcode type in BarcodeFormat group 2 as string.
String barcodeFormatString_2
Value Range
One of the barcode type in EnumBarcodeFormat_2
.
See Also
EnumBarcodeFormat
, EnumBarcodeFormat_2
The vertices coordinates information of the barcode region.
Point[] resultPoints
Related Class
Class Point
.
The angle of a barcode. Values range is from 0 to 360.
int angle
The barcode module size (the minimum bar width in pixel).
int moduleSize
The page number the barcode located in. The index is 0-based. Only available when decoding files.
int pageNumber
The region name the barcode located in.
String regionName
The document name. Only available when decoding files.
String documentName
The coordinate type.
int resultCoordinateType
The accompanying text content in a byte array.
byte[] accompanyingTextBytes
The confidence of the localization result.
int confidence
latest version