ComplementedBarcodeImageUnit Class
The ComplementedBarcodeImageUnit class represents a unit that contains complemented barcode image data. It inherits from the IntermediateResultUnit class.
Definition
Namespace: Dynamsoft.DBR.intermediate_results
Inheritance: IntermediateResultUnit -> ComplementedBarcodeImageUnit
class ComplementedBarcodeImageUnit : 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. |
Inherited Methods
Checkout inherited methods from IntermediateResultUnit for more details.
GetImageData
Gets the complemented barcode image data.
ImageData GetImageData()
Return value
Returns the complemented image of the barcode.
See Also
GetLocation
Gets the location of the complemented barcode in a quadrilateral.
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.
int SetLocation(Quadrilateral location, double[] matrixToOriginalImage = null)
Parameters
location The location of the complemented barcode.
matrixToOriginalImage The matrix to original image.
Return value
Returns 0 if successful, otherwise returns a negative value.
See Also