CandidateBarcodeZone Class
The CandidateBarcodeZone class represents a candidate zone for barcode detection.
Definition
Package: com.dynamsoft.dbr.intermediate_results
public class CandidateBarcodeZone
Constructors
| Constructor | Description |
|---|---|
CandidateBarcodeZone() |
Initializes a new instance of the CandidateBarcodeZone class. |
Methods
| Method | Description |
|---|---|
getLocation |
Gets the location of the candidate barcode. |
setLocation |
Sets the location of the candidate barcode. |
getPossibleFormats |
Gets the possible formats of the candidate barcode. |
setPossibleFormats |
Sets the possible formats of the candidate barcode. |
Constructor Details
CandidateBarcodeZone
Initializes a new instance of the CandidateBarcodeZone class.
public CandidateBarcodeZone()
Method Details
getLocation
Gets the location of the candidate barcode.
public Quadrilateral getLocation()
Return Value
Returns the location of the candidate barcode.
See Also
setLocation
Sets the location of the candidate barcode.
public void setLocation(Quadrilateral location)
Parameters
location: The location of the candidate barcode.
See Also
getPossibleFormats
Gets the possible formats of the candidate barcode.
public long getPossibleFormats()
Return Value
Returns the possible formats of the candidate barcode.
See Also
setPossibleFormats
Sets the possible formats of the candidate barcode.
public void setPossibleFormats(long possibleFormats)
Parameters
possibleFormats: The possible formats of the candidate barcode.
See Also