ExtendedBarcodeResult
ExtendedBarcodeResult extends the DecodedBarcodeElement class and represents extended information about a barcode result.
Definition
Assembly: DynamsoftCaptureVisionBundle.aar
Namespace: com.dynamsoft.dbr.intermediate_results
class ExtendedBarcodeResult extends DecodedBarcodeElement
Methods
| Method | Description |
|---|---|
getExtendedBarcodeResultType |
Returns the type of the extended barcode result. |
getDeformation |
Returns the deformation level of the barcode zone. |
getClarity |
Returns the clarity score of the barcode zone. |
getSamplingImage |
Returns the sampling image of the barcode zone. |
The following methods are inherited from class DecodedBarcodeElement.
| Method | Description |
|---|---|
getText |
Returns the text of the decoded barcode. |
setText |
Set the text of the decoded barcode. |
getBytes |
Returns the raw bytes of the decoded barcode. |
setBytes |
Set the raw bytes of the decoded barcode. |
isDPM |
Specifies if the decoded barcode is a DPM code or not. |
isMirrored |
Specifies if the decoded barcode is mirrored or not. |
getFormat |
Returns the format of the decoded barcode. |
setFormat |
Set the format of the decoded barcode. |
getFormatString |
Returns the format of the decode barcode as a string. |
getAngle |
Returns the orientation angle of the barcode. |
getModuleSize |
Returns the module size of the decoded barcode. |
getConfidence |
Returns the confidence score of the decoded barcode. |
setConfidence |
Set the confidence score of the barcode recognition result. |
getDetails |
Returns the BarcodeDetails of the decoded barcode. |
getExtendedBarcodeResults |
Returns the extended barcode results of the decoded barcode. |
The following methods are inherited from class RegionObjectElement.
| Method | Description |
|---|---|
getLocation |
Gets the location of the region object, represented as a Quadrilateral. |
setLocation |
Sets the location of the region object, represented as a Quadrilateral. |
getReferencedElement |
Gets the referenced element that supports the capturing of this element. |
getRegionObjectElementType |
The type of the region object element, defined by the enumeration EnumRegionObjectElementType. |
getExtendedBarcodeResultType
Returns the type of the extended barcode result as a ExtendedBarcodeResultType enumeration item.
@EnumExtendedBarcodeResultType
int getExtendedBarcodeResultType();
Return Value
A EnumExtendedBarcodeResultType item representing the extended barcode result type.
getDeformation
Returns the degree of deformation or distortion of the decoded barcode.
int getDeformation();
Return Value
An integer representing the deformation level of the barcode zone.
getClarity
Returns the clarity/quality level of the decoded barcode.
int getClarity();
Return Value
An integer representing the clarity/quality level of the barcode zone.
getSamplingImage
Returns the sampling image of the decoded barcode as a ImageData object.
ImageData getSamplingImage();
Return Value
An ImageData object representing the sampling image of the barcode zone.