ExtendedBarcodeResult Class
The ExtendedBarcodeResult class represents an extended barcode result in a decoded barcode element. It contains information such as the type of extended barcode, deformation, clarity, and a sampling image of the barcode.
Definition
Package: com.dynamsoft.dbr.intermediate_results
Inheritance: DecodedBarcodeElement -> ExtendedBarcodeResult
public class ExtendedBarcodeResult extends DecodedBarcodeElement
Methods
| Method | Description |
|---|---|
getExtendedBarcodeResultType |
Gets the type of extended barcode result. |
getDeformation |
Gets the deformation of the barcode. |
getClarity |
Gets the clarity of the barcode. |
getSamplingImage |
Gets the sampling image of the barcode. |
getExtendedBarcodeResultType
Gets the type of extended barcode result.
public @EnumExtendedBarcodeResultType int getExtendedBarcodeResultType()
Return value
Returns the type of the extended barcode result. This is one of the values of the EnumExtendedBarcodeResultType enumeration.
See Also
getDeformation
Gets the deformation of the barcode.
public int getDeformation()
Return value
Returns the deformation of the barcode.
getClarity
Gets the clarity of the barcode.
public int getClarity()
Return value
Returns the clarity of the barcode.
getSamplingImage
Gets the sampling image of the barcode.
public ImageData getSamplingImage()
Return value
Returns an ImageData object representing the sampling image of the barcode.
See Also