Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
395 views
in Technique[技术] by (71.8m points)

qr code - Calculate minimum QRcode version from input data

I started to study ISO/IEC 18004 - the "QRcode specification".

When encoding data as a QRcode (generating a QRcode), the following information must be specified:

  • Mode (what kind of data, eg numeric, alphanumeric, binary, ...)
  • Error correction level (L, M, Q or H)
  • Version (the "size" of the QRcode)

I am looking for a mathematical (equation) way of determining the version requires to hold the provided data with the specified mode and error correction level. The standard itself contains a look-up table which is also available from various web sources such as this or this (they are just look-up tables).

A quote from this very related SO answer:

Any formula for the data capacity will be necessarily awkward and unenlightening since many of the parameters that determine the structure of QR Code symbols have been manually chosen and therefore implementations must generally resort to including tables of constants for these non-computed values.

As per my current understanding of the standard, it should be possible to determine the data capacity (and therefore minimum version) required based on the input data, mode and ECC level. The answer even expressed the calculations for the maximum capacity:

DataModules = Rows × Columns ? ( FinderModules + AlignmentModules + TimingPatternModules ) ? ( FormatInformationModules + VersionInformationModules )

UsableDataBits = DataModules ? ErrorCorrectionBits

I don't understand where the "awkwardness" that would lead to resorting to a look-up table originates from? As per my understanding sizes of timing pattern etc. are fixed per version.

Could somebody further explain this?


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
等待大神答复

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
...