CCandidateBarcodeZone Class
The CCandidateBarcodeZone
class represents a candidate zone for barcode detection.
Definition
Namespace: dynamsoft::dbr::intermediate_results
Assembly: DynamsoftBarcodeReader
class CCandidateBarcodeZone
Methods
Method | Description |
---|---|
CCandidateBarcodeZone |
Constructs a CCandidateBarcodeZone object with default parameters. |
CCandidateBarcodeZone(const CQuadrilateral& location, unsigned long long possibleFormats) |
Constructs a CCandidateBarcodeZone 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. |
CCandidateBarcodeZone Default Constructor
Constructs a CCandidateBarcodeZone object with default parameters.
CCandidateBarcodeZone()
CCandidateBarcodeZone Constructor
Constructs a CCandidateBarcodeZone object with the specified parameters.
CCandidateBarcodeZone(const CQuadrilateral& location, unsigned long long possibleFormats)
Parameters
location
The location of the candidate barcode.
possibleFormats
The posssible formats of the candidate barcode.
GetLocation
Gets the location of the candidate barcode.
CQuadrilateral GetLocation() const;
Return value
Returns the location of the candidate barcode.
See Also
SetLocation
Sets the location of the candidate barcode.
void SetLocation(const CQuadrilateral& loc);
Parameters
loc
The location of the candidate barcode.
See Also
GetPossibleFormats
Gets the posssible formats of the candidate barcode.
unsigned long long GetPossibleFormats() const;
Return value
Returns the posssible formats of the candidate barcode.
See Also
SetPossibleFormats
Sets the posssible formats of the candidate barcode.
void SetPossibleFormats(unsigned long long formats);
Parameters
formats
The posssible formats of the candidate barcode.
See Also