:mod:`qrio` =========== .. py:module:: qrio .. autoapi-nested-parse:: `qrio` module. Provides the `QRDecoder` object. .. raw:: html

Available on these boards

.. py:class:: PixelPolicy .. py:attribute:: EVERY_BYTE :annotation: :PixelPolicy The input buffer to `QRDecoder.decode` consists of greyscale values in every byte .. py:attribute:: EVEN_BYTES :annotation: :PixelPolicy The input buffer to `QRDecoder.decode` consists of greyscale values in positions 0, 2, …, and ignored bytes in positions 1, 3, …. This can decode directly from YUV images where the even bytes hold the Y (luminance) data. .. py:attribute:: ODD_BYTES :annotation: :PixelPolicy The input buffer to `QRDecoder.decode` consists of greyscale values in positions 1, 3, …, and ignored bytes in positions 0, 2, …. This can decode directly from YUV images where the odd bytes hold the Y (luminance) data .. py:class:: QRDecoder(width: int, height: int) Construct a QRDecoder object :param int width: The pixel width of the image to decode :param int height: The pixel height of the image to decode .. py:attribute:: width :annotation: :int The width of image the decoder expects .. py:attribute:: height :annotation: :int The height of image the decoder expects .. py:method:: decode(buffer: _typing.ReadableBuffer, pixel_policy: PixelPolicy = PixelPolicy.EVERY_BYTE) -> List[QRInfo] Decode zero or more QR codes from the given image. The size of the buffer must be at least ``length``×``width`` bytes for `EVERY_BYTE`, and 2×``length``×``width`` bytes for `EVEN_BYTES` or `ODD_BYTES`. .. py:class:: QRInfo Information about a decoded QR code .. py:attribute:: payload :annotation: :bytes The content of the QR code .. py:attribute:: data_type :annotation: :Union[str, int] The encoding of the payload as a string (if a standard encoding) or int (if not standard)