CVBpy 15.0
All Classes Namespaces Functions Variables Enumerations Enumerator Properties Modules Pages
MicroQR Class Reference

Configuration class for Micro QR codes. More...

Inherits QR.

Additional Inherited Members

- Public Member Functions inherited from QR
cvb.barcode.QR disable (self)
 Disables decoding. More...
 
cvb.barcode.QR enable (self)
 Enables decoding. More...
 
- Properties inherited from QR
 is_enabled = property
 bool: Checks if decoding is enabled. More...
 
 is_mirroring_enabled = property
 bool: Gets or sets the status of the mirroring feature. More...
 
 polarity = property
 int: Gets or sets the polarity mode for decoding (see cvb.barcode.Polarity).
 
 precise_corners = property
 bool: Gets or sets the calculation of more precise corner coordinates. More...
 

Detailed Description

Configuration class for Micro QR codes.

Use this class to configure decoding options for Micro QR codes. To access the configuration and enable decoding Micro QR codes, use the following example. For additional details on configuration, refer to the documentation for Decoder.config().

decoder.config(cvb.barcode.Symbology.MicroQR).enable()
cvb.barcode.Decoder create()
Creates and returns a new decoder object.
Definition: __init__.py:142

A more comprehensive code example demonstrating configuration in a broader context, as well as the decoding process, can be found here.