Back to Aurora Vision Library website
You are here: Start » Function Reference » Computer Vision » Datacodes » DecodeQRCode
DecodeQRCode
| Header: | AVL.h |
|---|---|
| Namespace: | avl |
| Module: | Datacodes |
Translates a matrix of 0 or 1 values to a text in accordance to how QR codes are encoded.
Applications: Decoding of QR codes whose black and white segments have been determined in a non-standard way.
Syntax
C++
C#
void avl::DecodeQRCode ( const avl::Image& inImage, bool inAllowMirrored, atl::Conditional<atl::String>& outDecodedText )
Parameters
| Name | Type | Default | Description | |
|---|---|---|---|---|
![]() |
inImage | const Image& | Square image of zero (black) and nonzero (white) values | |
![]() |
inAllowMirrored | bool | Allows reading mirrored/transposed codes | |
![]() |
outDecodedText | Conditional<String>& | Decoded text, if matrix represents valid code |


