DecodedBarcodesResult Class
DecodedBarcodesResult represents a collection of BarcodeResultItems, the basic unit of a decoded barcode result. It provides access to information about the decoded barcodes of an image/frame, the source image/frame, and any errors that occurred during the barcode reading process.
Definition
Assembly: DynamsoftCaptureVisionBundle.aar
Namespace: com.dynamsoft.dbr
class DecodedBarcodesResult extends CapturedResultBase
Methods
| Method | Description |
|---|---|
DecodedBarcodesResult |
The constructor. |
getItems |
Returns an array of BarcodeResultItem, which is the basic unit of the captured results. |
The following methods are inherited from CapturedResultBase:
| Method | Description |
|---|---|
getOriginalImageHashId |
Gets the hash id of the original image. |
getOriginalImageTag |
Gets the ImageTag of the original image. |
getRotationTransformMatrix |
Gets the rotation transformation matrix of the original image relative to the rotated image. |
getErrorCode |
Gets the error code of this result. |
getErrorMessage |
Gets the error message of this result. |
DecodedBarcodesResult
The constructor.
DecodedBarcodesResult();
getItems
Returns an array of BarcodeResultItem, which is the basic unit of the captured results.
BarcodeResultItem[] getItems();
Return Value
An array of BarcodeResultItems.