zxing_cpp 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (332) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +13 -0
  3. data/.gitmodules +3 -0
  4. data/CHANGELOG.rdoc +6 -0
  5. data/Gemfile +3 -0
  6. data/Manifest.txt +331 -0
  7. data/README.rdoc +138 -0
  8. data/Rakefile +28 -0
  9. data/bin/zxd +87 -0
  10. data/bin/zxe +53 -0
  11. data/ext/zxing/extconf.rb +27 -0
  12. data/ext/zxing/zxing-cpp/.gitignore +4 -0
  13. data/ext/zxing/zxing-cpp/AUTHORS +115 -0
  14. data/ext/zxing/zxing-cpp/CMakeLists.txt +84 -0
  15. data/ext/zxing/zxing-cpp/COPYING +201 -0
  16. data/ext/zxing/zxing-cpp/NOTICE +65 -0
  17. data/ext/zxing/zxing-cpp/README.md +50 -0
  18. data/ext/zxing/zxing-cpp/cli/src/ImageReaderSource.cpp +112 -0
  19. data/ext/zxing/zxing-cpp/cli/src/ImageReaderSource.h +40 -0
  20. data/ext/zxing/zxing-cpp/cli/src/jpgd.cpp +3174 -0
  21. data/ext/zxing/zxing-cpp/cli/src/jpgd.h +319 -0
  22. data/ext/zxing/zxing-cpp/cli/src/lodepng.cpp +6261 -0
  23. data/ext/zxing/zxing-cpp/cli/src/lodepng.h +1695 -0
  24. data/ext/zxing/zxing-cpp/cli/src/main.cpp +297 -0
  25. data/ext/zxing/zxing-cpp/cmake/FindCPPUNIT.cmake +54 -0
  26. data/ext/zxing/zxing-cpp/cmake/FindIconv.cmake +57 -0
  27. data/ext/zxing/zxing-cpp/core/src/bigint/.gitignore +6 -0
  28. data/ext/zxing/zxing-cpp/core/src/bigint/BigInteger.cc +405 -0
  29. data/ext/zxing/zxing-cpp/core/src/bigint/BigInteger.hh +215 -0
  30. data/ext/zxing/zxing-cpp/core/src/bigint/BigIntegerAlgorithms.cc +70 -0
  31. data/ext/zxing/zxing-cpp/core/src/bigint/BigIntegerAlgorithms.hh +25 -0
  32. data/ext/zxing/zxing-cpp/core/src/bigint/BigIntegerLibrary.hh +8 -0
  33. data/ext/zxing/zxing-cpp/core/src/bigint/BigIntegerUtils.cc +50 -0
  34. data/ext/zxing/zxing-cpp/core/src/bigint/BigIntegerUtils.hh +72 -0
  35. data/ext/zxing/zxing-cpp/core/src/bigint/BigUnsigned.cc +697 -0
  36. data/ext/zxing/zxing-cpp/core/src/bigint/BigUnsigned.hh +418 -0
  37. data/ext/zxing/zxing-cpp/core/src/bigint/BigUnsignedInABase.cc +125 -0
  38. data/ext/zxing/zxing-cpp/core/src/bigint/BigUnsignedInABase.hh +122 -0
  39. data/ext/zxing/zxing-cpp/core/src/bigint/ChangeLog +146 -0
  40. data/ext/zxing/zxing-cpp/core/src/bigint/Makefile +73 -0
  41. data/ext/zxing/zxing-cpp/core/src/bigint/NumberlikeArray.hh +177 -0
  42. data/ext/zxing/zxing-cpp/core/src/bigint/README +71 -0
  43. data/ext/zxing/zxing-cpp/core/src/win32/zxing/iconv.h +14 -0
  44. data/ext/zxing/zxing-cpp/core/src/win32/zxing/stdint.h +247 -0
  45. data/ext/zxing/zxing-cpp/core/src/win32/zxing/win_iconv.c +2035 -0
  46. data/ext/zxing/zxing-cpp/core/src/zxing/BarcodeFormat.cpp +40 -0
  47. data/ext/zxing/zxing-cpp/core/src/zxing/BarcodeFormat.h +60 -0
  48. data/ext/zxing/zxing-cpp/core/src/zxing/Binarizer.cpp +45 -0
  49. data/ext/zxing/zxing-cpp/core/src/zxing/Binarizer.h +50 -0
  50. data/ext/zxing/zxing-cpp/core/src/zxing/BinaryBitmap.cpp +70 -0
  51. data/ext/zxing/zxing-cpp/core/src/zxing/BinaryBitmap.h +56 -0
  52. data/ext/zxing/zxing-cpp/core/src/zxing/ChecksumException.cpp +28 -0
  53. data/ext/zxing/zxing-cpp/core/src/zxing/ChecksumException.h +34 -0
  54. data/ext/zxing/zxing-cpp/core/src/zxing/DecodeHints.cpp +142 -0
  55. data/ext/zxing/zxing-cpp/core/src/zxing/DecodeHints.h +85 -0
  56. data/ext/zxing/zxing-cpp/core/src/zxing/Exception.cpp +43 -0
  57. data/ext/zxing/zxing-cpp/core/src/zxing/Exception.h +51 -0
  58. data/ext/zxing/zxing-cpp/core/src/zxing/FormatException.cpp +41 -0
  59. data/ext/zxing/zxing-cpp/core/src/zxing/FormatException.h +37 -0
  60. data/ext/zxing/zxing-cpp/core/src/zxing/IllegalStateException.h +35 -0
  61. data/ext/zxing/zxing-cpp/core/src/zxing/InvertedLuminanceSource.cpp +68 -0
  62. data/ext/zxing/zxing-cpp/core/src/zxing/InvertedLuminanceSource.h +48 -0
  63. data/ext/zxing/zxing-cpp/core/src/zxing/LuminanceSource.cpp +86 -0
  64. data/ext/zxing/zxing-cpp/core/src/zxing/LuminanceSource.h +59 -0
  65. data/ext/zxing/zxing-cpp/core/src/zxing/MultiFormatReader.cpp +124 -0
  66. data/ext/zxing/zxing-cpp/core/src/zxing/MultiFormatReader.h +48 -0
  67. data/ext/zxing/zxing-cpp/core/src/zxing/NotFoundException.h +35 -0
  68. data/ext/zxing/zxing-cpp/core/src/zxing/Reader.cpp +31 -0
  69. data/ext/zxing/zxing-cpp/core/src/zxing/Reader.h +40 -0
  70. data/ext/zxing/zxing-cpp/core/src/zxing/ReaderException.h +37 -0
  71. data/ext/zxing/zxing-cpp/core/src/zxing/Result.cpp +61 -0
  72. data/ext/zxing/zxing-cpp/core/src/zxing/Result.h +55 -0
  73. data/ext/zxing/zxing-cpp/core/src/zxing/ResultIO.cpp +34 -0
  74. data/ext/zxing/zxing-cpp/core/src/zxing/ResultPoint.cpp +108 -0
  75. data/ext/zxing/zxing-cpp/core/src/zxing/ResultPoint.h +55 -0
  76. data/ext/zxing/zxing-cpp/core/src/zxing/ResultPointCallback.cpp +26 -0
  77. data/ext/zxing/zxing-cpp/core/src/zxing/ResultPointCallback.h +39 -0
  78. data/ext/zxing/zxing-cpp/core/src/zxing/ZXing.h +133 -0
  79. data/ext/zxing/zxing-cpp/core/src/zxing/aztec/AztecDetectorResult.cpp +54 -0
  80. data/ext/zxing/zxing-cpp/core/src/zxing/aztec/AztecDetectorResult.h +48 -0
  81. data/ext/zxing/zxing-cpp/core/src/zxing/aztec/AztecReader.cpp +68 -0
  82. data/ext/zxing/zxing-cpp/core/src/zxing/aztec/AztecReader.h +49 -0
  83. data/ext/zxing/zxing-cpp/core/src/zxing/aztec/decoder/Decoder.cpp +489 -0
  84. data/ext/zxing/zxing-cpp/core/src/zxing/aztec/decoder/Decoder.h +69 -0
  85. data/ext/zxing/zxing-cpp/core/src/zxing/aztec/detector/Detector.cpp +548 -0
  86. data/ext/zxing/zxing-cpp/core/src/zxing/aztec/detector/Detector.h +92 -0
  87. data/ext/zxing/zxing-cpp/core/src/zxing/common/Array.h +170 -0
  88. data/ext/zxing/zxing-cpp/core/src/zxing/common/BitArray.cpp +155 -0
  89. data/ext/zxing/zxing-cpp/core/src/zxing/common/BitArray.h +81 -0
  90. data/ext/zxing/zxing-cpp/core/src/zxing/common/BitArrayIO.cpp +31 -0
  91. data/ext/zxing/zxing-cpp/core/src/zxing/common/BitMatrix.cpp +143 -0
  92. data/ext/zxing/zxing-cpp/core/src/zxing/common/BitMatrix.h +91 -0
  93. data/ext/zxing/zxing-cpp/core/src/zxing/common/BitSource.cpp +76 -0
  94. data/ext/zxing/zxing-cpp/core/src/zxing/common/BitSource.h +74 -0
  95. data/ext/zxing/zxing-cpp/core/src/zxing/common/CharacterSetECI.cpp +104 -0
  96. data/ext/zxing/zxing-cpp/core/src/zxing/common/CharacterSetECI.h +53 -0
  97. data/ext/zxing/zxing-cpp/core/src/zxing/common/Counted.h +140 -0
  98. data/ext/zxing/zxing-cpp/core/src/zxing/common/DecoderResult.cpp +46 -0
  99. data/ext/zxing/zxing-cpp/core/src/zxing/common/DecoderResult.h +51 -0
  100. data/ext/zxing/zxing-cpp/core/src/zxing/common/DetectorResult.cpp +39 -0
  101. data/ext/zxing/zxing-cpp/core/src/zxing/common/DetectorResult.h +43 -0
  102. data/ext/zxing/zxing-cpp/core/src/zxing/common/GlobalHistogramBinarizer.cpp +212 -0
  103. data/ext/zxing/zxing-cpp/core/src/zxing/common/GlobalHistogramBinarizer.h +48 -0
  104. data/ext/zxing/zxing-cpp/core/src/zxing/common/GreyscaleLuminanceSource.cpp +80 -0
  105. data/ext/zxing/zxing-cpp/core/src/zxing/common/GreyscaleLuminanceSource.h +53 -0
  106. data/ext/zxing/zxing-cpp/core/src/zxing/common/GreyscaleRotatedLuminanceSource.cpp +81 -0
  107. data/ext/zxing/zxing-cpp/core/src/zxing/common/GreyscaleRotatedLuminanceSource.h +46 -0
  108. data/ext/zxing/zxing-cpp/core/src/zxing/common/GridSampler.cpp +122 -0
  109. data/ext/zxing/zxing-cpp/core/src/zxing/common/GridSampler.h +45 -0
  110. data/ext/zxing/zxing-cpp/core/src/zxing/common/HybridBinarizer.cpp +226 -0
  111. data/ext/zxing/zxing-cpp/core/src/zxing/common/HybridBinarizer.h +67 -0
  112. data/ext/zxing/zxing-cpp/core/src/zxing/common/IllegalArgumentException.cpp +27 -0
  113. data/ext/zxing/zxing-cpp/core/src/zxing/common/IllegalArgumentException.h +36 -0
  114. data/ext/zxing/zxing-cpp/core/src/zxing/common/PerspectiveTransform.cpp +107 -0
  115. data/ext/zxing/zxing-cpp/core/src/zxing/common/PerspectiveTransform.h +49 -0
  116. data/ext/zxing/zxing-cpp/core/src/zxing/common/Point.h +47 -0
  117. data/ext/zxing/zxing-cpp/core/src/zxing/common/Str.cpp +61 -0
  118. data/ext/zxing/zxing-cpp/core/src/zxing/common/Str.h +51 -0
  119. data/ext/zxing/zxing-cpp/core/src/zxing/common/StringUtils.cpp +198 -0
  120. data/ext/zxing/zxing-cpp/core/src/zxing/common/StringUtils.h +52 -0
  121. data/ext/zxing/zxing-cpp/core/src/zxing/common/detector/JavaMath.h +43 -0
  122. data/ext/zxing/zxing-cpp/core/src/zxing/common/detector/MathUtils.h +57 -0
  123. data/ext/zxing/zxing-cpp/core/src/zxing/common/detector/MonochromeRectangleDetector.cpp +174 -0
  124. data/ext/zxing/zxing-cpp/core/src/zxing/common/detector/MonochromeRectangleDetector.h +62 -0
  125. data/ext/zxing/zxing-cpp/core/src/zxing/common/detector/WhiteRectangleDetector.cpp +330 -0
  126. data/ext/zxing/zxing-cpp/core/src/zxing/common/detector/WhiteRectangleDetector.h +59 -0
  127. data/ext/zxing/zxing-cpp/core/src/zxing/common/reedsolomon/GenericGF.cpp +150 -0
  128. data/ext/zxing/zxing-cpp/core/src/zxing/common/reedsolomon/GenericGF.h +73 -0
  129. data/ext/zxing/zxing-cpp/core/src/zxing/common/reedsolomon/GenericGFPoly.cpp +218 -0
  130. data/ext/zxing/zxing-cpp/core/src/zxing/common/reedsolomon/GenericGFPoly.h +56 -0
  131. data/ext/zxing/zxing-cpp/core/src/zxing/common/reedsolomon/ReedSolomonDecoder.cpp +174 -0
  132. data/ext/zxing/zxing-cpp/core/src/zxing/common/reedsolomon/ReedSolomonDecoder.h +49 -0
  133. data/ext/zxing/zxing-cpp/core/src/zxing/common/reedsolomon/ReedSolomonException.cpp +30 -0
  134. data/ext/zxing/zxing-cpp/core/src/zxing/common/reedsolomon/ReedSolomonException.h +33 -0
  135. data/ext/zxing/zxing-cpp/core/src/zxing/datamatrix/DataMatrixReader.cpp +54 -0
  136. data/ext/zxing/zxing-cpp/core/src/zxing/datamatrix/DataMatrixReader.h +45 -0
  137. data/ext/zxing/zxing-cpp/core/src/zxing/datamatrix/Version.cpp +199 -0
  138. data/ext/zxing/zxing-cpp/core/src/zxing/datamatrix/Version.h +87 -0
  139. data/ext/zxing/zxing-cpp/core/src/zxing/datamatrix/decoder/BitMatrixParser.cpp +361 -0
  140. data/ext/zxing/zxing-cpp/core/src/zxing/datamatrix/decoder/BitMatrixParser.h +59 -0
  141. data/ext/zxing/zxing-cpp/core/src/zxing/datamatrix/decoder/DataBlock.cpp +113 -0
  142. data/ext/zxing/zxing-cpp/core/src/zxing/datamatrix/decoder/DataBlock.h +49 -0
  143. data/ext/zxing/zxing-cpp/core/src/zxing/datamatrix/decoder/DecodedBitStreamParser.cpp +416 -0
  144. data/ext/zxing/zxing-cpp/core/src/zxing/datamatrix/decoder/DecodedBitStreamParser.h +104 -0
  145. data/ext/zxing/zxing-cpp/core/src/zxing/datamatrix/decoder/Decoder.cpp +93 -0
  146. data/ext/zxing/zxing-cpp/core/src/zxing/datamatrix/decoder/Decoder.h +49 -0
  147. data/ext/zxing/zxing-cpp/core/src/zxing/datamatrix/detector/CornerPoint.cpp +46 -0
  148. data/ext/zxing/zxing-cpp/core/src/zxing/datamatrix/detector/CornerPoint.h +43 -0
  149. data/ext/zxing/zxing-cpp/core/src/zxing/datamatrix/detector/Detector.cpp +446 -0
  150. data/ext/zxing/zxing-cpp/core/src/zxing/datamatrix/detector/Detector.h +94 -0
  151. data/ext/zxing/zxing-cpp/core/src/zxing/datamatrix/detector/DetectorException.cpp +23 -0
  152. data/ext/zxing/zxing-cpp/core/src/zxing/datamatrix/detector/DetectorException.h +23 -0
  153. data/ext/zxing/zxing-cpp/core/src/zxing/multi/ByQuadrantReader.cpp +75 -0
  154. data/ext/zxing/zxing-cpp/core/src/zxing/multi/ByQuadrantReader.h +42 -0
  155. data/ext/zxing/zxing-cpp/core/src/zxing/multi/GenericMultipleBarcodeReader.cpp +137 -0
  156. data/ext/zxing/zxing-cpp/core/src/zxing/multi/GenericMultipleBarcodeReader.h +51 -0
  157. data/ext/zxing/zxing-cpp/core/src/zxing/multi/MultipleBarcodeReader.cpp +29 -0
  158. data/ext/zxing/zxing-cpp/core/src/zxing/multi/MultipleBarcodeReader.h +41 -0
  159. data/ext/zxing/zxing-cpp/core/src/zxing/multi/qrcode/QRCodeMultiReader.cpp +58 -0
  160. data/ext/zxing/zxing-cpp/core/src/zxing/multi/qrcode/QRCodeMultiReader.h +36 -0
  161. data/ext/zxing/zxing-cpp/core/src/zxing/multi/qrcode/detector/MultiDetector.cpp +47 -0
  162. data/ext/zxing/zxing-cpp/core/src/zxing/multi/qrcode/detector/MultiDetector.h +37 -0
  163. data/ext/zxing/zxing-cpp/core/src/zxing/multi/qrcode/detector/MultiFinderPatternFinder.cpp +236 -0
  164. data/ext/zxing/zxing-cpp/core/src/zxing/multi/qrcode/detector/MultiFinderPatternFinder.h +47 -0
  165. data/ext/zxing/zxing-cpp/core/src/zxing/oned/CodaBarReader.cpp +340 -0
  166. data/ext/zxing/zxing-cpp/core/src/zxing/oned/CodaBarReader.h +57 -0
  167. data/ext/zxing/zxing-cpp/core/src/zxing/oned/Code128Reader.cpp +496 -0
  168. data/ext/zxing/zxing-cpp/core/src/zxing/oned/Code128Reader.h +48 -0
  169. data/ext/zxing/zxing-cpp/core/src/zxing/oned/Code39Reader.cpp +328 -0
  170. data/ext/zxing/zxing-cpp/core/src/zxing/oned/Code39Reader.h +63 -0
  171. data/ext/zxing/zxing-cpp/core/src/zxing/oned/Code93Reader.cpp +293 -0
  172. data/ext/zxing/zxing-cpp/core/src/zxing/oned/Code93Reader.h +58 -0
  173. data/ext/zxing/zxing-cpp/core/src/zxing/oned/EAN13Reader.cpp +85 -0
  174. data/ext/zxing/zxing-cpp/core/src/zxing/oned/EAN13Reader.h +49 -0
  175. data/ext/zxing/zxing-cpp/core/src/zxing/oned/EAN8Reader.cpp +65 -0
  176. data/ext/zxing/zxing-cpp/core/src/zxing/oned/EAN8Reader.h +47 -0
  177. data/ext/zxing/zxing-cpp/core/src/zxing/oned/ITFReader.cpp +337 -0
  178. data/ext/zxing/zxing-cpp/core/src/zxing/oned/ITFReader.h +54 -0
  179. data/ext/zxing/zxing-cpp/core/src/zxing/oned/MultiFormatOneDReader.cpp +96 -0
  180. data/ext/zxing/zxing-cpp/core/src/zxing/oned/MultiFormatOneDReader.h +38 -0
  181. data/ext/zxing/zxing-cpp/core/src/zxing/oned/MultiFormatUPCEANReader.cpp +110 -0
  182. data/ext/zxing/zxing-cpp/core/src/zxing/oned/MultiFormatUPCEANReader.h +41 -0
  183. data/ext/zxing/zxing-cpp/core/src/zxing/oned/OneDReader.cpp +227 -0
  184. data/ext/zxing/zxing-cpp/core/src/zxing/oned/OneDReader.h +81 -0
  185. data/ext/zxing/zxing-cpp/core/src/zxing/oned/OneDResultPoint.cpp +28 -0
  186. data/ext/zxing/zxing-cpp/core/src/zxing/oned/OneDResultPoint.h +35 -0
  187. data/ext/zxing/zxing-cpp/core/src/zxing/oned/UPCAReader.cpp +71 -0
  188. data/ext/zxing/zxing-cpp/core/src/zxing/oned/UPCAReader.h +50 -0
  189. data/ext/zxing/zxing-cpp/core/src/zxing/oned/UPCEANReader.cpp +309 -0
  190. data/ext/zxing/zxing-cpp/core/src/zxing/oned/UPCEANReader.h +88 -0
  191. data/ext/zxing/zxing-cpp/core/src/zxing/oned/UPCEReader.cpp +146 -0
  192. data/ext/zxing/zxing-cpp/core/src/zxing/oned/UPCEReader.h +47 -0
  193. data/ext/zxing/zxing-cpp/core/src/zxing/pdf417/PDF417Reader.cpp +170 -0
  194. data/ext/zxing/zxing-cpp/core/src/zxing/pdf417/PDF417Reader.h +49 -0
  195. data/ext/zxing/zxing-cpp/core/src/zxing/pdf417/decoder/BitMatrixParser.cpp +997 -0
  196. data/ext/zxing/zxing-cpp/core/src/zxing/pdf417/decoder/BitMatrixParser.h +84 -0
  197. data/ext/zxing/zxing-cpp/core/src/zxing/pdf417/decoder/DecodedBitStreamParser.cpp +563 -0
  198. data/ext/zxing/zxing-cpp/core/src/zxing/pdf417/decoder/DecodedBitStreamParser.h +84 -0
  199. data/ext/zxing/zxing-cpp/core/src/zxing/pdf417/decoder/Decoder.cpp +118 -0
  200. data/ext/zxing/zxing-cpp/core/src/zxing/pdf417/decoder/Decoder.h +62 -0
  201. data/ext/zxing/zxing-cpp/core/src/zxing/pdf417/decoder/ec/ErrorCorrection.cpp +214 -0
  202. data/ext/zxing/zxing-cpp/core/src/zxing/pdf417/decoder/ec/ErrorCorrection.h +71 -0
  203. data/ext/zxing/zxing-cpp/core/src/zxing/pdf417/decoder/ec/ModulusGF.cpp +120 -0
  204. data/ext/zxing/zxing-cpp/core/src/zxing/pdf417/decoder/ec/ModulusGF.h +72 -0
  205. data/ext/zxing/zxing-cpp/core/src/zxing/pdf417/decoder/ec/ModulusPoly.cpp +284 -0
  206. data/ext/zxing/zxing-cpp/core/src/zxing/pdf417/decoder/ec/ModulusPoly.h +68 -0
  207. data/ext/zxing/zxing-cpp/core/src/zxing/pdf417/detector/Detector.cpp +664 -0
  208. data/ext/zxing/zxing-cpp/core/src/zxing/pdf417/detector/Detector.h +106 -0
  209. data/ext/zxing/zxing-cpp/core/src/zxing/pdf417/detector/LinesSampler.cpp +714 -0
  210. data/ext/zxing/zxing-cpp/core/src/zxing/pdf417/detector/LinesSampler.h +122 -0
  211. data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/ErrorCorrectionLevel.cpp +65 -0
  212. data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/ErrorCorrectionLevel.h +52 -0
  213. data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/FormatInformation.cpp +117 -0
  214. data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/FormatInformation.h +54 -0
  215. data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/QRCodeReader.cpp +52 -0
  216. data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/QRCodeReader.h +48 -0
  217. data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/Version.cpp +560 -0
  218. data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/Version.h +85 -0
  219. data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/decoder/BitMatrixParser.cpp +183 -0
  220. data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/decoder/BitMatrixParser.h +56 -0
  221. data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/decoder/DataBlock.cpp +118 -0
  222. data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/decoder/DataBlock.h +50 -0
  223. data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/decoder/DataMask.cpp +159 -0
  224. data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/decoder/DataMask.h +50 -0
  225. data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/decoder/DecodedBitStreamParser.cpp +425 -0
  226. data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/decoder/DecodedBitStreamParser.h +72 -0
  227. data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/decoder/Decoder.cpp +107 -0
  228. data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/decoder/Decoder.h +46 -0
  229. data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/decoder/Mode.cpp +90 -0
  230. data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/decoder/Mode.h +57 -0
  231. data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/detector/AlignmentPattern.cpp +47 -0
  232. data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/detector/AlignmentPattern.h +45 -0
  233. data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/detector/AlignmentPatternFinder.cpp +208 -0
  234. data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/detector/AlignmentPatternFinder.h +68 -0
  235. data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/detector/Detector.cpp +314 -0
  236. data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/detector/Detector.h +69 -0
  237. data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/detector/FinderPattern.cpp +69 -0
  238. data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/detector/FinderPattern.h +48 -0
  239. data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/detector/FinderPatternFinder.cpp +559 -0
  240. data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/detector/FinderPatternFinder.h +76 -0
  241. data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/detector/FinderPatternInfo.cpp +41 -0
  242. data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/detector/FinderPatternInfo.h +47 -0
  243. data/ext/zxing/zxing-cpp/core/tests/src/TestRunner.cpp +30 -0
  244. data/ext/zxing/zxing-cpp/core/tests/src/common/BitArrayTest.cpp +216 -0
  245. data/ext/zxing/zxing-cpp/core/tests/src/common/BitArrayTest.h +61 -0
  246. data/ext/zxing/zxing-cpp/core/tests/src/common/BitMatrixTest.cpp +106 -0
  247. data/ext/zxing/zxing-cpp/core/tests/src/common/BitMatrixTest.h +55 -0
  248. data/ext/zxing/zxing-cpp/core/tests/src/common/BitSourceTest.cpp +49 -0
  249. data/ext/zxing/zxing-cpp/core/tests/src/common/BitSourceTest.h +42 -0
  250. data/ext/zxing/zxing-cpp/core/tests/src/common/CountedTest.cpp +58 -0
  251. data/ext/zxing/zxing-cpp/core/tests/src/common/CountedTest.h +46 -0
  252. data/ext/zxing/zxing-cpp/core/tests/src/common/PerspectiveTransformTest.cpp +69 -0
  253. data/ext/zxing/zxing-cpp/core/tests/src/common/PerspectiveTransformTest.h +47 -0
  254. data/ext/zxing/zxing-cpp/core/tests/src/common/reedsolomon/ReedSolomonTest.cpp +129 -0
  255. data/ext/zxing/zxing-cpp/core/tests/src/common/reedsolomon/ReedSolomonTest.h +62 -0
  256. data/ext/zxing/zxing-cpp/core/tests/src/qrcode/ErrorCorrectionLevelTest.cpp +47 -0
  257. data/ext/zxing/zxing-cpp/core/tests/src/qrcode/ErrorCorrectionLevelTest.h +45 -0
  258. data/ext/zxing/zxing-cpp/core/tests/src/qrcode/FormatInformationTest.cpp +88 -0
  259. data/ext/zxing/zxing-cpp/core/tests/src/qrcode/FormatInformationTest.h +47 -0
  260. data/ext/zxing/zxing-cpp/core/tests/src/qrcode/VersionTest.cpp +88 -0
  261. data/ext/zxing/zxing-cpp/core/tests/src/qrcode/VersionTest.h +49 -0
  262. data/ext/zxing/zxing-cpp/core/tests/src/qrcode/decoder/DataMaskTest.cpp +132 -0
  263. data/ext/zxing/zxing-cpp/core/tests/src/qrcode/decoder/DataMaskTest.h +91 -0
  264. data/ext/zxing/zxing-cpp/core/tests/src/qrcode/decoder/ModeTest.cpp +52 -0
  265. data/ext/zxing/zxing-cpp/core/tests/src/qrcode/decoder/ModeTest.h +47 -0
  266. data/ext/zxing/zxing.cc +224 -0
  267. data/lib/zxing.rb +50 -0
  268. data/lib/zxing/.gitignore +2 -0
  269. data/lib/zxing/aztec.rb +5 -0
  270. data/lib/zxing/aztec/aztec_reader.rb +14 -0
  271. data/lib/zxing/bad_image_exception.rb +4 -0
  272. data/lib/zxing/binarizer.rb +8 -0
  273. data/lib/zxing/binary_bitmap.rb +15 -0
  274. data/lib/zxing/checksum_exception.rb +4 -0
  275. data/lib/zxing/common.rb +7 -0
  276. data/lib/zxing/common/bit_matrix.rb +9 -0
  277. data/lib/zxing/common/hybrid_binarizer.rb +17 -0
  278. data/lib/zxing/common/illegal_argument_exception.rb +4 -0
  279. data/lib/zxing/datamatrix.rb +5 -0
  280. data/lib/zxing/datamatrix/data_matrix_reader.rb +14 -0
  281. data/lib/zxing/decodable.rb +11 -0
  282. data/lib/zxing/exception.rb +4 -0
  283. data/lib/zxing/ffi.rb +20 -0
  284. data/lib/zxing/ffi/aztec.rb +6 -0
  285. data/lib/zxing/ffi/aztec/aztec_reader.rb +9 -0
  286. data/lib/zxing/ffi/binarizer.rb +25 -0
  287. data/lib/zxing/ffi/binary_bitmap.rb +15 -0
  288. data/lib/zxing/ffi/common.rb +8 -0
  289. data/lib/zxing/ffi/common/bit_matrix.rb +12 -0
  290. data/lib/zxing/ffi/common/greyscale_luminance_source.rb +30 -0
  291. data/lib/zxing/ffi/common/hybrid_binarizer.rb +10 -0
  292. data/lib/zxing/ffi/datamatrix.rb +6 -0
  293. data/lib/zxing/ffi/datamatrix/data_matrix_reader.rb +9 -0
  294. data/lib/zxing/ffi/library.rb +102 -0
  295. data/lib/zxing/ffi/luminance_source.rb +18 -0
  296. data/lib/zxing/ffi/multi_format_reader.rb +9 -0
  297. data/lib/zxing/ffi/oned.rb +6 -0
  298. data/lib/zxing/ffi/oned/code_39_reader.rb +10 -0
  299. data/lib/zxing/ffi/qrcode.rb +8 -0
  300. data/lib/zxing/ffi/qrcode/decoder.rb +10 -0
  301. data/lib/zxing/ffi/qrcode/detector.rb +10 -0
  302. data/lib/zxing/ffi/reader.rb +58 -0
  303. data/lib/zxing/ffi/result.rb +23 -0
  304. data/lib/zxing/format_exception.rb +4 -0
  305. data/lib/zxing/illegal_argument_exception.rb +4 -0
  306. data/lib/zxing/image.rb +15 -0
  307. data/lib/zxing/luminance_source.rb +18 -0
  308. data/lib/zxing/multi_format_reader.rb +11 -0
  309. data/lib/zxing/not_found_exception.rb +4 -0
  310. data/lib/zxing/oned.rb +5 -0
  311. data/lib/zxing/oned/code_39_reader.rb +15 -0
  312. data/lib/zxing/qrcode.rb +8 -0
  313. data/lib/zxing/qrcode/decoder.rb +14 -0
  314. data/lib/zxing/qrcode/detector.rb +14 -0
  315. data/lib/zxing/qrcode/encoder.rb +8 -0
  316. data/lib/zxing/qrcode/encoder/byte_matrix.rb +18 -0
  317. data/lib/zxing/qrcode/encoder/encoder.rb +9 -0
  318. data/lib/zxing/qrcode/encoder/qrcode.rb +18 -0
  319. data/lib/zxing/reader.rb +8 -0
  320. data/lib/zxing/reader_exception.rb +4 -0
  321. data/lib/zxing/reed_solomon_exception.rb +2 -0
  322. data/lib/zxing/result.rb +18 -0
  323. data/lib/zxing/rmagick.rb +5 -0
  324. data/lib/zxing/rmagick/image.rb +104 -0
  325. data/lib/zxing/version.rb +33 -0
  326. data/test/qrcode.png +0 -0
  327. data/test/test_helper.rb +5 -0
  328. data/test/test_zxing.rb +58 -0
  329. data/test/vendor.rb +360 -0
  330. data/test/zxing/test_decodable.rb +38 -0
  331. data/zxing_cpp.gemspec +48 -0
  332. metadata +473 -0
@@ -0,0 +1,106 @@
1
+ #ifndef __DETECTOR_H__
2
+ #define __DETECTOR_H__
3
+
4
+ /*
5
+ * Detector.h
6
+ * zxing
7
+ *
8
+ * Copyright 2010 ZXing authors All rights reserved.
9
+ *
10
+ * Licensed under the Apache License, Version 2.0 (the "License");
11
+ * you may not use this file except in compliance with the License.
12
+ * You may obtain a copy of the License at
13
+ *
14
+ * http://www.apache.org/licenses/LICENSE-2.0
15
+ *
16
+ * Unless required by applicable law or agreed to in writing, software
17
+ * distributed under the License is distributed on an "AS IS" BASIS,
18
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19
+ * See the License for the specific language governing permissions and
20
+ * limitations under the License.
21
+ */
22
+
23
+ #include <zxing/common/Point.h>
24
+ #include <zxing/common/DetectorResult.h>
25
+ #include <zxing/NotFoundException.h>
26
+ #include <zxing/BinaryBitmap.h>
27
+ #include <zxing/DecodeHints.h>
28
+
29
+ namespace zxing {
30
+ namespace pdf417 {
31
+ namespace detector {
32
+
33
+ class Detector {
34
+ private:
35
+ static const int INTEGER_MATH_SHIFT = 8;
36
+ static const int PATTERN_MATCH_RESULT_SCALE_FACTOR = 1 << INTEGER_MATH_SHIFT;
37
+ static const int MAX_AVG_VARIANCE;
38
+ static const int MAX_INDIVIDUAL_VARIANCE;
39
+
40
+ static const int START_PATTERN[];
41
+ static const int START_PATTERN_LENGTH;
42
+ static const int START_PATTERN_REVERSE[];
43
+ static const int START_PATTERN_REVERSE_LENGTH;
44
+ static const int STOP_PATTERN[];
45
+ static const int STOP_PATTERN_LENGTH;
46
+ static const int STOP_PATTERN_REVERSE[];
47
+ static const int STOP_PATTERN_REVERSE_LENGTH;
48
+
49
+ Ref<BinaryBitmap> image_;
50
+
51
+ static ArrayRef< Ref<ResultPoint> > findVertices(Ref<BitMatrix> matrix, int rowStep);
52
+ static ArrayRef< Ref<ResultPoint> > findVertices180(Ref<BitMatrix> matrix, int rowStep);
53
+
54
+ static ArrayRef<int> findGuardPattern(Ref<BitMatrix> matrix,
55
+ int column,
56
+ int row,
57
+ int width,
58
+ bool whiteFirst,
59
+ const int pattern[],
60
+ int patternSize,
61
+ ArrayRef<int>& counters);
62
+ static int patternMatchVariance(ArrayRef<int>& counters, const int pattern[],
63
+ int maxIndividualVariance);
64
+
65
+ static void correctVertices(Ref<BitMatrix> matrix,
66
+ ArrayRef< Ref<ResultPoint> >& vertices,
67
+ bool upsideDown);
68
+ static void findWideBarTopBottom(Ref<BitMatrix> matrix,
69
+ ArrayRef< Ref<ResultPoint> >& vertices,
70
+ int offsetVertice,
71
+ int startWideBar,
72
+ int lenWideBar,
73
+ int lenPattern,
74
+ int nIncrement);
75
+ static void findCrossingPoint(ArrayRef< Ref<ResultPoint> >& vertices,
76
+ int idxResult,
77
+ int idxLineA1,int idxLineA2,
78
+ int idxLineB1,int idxLineB2,
79
+ Ref<BitMatrix>& matrix);
80
+ static Point intersection(Line a, Line b);
81
+ static float computeModuleWidth(ArrayRef< Ref<ResultPoint> >& vertices);
82
+ static int computeDimension(Ref<ResultPoint> const& topLeft,
83
+ Ref<ResultPoint> const& topRight,
84
+ Ref<ResultPoint> const& bottomLeft,
85
+ Ref<ResultPoint> const& bottomRight,
86
+ float moduleWidth);
87
+ int computeYDimension(Ref<ResultPoint> const& topLeft,
88
+ Ref<ResultPoint> const& topRight,
89
+ Ref<ResultPoint> const& bottomLeft,
90
+ Ref<ResultPoint> const& bottomRight,
91
+ float moduleWidth);
92
+
93
+ Ref<BitMatrix> sampleLines(ArrayRef< Ref<ResultPoint> > const& vertices, int dimensionY, int dimension);
94
+
95
+ public:
96
+ Detector(Ref<BinaryBitmap> image);
97
+ Ref<BinaryBitmap> getImage();
98
+ Ref<DetectorResult> detect();
99
+ Ref<DetectorResult> detect(DecodeHints const& hints);
100
+ };
101
+
102
+ }
103
+ }
104
+ }
105
+
106
+ #endif // __DETECTOR_H__
@@ -0,0 +1,714 @@
1
+ // -*- mode:c++; tab-width:2; indent-tabs-mode:nil; c-basic-offset:2 -*-
2
+ /*
3
+ * Copyright 2010, 2012 ZXing authors All rights reserved.
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License");
6
+ * you may not use this file except in compliance with the License.
7
+ * You may obtain a copy of the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS,
13
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ * See the License for the specific language governing permissions and
15
+ * limitations under the License.
16
+ */
17
+
18
+ #include <map>
19
+ #include <zxing/pdf417/detector/LinesSampler.h>
20
+ #include <zxing/pdf417/decoder/BitMatrixParser.h>
21
+ #include <zxing/NotFoundException.h>
22
+ #include <zxing/common/Point.h>
23
+
24
+ using std::map;
25
+ using std::vector;
26
+ using std::min;
27
+ using std::abs;
28
+ using zxing::pdf417::detector::LinesSampler;
29
+ using zxing::pdf417::decoder::BitMatrixParser;
30
+ using zxing::Ref;
31
+ using zxing::BitMatrix;
32
+ using zxing::NotFoundException;
33
+ using zxing::Point;
34
+
35
+ // VC++
36
+ using zxing::Line;
37
+
38
+ const int LinesSampler::MODULES_IN_SYMBOL;
39
+ const int LinesSampler::BARS_IN_SYMBOL;
40
+ const int LinesSampler::POSSIBLE_SYMBOLS;
41
+ const int LinesSampler::BARCODE_START_OFFSET;
42
+
43
+ namespace {
44
+
45
+ class VoteResult {
46
+ private:
47
+ bool indecisive;
48
+ int vote;
49
+ public:
50
+ VoteResult() : indecisive(false), vote(0) {}
51
+ bool isIndecisive() {
52
+ return indecisive;
53
+ }
54
+ void setIndecisive(bool indecisive) {
55
+ this->indecisive = indecisive;
56
+ }
57
+ int getVote() {
58
+ return vote;
59
+ }
60
+ void setVote(int vote) {
61
+ this->vote = vote;
62
+ }
63
+ };
64
+
65
+ VoteResult getValueWithMaxVotes(map<int, int>& votes) {
66
+ VoteResult result;
67
+ int maxVotes = 0;
68
+ for (map<int, int>::iterator i = votes.begin(); i != votes.end(); i++) {
69
+ if (i->second > maxVotes) {
70
+ maxVotes = i->second;
71
+ result.setVote(i->first);
72
+ result.setIndecisive(false);
73
+ } else if (i->second == maxVotes) {
74
+ result.setIndecisive(true);
75
+ }
76
+ }
77
+ return result;
78
+ }
79
+
80
+ }
81
+
82
+ vector<float> LinesSampler::init_ratios_table() {
83
+ // Pre-computes and outputs the symbol ratio table.
84
+ vector<vector<float> > table (BitMatrixParser::SYMBOL_TABLE_LENGTH);
85
+ for(int i=0; i < (int)table.size(); ++i) {
86
+ table[i].resize(LinesSampler::BARS_IN_SYMBOL);
87
+ }
88
+ vector<float> RATIOS_TABLE (BitMatrixParser::SYMBOL_TABLE_LENGTH * LinesSampler::BARS_IN_SYMBOL);
89
+ int x = 0;
90
+ for (int i = 0; i < BitMatrixParser::SYMBOL_TABLE_LENGTH; i++) {
91
+ int currentSymbol = BitMatrixParser::SYMBOL_TABLE[i];
92
+ int currentBit = currentSymbol & 0x1;
93
+ for (int j = 0; j < BARS_IN_SYMBOL; j++) {
94
+ float size = 0.0f;
95
+ while ((currentSymbol & 0x1) == currentBit) {
96
+ size += 1.0f;
97
+ currentSymbol >>= 1;
98
+ }
99
+ currentBit = currentSymbol & 0x1;
100
+ table[i][BARS_IN_SYMBOL - j - 1] = size / MODULES_IN_SYMBOL;
101
+ }
102
+ for (int j = 0; j < BARS_IN_SYMBOL; j++) {
103
+ RATIOS_TABLE[x] = table[i][j];
104
+ x++;
105
+ }
106
+ }
107
+ return RATIOS_TABLE;
108
+ }
109
+
110
+ const vector<float> LinesSampler::RATIOS_TABLE = init_ratios_table();
111
+
112
+ LinesSampler::LinesSampler(Ref<BitMatrix> linesMatrix, int dimension)
113
+ : linesMatrix_(linesMatrix), dimension_(dimension) {}
114
+
115
+ /**
116
+ * Samples a grid from a lines matrix.
117
+ *
118
+ * @return the potentially decodable bit matrix.
119
+ */
120
+ Ref<BitMatrix> LinesSampler::sample() {
121
+ const int symbolsPerLine = dimension_ / MODULES_IN_SYMBOL;
122
+
123
+ // XXX
124
+ vector<float> symbolWidths;
125
+ computeSymbolWidths(symbolWidths, symbolsPerLine, linesMatrix_);
126
+
127
+ // XXX
128
+ vector<vector<int> > codewords(linesMatrix_->getHeight());
129
+ vector<vector<int> > clusterNumbers(linesMatrix_->getHeight());
130
+ linesMatrixToCodewords(clusterNumbers, symbolsPerLine, symbolWidths, linesMatrix_, codewords);
131
+
132
+ // XXX
133
+ vector<vector<map<int, int> > > votes =
134
+ distributeVotes(symbolsPerLine, codewords, clusterNumbers);
135
+
136
+ // XXX
137
+ vector<vector<int> > detectedCodeWords(votes.size());
138
+ for (int i = 0; i < (int)votes.size(); i++) {
139
+ detectedCodeWords[i].resize(votes[i].size(), 0);
140
+ for (int j = 0; j < (int)votes[i].size(); j++) {
141
+ if (!votes[i][j].empty()) {
142
+ detectedCodeWords[i][j] = getValueWithMaxVotes(votes[i][j]).getVote();
143
+ }
144
+ }
145
+ }
146
+
147
+ // XXX
148
+ vector<int> insertLinesAt = findMissingLines(symbolsPerLine, detectedCodeWords);
149
+
150
+ // XXX
151
+ int rowCount = decodeRowCount(symbolsPerLine, detectedCodeWords, insertLinesAt);
152
+ detectedCodeWords.resize(rowCount);
153
+
154
+ // XXX
155
+ Ref<BitMatrix> grid(new BitMatrix(dimension_, detectedCodeWords.size()));
156
+ codewordsToBitMatrix(detectedCodeWords, grid);
157
+
158
+ return grid;
159
+ }
160
+
161
+ /**
162
+ * @brief LinesSampler::codewordsToBitMatrix
163
+ * @param codewords
164
+ * @param matrix
165
+ */
166
+ void LinesSampler::codewordsToBitMatrix(vector<vector<int> > &codewords, Ref<BitMatrix> &matrix) {
167
+ for (int i = 0; i < (int)codewords.size(); i++) {
168
+ for (int j = 0; j < (int)codewords[i].size(); j++) {
169
+ int moduleOffset = j * MODULES_IN_SYMBOL;
170
+ for (int k = 0; k < MODULES_IN_SYMBOL; k++) {
171
+ if ((codewords[i][j] & (1 << (MODULES_IN_SYMBOL - k - 1))) > 0) {
172
+ matrix->set(moduleOffset + k, i);
173
+ }
174
+ }
175
+ }
176
+ }
177
+ }
178
+
179
+ /**
180
+ * @brief LinesSampler::calculateClusterNumber
181
+ * @param codeword
182
+ * @return
183
+ */
184
+ int LinesSampler::calculateClusterNumber(int codeword) {
185
+ if (codeword == 0) {
186
+ return -1;
187
+ }
188
+ int barNumber = 0;
189
+ bool blackBar = true;
190
+ int clusterNumber = 0;
191
+ for (int i = 0; i < MODULES_IN_SYMBOL; i++) {
192
+ if ((codeword & (1 << i)) > 0) {
193
+ if (!blackBar) {
194
+ blackBar = true;
195
+ barNumber++;
196
+ }
197
+ if (barNumber % 2 == 0) {
198
+ clusterNumber++;
199
+ } else {
200
+ clusterNumber--;
201
+ }
202
+ } else {
203
+ if (blackBar) {
204
+ blackBar = false;
205
+ }
206
+ }
207
+ }
208
+ return (clusterNumber + 9) % 9;
209
+ }
210
+
211
+ //#define OUTPUT_SYMBOL_WIDTH 1
212
+ //#define OUTPUT_BAR_WIDTH 1
213
+ //#define OUTPUT_CW_STARTS 1
214
+ //#define OUTPUT_CLUSTER_NUMBERS 1
215
+ //#define OUTPUT_EC_LEVEL 1
216
+
217
+ void LinesSampler::computeSymbolWidths(vector<float> &symbolWidths, const int symbolsPerLine, Ref<BitMatrix> linesMatrix)
218
+ {
219
+ int symbolStart = 0;
220
+ bool lastWasSymbolStart = true;
221
+ const float symbolWidth = symbolsPerLine > 0 ? (float)linesMatrix->getWidth() / (float)symbolsPerLine : (float)linesMatrix->getWidth();
222
+
223
+ // Use the following property of PDF417 barcodes to detect symbols:
224
+ // Every symbol starts with a black module and every symbol is 17 modules wide,
225
+ // therefore there have to be columns in the line matrix that are completely composed of black pixels.
226
+ vector<int> blackCount(linesMatrix->getWidth(), 0);
227
+ for (int x = BARCODE_START_OFFSET; x < linesMatrix->getWidth(); x++) {
228
+ for (int y = 0; y < linesMatrix->getHeight(); y++) {
229
+ if (linesMatrix->get(x, y)) {
230
+ blackCount[x]++;
231
+ }
232
+ }
233
+ if (blackCount[x] == linesMatrix->getHeight()) {
234
+ if (!lastWasSymbolStart) {
235
+ float currentWidth = (float)(x - symbolStart);
236
+ // Make sure we really found a symbol by asserting a minimal size of 75% of the expected symbol width.
237
+ // This might break highly distorted barcodes, but fixes an issue with barcodes where there is a
238
+ // full black column from top to bottom within a symbol.
239
+ if (currentWidth > 0.75 * symbolWidth) {
240
+ // The actual symbol width might be slightly bigger than the expected symbol width,
241
+ // but if we are more than half an expected symbol width bigger, we assume that
242
+ // we missed one or more symbols and assume that they were the expected symbol width.
243
+ while (currentWidth > 1.5 * symbolWidth) {
244
+ symbolWidths.push_back(symbolWidth);
245
+ currentWidth -= symbolWidth;
246
+ }
247
+ symbolWidths.push_back(currentWidth);
248
+ lastWasSymbolStart = true;
249
+ symbolStart = x;
250
+ }
251
+ }
252
+ } else {
253
+ if (lastWasSymbolStart) {
254
+ lastWasSymbolStart = false;
255
+ }
256
+ }
257
+ }
258
+
259
+ // The last symbol ends at the right edge of the matrix, where there usually is no black bar.
260
+ float currentWidth = (float)(linesMatrix->getWidth() - symbolStart);
261
+ while (currentWidth > 1.5 * symbolWidth) {
262
+ symbolWidths.push_back(symbolWidth);
263
+ currentWidth -= symbolWidth;
264
+ }
265
+ symbolWidths.push_back(currentWidth);
266
+
267
+
268
+ #if PDF417_DIAG && OUTPUT_SYMBOL_WIDTH
269
+ {
270
+ cout << "symbols per line: " << symbolsPerLine << endl;
271
+ cout << "symbol width (" << symbolWidths.size() << "): ";
272
+ for (int i = 0; i < symbolWidths.size(); i++) {
273
+ cout << symbolWidths[i] << ", ";
274
+ }
275
+ cout << endl;
276
+ }
277
+ #endif
278
+ }
279
+
280
+ void LinesSampler::linesMatrixToCodewords(vector<vector<int> >& clusterNumbers,
281
+ const int symbolsPerLine,
282
+ const vector<float>& symbolWidths,
283
+ Ref<BitMatrix> linesMatrix,
284
+ vector<vector<int> >& codewords)
285
+ {
286
+ for (int y = 0; y < linesMatrix->getHeight(); y++) {
287
+ // Not sure if this is the right way to handle this but avoids an error:
288
+ if (symbolsPerLine > (int)symbolWidths.size()) {
289
+ throw NotFoundException("Inconsistent number of symbols in this line.");
290
+ }
291
+
292
+ // TODO: use symbolWidths.size() instead of symbolsPerLine to at least decode some codewords
293
+
294
+ codewords[y].resize(symbolsPerLine, 0);
295
+ clusterNumbers[y].resize(symbolsPerLine, -1);
296
+ int line = y;
297
+ vector<int> barWidths(1, 0);
298
+ int barCount = 0;
299
+ // Runlength encode the bars in the scanned linesMatrix.
300
+ // We assume that the first bar is black, as determined by the PDF417 standard.
301
+ bool isSetBar = true;
302
+ // Filter small white bars at the beginning of the barcode.
303
+ // Small white bars may occur due to small deviations in scan line sampling.
304
+ barWidths[0] += BARCODE_START_OFFSET;
305
+ for (int x = BARCODE_START_OFFSET; x < linesMatrix->getWidth(); x++) {
306
+ if (linesMatrix->get(x, line)) {
307
+ if (!isSetBar) {
308
+ isSetBar = true;
309
+ barCount++;
310
+ barWidths.resize(barWidths.size() + 1);
311
+ }
312
+ } else {
313
+ if (isSetBar) {
314
+ isSetBar = false;
315
+ barCount++;
316
+ barWidths.resize(barWidths.size() + 1);
317
+ }
318
+
319
+ }
320
+ barWidths[barCount]++;
321
+ }
322
+ // Don't forget the last bar.
323
+ barCount++;
324
+ barWidths.resize(barWidths.size() + 1);
325
+
326
+ #if PDF417_DIAG && OUTPUT_BAR_WIDTH
327
+ {
328
+ for (int i = 0; i < barWidths.size(); i++) {
329
+ cout << barWidths[i] << ", ";
330
+ }
331
+ cout << endl;
332
+ }
333
+ #endif
334
+
335
+ //////////////////////////////////////////////////
336
+
337
+ // Find the symbols in the line by counting bar lengths until we reach symbolWidth.
338
+ // We make sure, that the last bar of a symbol is always white, as determined by the PDF417 standard.
339
+ // This helps to reduce the amount of errors done during the symbol recognition.
340
+ // The symbolWidth usually is not constant over the width of the barcode.
341
+ int cwWidth = 0;
342
+ int cwCount = 0;
343
+ vector<int> cwStarts(symbolsPerLine, 0);
344
+ cwStarts[0] = 0;
345
+ cwCount++;
346
+ for (int i = 0; i < barCount && cwCount < symbolsPerLine; i++) {
347
+ cwWidth += barWidths[i];
348
+ if ((float)cwWidth > symbolWidths[cwCount - 1]) {
349
+ if ((i % 2) == 1) { // check if bar is white
350
+ i++;
351
+ }
352
+ cwWidth = barWidths[i];
353
+ cwStarts[cwCount] = i;
354
+ cwCount++;
355
+ }
356
+ }
357
+
358
+ #if PDF417_DIAG && OUTPUT_CW_STARTS
359
+ {
360
+ for (int i = 0; i < cwStarts.size(); i++) {
361
+ cout << cwStarts[i] << ", ";
362
+ }
363
+ cout << endl;
364
+ }
365
+ #endif
366
+
367
+ ///////////////////////////////////////////
368
+
369
+ vector<vector<float> > cwRatios(symbolsPerLine);
370
+ // Distribute bar widths to modules of a codeword.
371
+ for (int i = 0; i < symbolsPerLine; i++) {
372
+ cwRatios[i].resize(BARS_IN_SYMBOL, 0.0f);
373
+ const int cwStart = cwStarts[i];
374
+ const int cwEnd = (i == symbolsPerLine - 1) ? barCount : cwStarts[i + 1];
375
+ const int cwLength = cwEnd - cwStart;
376
+
377
+ if (cwLength < 7 || cwLength > 9) {
378
+ // We try to recover smybols with 7 or 9 bars and spaces with heuristics, but everything else is beyond repair.
379
+ continue;
380
+ }
381
+
382
+ float cwWidth = 0;
383
+
384
+ // For symbols with 9 bar length simply ignore the last bar.
385
+ for (int j = 0; j < min(BARS_IN_SYMBOL, cwLength); ++j) {
386
+ cwWidth += (float)barWidths[cwStart + j];
387
+ }
388
+
389
+ // If there were only 7 bars and spaces detected use the following heuristic:
390
+ // Assume the length of the symbol is symbolWidth and the last (unrecognized) bar uses all remaining space.
391
+ if (cwLength == 7) {
392
+ for (int j = 0; j < cwLength; ++j) {
393
+ cwRatios[i][j] = (float)barWidths[cwStart + j] / symbolWidths[i];
394
+ }
395
+ cwRatios[i][7] = (symbolWidths[i] - cwWidth) / symbolWidths[i];
396
+ } else {
397
+ for (int j = 0; j < (int)cwRatios[i].size(); ++j) {
398
+ cwRatios[i][j] = (float)barWidths[cwStart + j] / cwWidth;
399
+ }
400
+ }
401
+
402
+ float bestMatchError = std::numeric_limits<float>::max();
403
+ int bestMatch = 0;
404
+
405
+ // Search for the most possible codeword by comparing the ratios of bar size to symbol width.
406
+ // The sum of the squared differences is used as similarity metric.
407
+ // (Picture it as the square euclidian distance in the space of eight tuples where a tuple represents the bar ratios.)
408
+ for (int j = 0; j < POSSIBLE_SYMBOLS; j++) {
409
+ float error = 0.0f;
410
+ for (int k = 0; k < BARS_IN_SYMBOL; k++) {
411
+ float diff = RATIOS_TABLE[j * BARS_IN_SYMBOL + k] - cwRatios[i][k];
412
+ error += diff * diff;
413
+ if (error >= bestMatchError) {
414
+ break;
415
+ }
416
+ }
417
+ if (error < bestMatchError) {
418
+ bestMatchError = error;
419
+ bestMatch = BitMatrixParser::SYMBOL_TABLE[j];
420
+ }
421
+ }
422
+ codewords[y][i] = bestMatch;
423
+ clusterNumbers[y][i] = calculateClusterNumber(bestMatch);
424
+ }
425
+ }
426
+
427
+
428
+ #if PDF417_DIAG && OUTPUT_CLUSTER_NUMBERS
429
+ {
430
+ for (int i = 0; i < clusterNumbers.size(); i++) {
431
+ for (int j = 0; j < clusterNumbers[i].size(); j++) {
432
+ cout << clusterNumbers[i][j] << ", ";
433
+ }
434
+ cout << endl;
435
+ }
436
+ }
437
+ #endif
438
+
439
+
440
+ #if PDF417_DIAG
441
+ {
442
+ Ref<BitMatrix> bits(new BitMatrix(symbolsPerLine * MODULES_IN_SYMBOL, codewords.size()));
443
+ codewordsToBitMatrix(codewords, bits);
444
+ static int __cnt__ = 0;
445
+ stringstream ss;
446
+ ss << "pdf417-detectedRaw" << __cnt__++ << ".png";
447
+ bits->writePng(ss.str().c_str(), 8, 16);
448
+ }
449
+ #endif
450
+ }
451
+
452
+ vector<vector<map<int, int> > >
453
+ LinesSampler::distributeVotes(const int symbolsPerLine,
454
+ const vector<vector<int> >& codewords,
455
+ const vector<vector<int> >& clusterNumbers)
456
+ {
457
+ // Matrix of votes for codewords which are possible at this position.
458
+ vector<vector<map<int, int> > > votes(1);
459
+ votes[0].resize(symbolsPerLine);
460
+
461
+ int currentRow = 0;
462
+ map<int, int> clusterNumberVotes;
463
+ int lastLineClusterNumber = -1;
464
+
465
+ for (int y = 0; y < (int)codewords.size(); y++) {
466
+ // Vote for the most probable cluster number for this row.
467
+ clusterNumberVotes.clear();
468
+ for (int i = 0; i < (int)codewords[y].size(); i++) {
469
+ if (clusterNumbers[y][i] != -1) {
470
+ clusterNumberVotes[clusterNumbers[y][i]] = clusterNumberVotes[clusterNumbers[y][i]] + 1;
471
+ }
472
+ }
473
+
474
+ // Ignore lines where no codeword could be read.
475
+ if (!clusterNumberVotes.empty()) {
476
+ VoteResult voteResult = getValueWithMaxVotes(clusterNumberVotes);
477
+ bool lineClusterNumberIsIndecisive = voteResult.isIndecisive();
478
+ int lineClusterNumber = voteResult.getVote();
479
+
480
+ // If there are to few votes on the lines cluster number, we keep the old one.
481
+ // This avoids switching lines because of damaged inter line readings, but
482
+ // may cause problems for barcodes with four or less rows.
483
+ if (lineClusterNumberIsIndecisive) {
484
+ lineClusterNumber = lastLineClusterNumber;
485
+ }
486
+
487
+ if ((lineClusterNumber != ((lastLineClusterNumber + 3) % 9)) && (lastLineClusterNumber != -1)) {
488
+ lineClusterNumber = lastLineClusterNumber;
489
+ }
490
+
491
+ // Ignore broken lines at the beginning of the barcode.
492
+ if ((lineClusterNumber == 0 && lastLineClusterNumber == -1) || (lastLineClusterNumber != -1)) {
493
+ if ((lineClusterNumber == ((lastLineClusterNumber + 3) % 9)) && (lastLineClusterNumber != -1)) {
494
+ currentRow++;
495
+ if ((int)votes.size() < currentRow + 1) {
496
+ votes.resize(currentRow + 1);
497
+ votes[currentRow].resize(symbolsPerLine);
498
+ }
499
+ }
500
+
501
+ if ((lineClusterNumber == ((lastLineClusterNumber + 6) % 9)) && (lastLineClusterNumber != -1)) {
502
+ currentRow += 2;
503
+ if ((int)votes.size() < currentRow + 1) {
504
+ votes.resize(currentRow + 1);
505
+ votes[currentRow].resize(symbolsPerLine);
506
+ }
507
+ }
508
+
509
+ for (int i = 0; i < (int)codewords[y].size(); i++) {
510
+ if (clusterNumbers[y][i] != -1) {
511
+ if (clusterNumbers[y][i] == lineClusterNumber) {
512
+ votes[currentRow][i][codewords[y][i]] = votes[currentRow][i][codewords[y][i]] + 1;
513
+ } else if (clusterNumbers[y][i] == ((lineClusterNumber + 3) % 9)) {
514
+ if ((int)votes.size() < currentRow + 2) {
515
+ votes.resize(currentRow + 2);
516
+ votes[currentRow + 1].resize(symbolsPerLine);
517
+ }
518
+ votes[currentRow + 1][i][codewords[y][i]] = votes[currentRow + 1][i][codewords[y][i]] + 1;
519
+ } else if ((clusterNumbers[y][i] == ((lineClusterNumber + 6) % 9)) && (currentRow > 0)) {
520
+ votes[currentRow - 1][i][codewords[y][i]] = votes[currentRow - 1][i][codewords[y][i]] + 1;
521
+ }
522
+ }
523
+ }
524
+ lastLineClusterNumber = lineClusterNumber;
525
+ }
526
+ }
527
+ }
528
+
529
+ return votes;
530
+ }
531
+
532
+
533
+ vector<int>
534
+ LinesSampler::findMissingLines(const int symbolsPerLine, vector<vector<int> > &detectedCodeWords) {
535
+ vector<int> insertLinesAt;
536
+ if (detectedCodeWords.size() > 1) {
537
+ for (int i = 0; i < (int)detectedCodeWords.size() - 1; i++) {
538
+ int clusterNumberRow = -1;
539
+ for (int j = 0; j < (int)detectedCodeWords[i].size() && clusterNumberRow == -1; j++) {
540
+ int clusterNumber = calculateClusterNumber(detectedCodeWords[i][j]);
541
+ if (clusterNumber != -1) {
542
+ clusterNumberRow = clusterNumber;
543
+ }
544
+ }
545
+ if (i == 0) {
546
+ // The first line must have the cluster number 0. Insert empty lines to match this.
547
+ if (clusterNumberRow > 0) {
548
+ insertLinesAt.push_back(0);
549
+ if (clusterNumberRow > 3) {
550
+ insertLinesAt.push_back(0);
551
+ }
552
+ }
553
+ }
554
+ int clusterNumberNextRow = -1;
555
+ for (int j = 0; j < (int)detectedCodeWords[i + 1].size() && clusterNumberNextRow == -1; j++) {
556
+ int clusterNumber = calculateClusterNumber(detectedCodeWords[i + 1][j]);
557
+ if (clusterNumber != -1) {
558
+ clusterNumberNextRow = clusterNumber;
559
+ }
560
+ }
561
+ if ((clusterNumberRow + 3) % 9 != clusterNumberNextRow
562
+ && clusterNumberRow != -1
563
+ && clusterNumberNextRow != -1) {
564
+ // The cluster numbers are not consecutive. Insert an empty line between them.
565
+ insertLinesAt.push_back(i + 1);
566
+ if (clusterNumberRow == clusterNumberNextRow) {
567
+ // There may be two lines missing. This is detected when two consecutive lines have the same cluster number.
568
+ insertLinesAt.push_back(i + 1);
569
+ }
570
+ }
571
+ }
572
+ }
573
+
574
+ for (int i = 0; i < (int)insertLinesAt.size(); i++) {
575
+ detectedCodeWords.insert(detectedCodeWords.begin() + insertLinesAt[i] + i, vector<int>(symbolsPerLine, 0));
576
+ }
577
+
578
+ return insertLinesAt;
579
+ }
580
+
581
+ int LinesSampler::decodeRowCount(const int symbolsPerLine, vector<vector<int> > &detectedCodeWords, vector<int> &insertLinesAt)
582
+ {
583
+ // Use the information in the first and last column to determin the number of rows and find more missing rows.
584
+ // For missing rows insert blank space, so the error correction can try to fill them in.
585
+
586
+ map<int, int> rowCountVotes;
587
+ map<int, int> ecLevelVotes;
588
+ map<int, int> rowNumberVotes;
589
+ int lastRowNumber = -1;
590
+ insertLinesAt.clear();
591
+
592
+ for (int i = 0; i + 2 < (int)detectedCodeWords.size(); i += 3) {
593
+ rowNumberVotes.clear();
594
+ int firstCodewordDecodedLeft = -1;
595
+ int secondCodewordDecodedLeft = -1;
596
+ int thirdCodewordDecodedLeft = -1;
597
+ int firstCodewordDecodedRight = -1;
598
+ int secondCodewordDecodedRight = -1;
599
+ int thirdCodewordDecodedRight = -1;
600
+
601
+ if (detectedCodeWords[i][0] != 0) {
602
+ firstCodewordDecodedLeft = BitMatrixParser::getCodeword(detectedCodeWords[i][0]);
603
+ }
604
+ if (detectedCodeWords[i + 1][0] != 0) {
605
+ secondCodewordDecodedLeft = BitMatrixParser::getCodeword(detectedCodeWords[i + 1][0]);
606
+ }
607
+ if (detectedCodeWords[i + 2][0] != 0) {
608
+ thirdCodewordDecodedLeft = BitMatrixParser::getCodeword(detectedCodeWords[i + 2][0]);
609
+ }
610
+
611
+ if (detectedCodeWords[i][detectedCodeWords[i].size() - 1] != 0) {
612
+ firstCodewordDecodedRight = BitMatrixParser::getCodeword(detectedCodeWords[i][detectedCodeWords[i].size() - 1]);
613
+ }
614
+ if (detectedCodeWords[i + 1][detectedCodeWords[i + 1].size() - 1] != 0) {
615
+ secondCodewordDecodedRight = BitMatrixParser::getCodeword(detectedCodeWords[i + 1][detectedCodeWords[i + 1].size() - 1]);
616
+ }
617
+ if (detectedCodeWords[i + 2][detectedCodeWords[i + 2].size() - 1] != 0) {
618
+ thirdCodewordDecodedRight = BitMatrixParser::getCodeword(detectedCodeWords[i + 2][detectedCodeWords[i + 2].size() - 1]);
619
+ }
620
+
621
+ if (firstCodewordDecodedLeft != -1 && secondCodewordDecodedLeft != -1) {
622
+ int leftRowCount = ((firstCodewordDecodedLeft % 30) * 3) + ((secondCodewordDecodedLeft % 30) % 3);
623
+ int leftECLevel = (secondCodewordDecodedLeft % 30) / 3;
624
+
625
+ rowCountVotes[leftRowCount] = rowCountVotes[leftRowCount] + 1;
626
+ ecLevelVotes[leftECLevel] = ecLevelVotes[leftECLevel] + 1;
627
+ }
628
+
629
+ if (secondCodewordDecodedRight != -1 && thirdCodewordDecodedRight != -1) {
630
+ int rightRowCount = ((secondCodewordDecodedRight % 30) * 3) + ((thirdCodewordDecodedRight % 30) % 3);
631
+ int rightECLevel = (thirdCodewordDecodedRight % 30) / 3;
632
+
633
+ rowCountVotes[rightRowCount] = rowCountVotes[rightRowCount] + 1;
634
+ ecLevelVotes[rightECLevel] = ecLevelVotes[rightECLevel] + 1;
635
+ }
636
+
637
+ if (firstCodewordDecodedLeft != -1) {
638
+ int rowNumber = firstCodewordDecodedLeft / 30;
639
+ rowNumberVotes[rowNumber] = rowNumberVotes[rowNumber] + 1;
640
+ }
641
+ if (secondCodewordDecodedLeft != -1) {
642
+ int rowNumber = secondCodewordDecodedLeft / 30;
643
+ rowNumberVotes[rowNumber] = rowNumberVotes[rowNumber] + 1;
644
+ }
645
+ if (thirdCodewordDecodedLeft != -1) {
646
+ int rowNumber = thirdCodewordDecodedLeft / 30;
647
+ rowNumberVotes[rowNumber] = rowNumberVotes[rowNumber] + 1;
648
+ }
649
+ if (firstCodewordDecodedRight != -1) {
650
+ int rowNumber = firstCodewordDecodedRight / 30;
651
+ rowNumberVotes[rowNumber] = rowNumberVotes[rowNumber] + 1;
652
+ }
653
+ if (secondCodewordDecodedRight != -1) {
654
+ int rowNumber = secondCodewordDecodedRight / 30;
655
+ rowNumberVotes[rowNumber] = rowNumberVotes[rowNumber] + 1;
656
+ }
657
+ if (thirdCodewordDecodedRight != -1) {
658
+ int rowNumber = thirdCodewordDecodedRight / 30;
659
+ rowNumberVotes[rowNumber] = rowNumberVotes[rowNumber] + 1;
660
+ }
661
+ int rowNumber = getValueWithMaxVotes(rowNumberVotes).getVote();
662
+ if (lastRowNumber + 1 < rowNumber) {
663
+ for (int j = lastRowNumber + 1; j < rowNumber; j++) {
664
+ insertLinesAt.push_back(i);
665
+ insertLinesAt.push_back(i);
666
+ insertLinesAt.push_back(i);
667
+ }
668
+ }
669
+ lastRowNumber = rowNumber;
670
+ }
671
+
672
+ for (int i = 0; i < (int)insertLinesAt.size(); i++) {
673
+ detectedCodeWords.insert(detectedCodeWords.begin() + insertLinesAt[i] + i, vector<int>(symbolsPerLine, 0));
674
+ }
675
+
676
+ int rowCount = getValueWithMaxVotes(rowCountVotes).getVote();
677
+ // int ecLevel = getValueWithMaxVotes(ecLevelVotes);
678
+
679
+ #if PDF417_DIAG && OUTPUT_EC_LEVEL
680
+ {
681
+ cout << "EC Level: " << ecLevel << " (" << ((1 << (ecLevel + 1)) - 2) << " EC Codewords)" << endl;
682
+ }
683
+ #endif
684
+ rowCount += 1;
685
+ return rowCount;
686
+ }
687
+
688
+ /**
689
+ * Ends up being a bit faster than Math.round(). This merely rounds its
690
+ * argument to the nearest int, where x.5 rounds up.
691
+ */
692
+ int LinesSampler::round(float d)
693
+ {
694
+ return (int)(d + 0.5f);
695
+ }
696
+
697
+ Point LinesSampler::intersection(Line a, Line b) {
698
+ float dxa = a.start.x - a.end.x;
699
+ float dxb = b.start.x - b.end.x;
700
+ float dya = a.start.y - a.end.y;
701
+ float dyb = b.start.y - b.end.y;
702
+
703
+ float p = a.start.x * a.end.y - a.start.y * a.end.x;
704
+ float q = b.start.x * b.end.y - b.start.y * b.end.x;
705
+ float denom = dxa * dyb - dya * dxb;
706
+ if(abs(denom) < 1e-12) // Lines don't intersect (replaces "denom == 0")
707
+ return Point(std::numeric_limits<float>::infinity(),
708
+ std::numeric_limits<float>::infinity());
709
+
710
+ float x = (p * dxb - dxa * q) / denom;
711
+ float y = (p * dyb - dya * q) / denom;
712
+
713
+ return Point(x, y);
714
+ }