ComplementedBarcodeImageUnit Class
The ComplementedBarcodeImageUnit class represents a unit that contains complemented barcode image data. It inherits from the IntermediateResultUnit class.
Definition
Package: com.dynamsoft.dbr.intermediate_results
Inheritance: IntermediateResultUnit -> ComplementedBarcodeImageUnit
public class ComplementedBarcodeImageUnit extends IntermediateResultUnit
Methods
| Method | Description |
|---|---|
getImageData |
Gets the complemented barcode image data. |
getLocation |
Gets the location of the complemented barcode in a quadrilateral. |
setLocation |
Sets the location of the complemented barcode in a quadrilateral. |
getImageData
Gets the complemented barcode image data.
public ImageData getImageData()
Return value
Returns the complemented image of the barcode.
See Also
getLocation
Gets the location of the complemented barcode in a quadrilateral.
public Quadrilateral getLocation()
Return value
Returns the location of the complemented barcode in a quadrilateral.
See Also
setLocation
Sets the location of the complemented barcode in a quadrilateral.
public void setLocation(Quadrilateral location)
public void setLocation(Quadrilateral location, double[] matrixToOriginalImage)
Parameters
location The location of the complemented barcode.
matrixToOriginalImage The matrix to original image. The array length must be 9.
Exceptions
IllegalArgumentException If the matrixToOriginalImage array length is not 9.
See Also