CandidateBarcodeZone Class
The CandidateBarcodeZone class represents a candidate zone for barcode detection.
Definition
Namespace: Dynamsoft.DBR.intermediate_results
class CandidateBarcodeZone
Methods
| Method | Description |
|---|---|
CandidateBarcodeZone |
Constructs a CandidateBarcodeZone object with default parameters. |
CandidateBarcodeZone(Quadrilateral location, ulong possibleFormats) |
Constructs a CandidateBarcodeZone object with the specified parameters. |
GetLocation |
Gets the location of the candidate barcode. |
SetLocation |
Sets the location of the candidate barcode. |
GetPossibleFormats |
Gets the posssible formats of the candidate barcode. |
SetPossibleFormats |
Sets the posssible formats of the candidate barcode. |
CandidateBarcodeZone Constructor
Constructs a CandidateBarcodeZone object with the specified parameters.
CandidateBarcodeZone();
CandidateBarcodeZone(Quadrilateral location, ulong possibleFormats);
Parameters
location The location of the candidate barcode.
possibleFormats The posssible formats of the candidate barcode.
See Also
GetLocation
Gets the location of the candidate barcode.
Quadrilateral GetLocation()
Return value
Returns the location of the candidate barcode.
See Also
SetLocation
Sets the location of the candidate barcode.
void SetLocation(Quadrilateral loc)
Parameters
loc The location of the candidate barcode.
See Also
GetPossibleFormats
Gets the posssible formats of the candidate barcode.
ulong GetPossibleFormats()
Return value
Returns the posssible formats of the candidate barcode.
See Also
SetPossibleFormats
Sets the posssible formats of the candidate barcode.
void SetPossibleFormats(ulong formats)
Parameters
formats The posssible formats of the candidate barcode.
See Also