CVBpy 15.0
MicroQR Class Reference

Configuration class for Micro QR codes. More...

Inherits QR.

Additional Inherited Members

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

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.code_reader.Symbology.MicroQR).enable()
cvb.code_reader.Decoder create()
Creates and returns a new decoder object.
Definition __init__.py:182

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