CExtendedBarcodeResult Class
The CExtendedBarcodeResult class represents an extended barcode result in a decoded barcode element. It contains information such as the type of extended barcode, deformation, clarity, and a sampling image of the barcode.
Definition
Namespace: dynamsoft::dbr
Assembly: DynamsoftBarcodeReader
Inheritance: CDecodedBarcodeElement -> CExtendedBarcodeResult
class CExtendedBarcodeResult : public CDecodedBarcodeElement
Methods
| Method | Description |
|---|---|
GetExtendedBarcodeResultType |
Gets the type of extended barcode result. |
GetDeformation |
Gets the deformation of the barcode. |
GetClarity |
Gets the clarity of the barcode. |
GetSamplingImage |
Gets the sampling image of the barcode. |
| Methods Inherited from CDecodedBarcodeElement: | |
GetFormat |
Gets the format of the barcode. |
GetFormatString |
Gets the string representation of the barcode format. |
GetText |
Gets the text of the decoded barcode. |
GetBytes |
Gets the raw bytes of the decoded barcode. |
GetBytesLength |
Gets the length of the raw bytes of the decoded barcode. |
GetDetails |
Gets the details of the decoded barcode. |
IsDPM |
Determines whether the decoded barcode is a DPM code. |
IsMirrored |
Determines whether the decoded barcode is mirrored. |
GetAngle |
Gets the orientation angle of the barcode. |
GetModuleSize |
Gets the module size of the barcode. |
GetConfidence |
Gets the confidence score of the barcode recognition result. |
GetExtendedBarcodeResultType
Gets the type of extended barcode result.
virtual ExtendedBarcodeResultType GetExtendedBarcodeResultType() const = 0;
Return value
Returns the type of the extended barcode result.
See Also
Enumeration ExtendedBarcodeResultType
GetDeformation
Gets the deformation of the barcode.
virtual int GetDeformation() const = 0;
Return value
Returns the deformation of the barcode.
GetClarity
Gets the clarity of the barcode.
virtual int GetClarity() const = 0;
Return value
Returns the clarity of the barcode.
GetSamplingImage
Gets the sampling image of the barcode.
virtual const CImageData* GetSamplingImage() const = 0;
Return value
Returns a pointer to the sampling image of the barcode.
See Also