zxing_cpp_mac_big_sur 0.1.1

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 +137 -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 +89 -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 +45 -0
  18. data/ext/zxing/zxing-cpp/cli/src/ImageReaderSource.cpp +113 -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 +105 -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 +175 -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 +415 -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 +447 -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 +497 -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 +329 -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 +303 -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 +228 -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 +70 -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 +665 -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 +715 -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 +428 -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 +315 -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 +109 -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 +472 -0
@@ -0,0 +1,81 @@
1
+ // -*- mode:c++; tab-width:2; indent-tabs-mode:nil; c-basic-offset:2 -*-
2
+ #ifndef __ONED_READER_H__
3
+ #define __ONED_READER_H__
4
+
5
+ /*
6
+ * OneDReader.h
7
+ * ZXing
8
+ *
9
+ * Copyright 2010 ZXing authors All rights reserved.
10
+ *
11
+ * Licensed under the Apache License, Version 2.0 (the "License");
12
+ * you may not use this file except in compliance with the License.
13
+ * You may obtain a copy of the License at
14
+ *
15
+ * http://www.apache.org/licenses/LICENSE-2.0
16
+ *
17
+ * Unless required by applicable law or agreed to in writing, software
18
+ * distributed under the License is distributed on an "AS IS" BASIS,
19
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
20
+ * See the License for the specific language governing permissions and
21
+ * limitations under the License.
22
+ */
23
+
24
+ #include <zxing/Reader.h>
25
+
26
+ namespace zxing {
27
+ namespace oned {
28
+
29
+ class OneDReader : public Reader {
30
+ private:
31
+ Ref<Result> doDecode(Ref<BinaryBitmap> image, DecodeHints hints);
32
+
33
+ protected:
34
+ static const int INTEGER_MATH_SHIFT = 8;
35
+
36
+ struct Range {
37
+ private:
38
+ int data[2];
39
+ public:
40
+ Range() {}
41
+ Range(int zero, int one) {
42
+ data[0] = zero;
43
+ data[1] = one;
44
+ }
45
+ int& operator [] (int index) {
46
+ return data[index];
47
+ }
48
+ int const& operator [] (int index) const {
49
+ return data[index];
50
+ }
51
+ };
52
+
53
+ static int patternMatchVariance(std::vector<int>& counters,
54
+ std::vector<int> const& pattern,
55
+ int maxIndividualVariance);
56
+ static int patternMatchVariance(std::vector<int>& counters,
57
+ int const pattern[],
58
+ int maxIndividualVariance);
59
+
60
+ protected:
61
+ static const int PATTERN_MATCH_RESULT_SCALE_FACTOR = 1 << INTEGER_MATH_SHIFT;
62
+
63
+ public:
64
+
65
+ OneDReader();
66
+ virtual Ref<Result> decode(Ref<BinaryBitmap> image, DecodeHints hints);
67
+
68
+ // Implementations must not throw any exceptions. If a barcode is not found on this row,
69
+ // a empty ref should be returned e.g. return Ref<Result>();
70
+ virtual Ref<Result> decodeRow(int rowNumber, Ref<BitArray> row) = 0;
71
+
72
+ static void recordPattern(Ref<BitArray> row,
73
+ int start,
74
+ std::vector<int>& counters);
75
+ virtual ~OneDReader();
76
+ };
77
+
78
+ }
79
+ }
80
+
81
+ #endif
@@ -0,0 +1,28 @@
1
+ /*
2
+ * OneDResultPoint.cpp
3
+ * ZXing
4
+ *
5
+ * Copyright 2010 ZXing authors All rights reserved.
6
+ *
7
+ * Licensed under the Apache License, Version 2.0 (the "License");
8
+ * you may not use this file except in compliance with the License.
9
+ * You may obtain a copy of the License at
10
+ *
11
+ * http://www.apache.org/licenses/LICENSE-2.0
12
+ *
13
+ * Unless required by applicable law or agreed to in writing, software
14
+ * distributed under the License is distributed on an "AS IS" BASIS,
15
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16
+ * See the License for the specific language governing permissions and
17
+ * limitations under the License.
18
+ */
19
+
20
+ #include "OneDResultPoint.h"
21
+
22
+ namespace zxing {
23
+ namespace oned {
24
+
25
+ OneDResultPoint::OneDResultPoint(float posX, float posY) : ResultPoint(posX,posY) {
26
+ }
27
+ }
28
+ }
@@ -0,0 +1,35 @@
1
+ #ifndef __ONED_RESULT_POINT_H__
2
+ #define __ONED_RESULT_POINT_H__
3
+ /*
4
+ * OneDResultPoint.h
5
+ * ZXing
6
+ *
7
+ * Copyright 2010 ZXing authors All rights reserved.
8
+ *
9
+ * Licensed under the Apache License, Version 2.0 (the "License");
10
+ * you may not use this file except in compliance with the License.
11
+ * You may obtain a copy of the License at
12
+ *
13
+ * http://www.apache.org/licenses/LICENSE-2.0
14
+ *
15
+ * Unless required by applicable law or agreed to in writing, software
16
+ * distributed under the License is distributed on an "AS IS" BASIS,
17
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18
+ * See the License for the specific language governing permissions and
19
+ * limitations under the License.
20
+ */
21
+ #include <zxing/ResultPoint.h>
22
+ #include <cmath>
23
+
24
+ namespace zxing {
25
+ namespace oned {
26
+
27
+ class OneDResultPoint : public ResultPoint {
28
+
29
+ public:
30
+ OneDResultPoint(float posX, float posY);
31
+ };
32
+ }
33
+ }
34
+
35
+ #endif
@@ -0,0 +1,70 @@
1
+ // -*- mode:c++; tab-width:2; indent-tabs-mode:nil; c-basic-offset:2 -*-
2
+ /*
3
+ * UPCAReader.cpp
4
+ * ZXing
5
+ *
6
+ * Copyright 2010 ZXing authors All rights reserved.
7
+ *
8
+ * Licensed under the Apache License, Version 2.0 (the "License");
9
+ * you may not use this file except in compliance with the License.
10
+ * You may obtain a copy of the License at
11
+ *
12
+ * http://www.apache.org/licenses/LICENSE-2.0
13
+ *
14
+ * Unless required by applicable law or agreed to in writing, software
15
+ * distributed under the License is distributed on an "AS IS" BASIS,
16
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17
+ * See the License for the specific language governing permissions and
18
+ * limitations under the License.
19
+ */
20
+
21
+ #include "UPCAReader.h"
22
+ #include <zxing/FormatException.h>
23
+
24
+ using zxing::oned::UPCAReader;
25
+ using zxing::Ref;
26
+ using zxing::Result;
27
+
28
+ // VC++
29
+ using zxing::BitArray;
30
+ using zxing::BinaryBitmap;
31
+ using zxing::DecodeHints;
32
+ using zxing::FormatException;
33
+
34
+ UPCAReader::UPCAReader() : ean13Reader() {}
35
+
36
+ Ref<Result> UPCAReader::decodeRow(int rowNumber, Ref<BitArray> row) {
37
+ return maybeReturnResult(ean13Reader.decodeRow(rowNumber, row));
38
+ }
39
+
40
+ Ref<Result> UPCAReader::decodeRow(int rowNumber,
41
+ Ref<BitArray> row,
42
+ Range const& startGuardRange) {
43
+ return maybeReturnResult(ean13Reader.decodeRow(rowNumber, row, startGuardRange));
44
+ }
45
+
46
+ Ref<Result> UPCAReader::decode(Ref<BinaryBitmap> image, DecodeHints hints) {
47
+ return maybeReturnResult(ean13Reader.decode(image, hints));
48
+ }
49
+
50
+ int UPCAReader::decodeMiddle(Ref<BitArray> row,
51
+ Range const& startRange,
52
+ std::string& resultString) {
53
+ return ean13Reader.decodeMiddle(row, startRange, resultString);
54
+ }
55
+
56
+ Ref<Result> UPCAReader::maybeReturnResult(Ref<Result> result) {
57
+ const std::string& text = (result->getText())->getText();
58
+ if (text[0] == '0') {
59
+ Ref<String> resultString(new String(text.substr(1)));
60
+ Ref<Result> res(new Result(resultString, result->getRawBytes(), result->getResultPoints(),
61
+ BarcodeFormat::UPC_A));
62
+ return res;
63
+ } else {
64
+ throw FormatException();
65
+ }
66
+ }
67
+
68
+ zxing::BarcodeFormat UPCAReader::getBarcodeFormat(){
69
+ return BarcodeFormat::UPC_A;
70
+ }
@@ -0,0 +1,50 @@
1
+ // -*- mode:c++; tab-width:2; indent-tabs-mode:nil; c-basic-offset:2 -*-
2
+ #ifndef __UPCA_READER_H__
3
+ #define __UPCA_READER_H__
4
+ /*
5
+ * UPCAReader.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/oned/EAN13Reader.h>
24
+ #include <zxing/DecodeHints.h>
25
+
26
+ namespace zxing {
27
+ namespace oned {
28
+
29
+ class UPCAReader : public UPCEANReader {
30
+
31
+ private:
32
+ EAN13Reader ean13Reader;
33
+ static Ref<Result> maybeReturnResult(Ref<Result> result);
34
+
35
+ public:
36
+ UPCAReader();
37
+
38
+ int decodeMiddle(Ref<BitArray> row, Range const& startRange, std::string& resultString);
39
+
40
+ Ref<Result> decodeRow(int rowNumber, Ref<BitArray> row);
41
+ Ref<Result> decodeRow(int rowNumber, Ref<BitArray> row, Range const& startGuardRange);
42
+ Ref<Result> decode(Ref<BinaryBitmap> image, DecodeHints hints);
43
+
44
+ BarcodeFormat getBarcodeFormat();
45
+ };
46
+
47
+ }
48
+ }
49
+
50
+ #endif
@@ -0,0 +1,309 @@
1
+ // -*- mode:c++; tab-width:2; indent-tabs-mode:nil; c-basic-offset:2 -*-
2
+ /*
3
+ * UPCEANReader.cpp
4
+ * ZXing
5
+ *
6
+ * Copyright 2010 ZXing authors All rights reserved.
7
+ *
8
+ * Licensed under the Apache License, Version 2.0 (the "License");
9
+ * you may not use this file except in compliance with the License.
10
+ * You may obtain a copy of the License at
11
+ *
12
+ * http://www.apache.org/licenses/LICENSE-2.0
13
+ *
14
+ * Unless required by applicable law or agreed to in writing, software
15
+ * distributed under the License is distributed on an "AS IS" BASIS,
16
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17
+ * See the License for the specific language governing permissions and
18
+ * limitations under the License.
19
+ */
20
+
21
+ #include <zxing/ZXing.h>
22
+ #include <zxing/oned/UPCEANReader.h>
23
+ #include <zxing/oned/OneDResultPoint.h>
24
+ #include <zxing/ReaderException.h>
25
+ #include <zxing/NotFoundException.h>
26
+ #include <zxing/FormatException.h>
27
+ #include <zxing/ChecksumException.h>
28
+
29
+ using std::vector;
30
+ using std::string;
31
+
32
+ using zxing::Ref;
33
+ using zxing::Result;
34
+ using zxing::NotFoundException;
35
+ using zxing::FormatException;
36
+ using zxing::ChecksumException;
37
+ using zxing::oned::UPCEANReader;
38
+
39
+ // VC++
40
+ using zxing::BitArray;
41
+ using zxing::String;
42
+
43
+ #define LEN(v) ((int)(sizeof(v)/sizeof(v[0])))
44
+
45
+ namespace {
46
+
47
+ /**
48
+ * Start/end guard pattern.
49
+ */
50
+ const int START_END_PATTERN_[] = {1, 1, 1};
51
+ const int START_END_PATTERN_LEN = LEN(START_END_PATTERN_);
52
+
53
+ /**
54
+ * Pattern marking the middle of a UPC/EAN pattern, separating the two halves.
55
+ */
56
+ const int MIDDLE_PATTERN_[] = {1, 1, 1, 1, 1};
57
+ const int MIDDLE_PATTERN_LEN = LEN(MIDDLE_PATTERN_);
58
+
59
+ /**
60
+ * "Odd", or "L" patterns used to encode UPC/EAN digits.
61
+ */
62
+ const int L_PATTERNS_[][4] = {
63
+ {3, 2, 1, 1}, // 0
64
+ {2, 2, 2, 1}, // 1
65
+ {2, 1, 2, 2}, // 2
66
+ {1, 4, 1, 1}, // 3
67
+ {1, 1, 3, 2}, // 4
68
+ {1, 2, 3, 1}, // 5
69
+ {1, 1, 1, 4}, // 6
70
+ {1, 3, 1, 2}, // 7
71
+ {1, 2, 1, 3}, // 8
72
+ {3, 1, 1, 2} // 9
73
+ };
74
+ const int L_PATTERNS_LEN = LEN(L_PATTERNS_);
75
+
76
+ /**
77
+ * As above but also including the "even", or "G" patterns used to encode UPC/EAN digits.
78
+ */
79
+ const int L_AND_G_PATTERNS_[][4] = {
80
+ {3, 2, 1, 1}, // 0
81
+ {2, 2, 2, 1}, // 1
82
+ {2, 1, 2, 2}, // 2
83
+ {1, 4, 1, 1}, // 3
84
+ {1, 1, 3, 2}, // 4
85
+ {1, 2, 3, 1}, // 5
86
+ {1, 1, 1, 4}, // 6
87
+ {1, 3, 1, 2}, // 7
88
+ {1, 2, 1, 3}, // 8
89
+ {3, 1, 1, 2}, // 9
90
+ {1, 1, 2, 3}, // 10 reversed 0
91
+ {1, 2, 2, 2}, // 11 reversed 1
92
+ {2, 2, 1, 2}, // 12 reversed 2
93
+ {1, 1, 4, 1}, // 13 reversed 3
94
+ {2, 3, 1, 1}, // 14 reversed 4
95
+ {1, 3, 2, 1}, // 15 reversed 5
96
+ {4, 1, 1, 1}, // 16 reversed 6
97
+ {2, 1, 3, 1}, // 17 reversed 7
98
+ {3, 1, 2, 1}, // 18 reversed 8
99
+ {2, 1, 1, 3} // 19 reversed 9
100
+ };
101
+ const int L_AND_G_PATTERNS_LEN = LEN(L_AND_G_PATTERNS_);
102
+ }
103
+
104
+ const int UPCEANReader::MAX_AVG_VARIANCE = (int)(PATTERN_MATCH_RESULT_SCALE_FACTOR * 0.48f);
105
+ const int UPCEANReader::MAX_INDIVIDUAL_VARIANCE = (int)(PATTERN_MATCH_RESULT_SCALE_FACTOR * 0.7f);
106
+
107
+ #define VECTOR_INIT(v) v, v + sizeof(v)/sizeof(v[0])
108
+
109
+ const vector<int>
110
+ UPCEANReader::START_END_PATTERN (VECTOR_INIT(START_END_PATTERN_));
111
+
112
+ const vector<int>
113
+ UPCEANReader::MIDDLE_PATTERN (VECTOR_INIT(MIDDLE_PATTERN_));
114
+ const vector<int const*>
115
+ UPCEANReader::L_PATTERNS (VECTOR_INIT(L_PATTERNS_));
116
+ const vector<int const*>
117
+ UPCEANReader::L_AND_G_PATTERNS (VECTOR_INIT(L_AND_G_PATTERNS_));
118
+
119
+ UPCEANReader::UPCEANReader() {}
120
+
121
+ Ref<Result> UPCEANReader::decodeRow(int rowNumber, Ref<BitArray> row) {
122
+ return decodeRow(rowNumber, row, findStartGuardPattern(row));
123
+ }
124
+
125
+ Ref<Result> UPCEANReader::decodeRow(int rowNumber,
126
+ Ref<BitArray> row,
127
+ Range const& startGuardRange) {
128
+ string& result = decodeRowStringBuffer;
129
+ result.clear();
130
+ int endStart = decodeMiddle(row, startGuardRange, result);
131
+
132
+ Range endRange = decodeEnd(row, endStart);
133
+
134
+ // Make sure there is a quiet zone at least as big as the end pattern after the barcode.
135
+ // The spec might want more whitespace, but in practice this is the maximum we can count on.
136
+
137
+ int end = endRange[1];
138
+ int quietEnd = end + (end - endRange[0]);
139
+ if (quietEnd >= row->getSize() || !row->isRange(end, quietEnd, false)) {
140
+ throw NotFoundException();
141
+ }
142
+
143
+ // UPC/EAN should never be less than 8 chars anyway
144
+ if (result.length() < 8) {
145
+ throw FormatException();
146
+ }
147
+
148
+ Ref<String> resultString (new String(result));
149
+ if (!checkChecksum(resultString)) {
150
+ throw ChecksumException();
151
+ }
152
+
153
+ float left = (float) (startGuardRange[1] + startGuardRange[0]) / 2.0f;
154
+ float right = (float) (endRange[1] + endRange[0]) / 2.0f;
155
+ BarcodeFormat format = getBarcodeFormat();
156
+ ArrayRef< Ref<ResultPoint> > resultPoints(2);
157
+ resultPoints[0] = Ref<ResultPoint>(new OneDResultPoint(left, (float) rowNumber));
158
+ resultPoints[1] = Ref<ResultPoint>(new OneDResultPoint(right, (float) rowNumber));
159
+ Ref<Result> decodeResult (new Result(resultString, ArrayRef<char>(), resultPoints, format));
160
+ // Java extension and man stuff
161
+ return decodeResult;
162
+ }
163
+
164
+ UPCEANReader::Range UPCEANReader::findStartGuardPattern(Ref<BitArray> row) {
165
+ bool foundStart = false;
166
+ Range startRange;
167
+ int nextStart = 0;
168
+ vector<int> counters(START_END_PATTERN.size(), 0);
169
+ // std::cerr << "fsgp " << *row << std::endl;
170
+ while (!foundStart) {
171
+ for(int i=0; i < (int)START_END_PATTERN.size(); ++i) {
172
+ counters[i] = 0;
173
+ }
174
+ startRange = findGuardPattern(row, nextStart, false, START_END_PATTERN, counters);
175
+ // std::cerr << "sr " << startRange[0] << " " << startRange[1] << std::endl;
176
+ int start = startRange[0];
177
+ nextStart = startRange[1];
178
+ // Make sure there is a quiet zone at least as big as the start pattern before the barcode.
179
+ // If this check would run off the left edge of the image, do not accept this barcode,
180
+ // as it is very likely to be a false positive.
181
+ int quietStart = start - (nextStart - start);
182
+ if (quietStart >= 0) {
183
+ foundStart = row->isRange(quietStart, start, false);
184
+ }
185
+ }
186
+ return startRange;
187
+ }
188
+
189
+ UPCEANReader::Range UPCEANReader::findGuardPattern(Ref<BitArray> row,
190
+ int rowOffset,
191
+ bool whiteFirst,
192
+ vector<int> const& pattern) {
193
+ vector<int> counters (pattern.size(), 0);
194
+ return findGuardPattern(row, rowOffset, whiteFirst, pattern, counters);
195
+ }
196
+
197
+ UPCEANReader::Range UPCEANReader::findGuardPattern(Ref<BitArray> row,
198
+ int rowOffset,
199
+ bool whiteFirst,
200
+ vector<int> const& pattern,
201
+ vector<int>& counters) {
202
+ // cerr << "fGP " << rowOffset << " " << whiteFirst << endl;
203
+ if (false) {
204
+ for(int i=0; i < (int)pattern.size(); ++i) {
205
+ std::cerr << pattern[i];
206
+ }
207
+ std::cerr << std::endl;
208
+ }
209
+ int patternLength = pattern.size();
210
+ int width = row->getSize();
211
+ bool isWhite = whiteFirst;
212
+ rowOffset = whiteFirst ? row->getNextUnset(rowOffset) : row->getNextSet(rowOffset);
213
+ int counterPosition = 0;
214
+ int patternStart = rowOffset;
215
+ for (int x = rowOffset; x < width; x++) {
216
+ // std::cerr << "rg " << x << " " << row->get(x) << std::endl;
217
+ if (row->get(x) ^ isWhite) {
218
+ counters[counterPosition]++;
219
+ } else {
220
+ if (counterPosition == patternLength - 1) {
221
+ if (patternMatchVariance(counters, pattern, MAX_INDIVIDUAL_VARIANCE) < MAX_AVG_VARIANCE) {
222
+ return Range(patternStart, x);
223
+ }
224
+ patternStart += counters[0] + counters[1];
225
+ for (int y = 2; y < patternLength; y++) {
226
+ counters[y - 2] = counters[y];
227
+ }
228
+ counters[patternLength - 2] = 0;
229
+ counters[patternLength - 1] = 0;
230
+ counterPosition--;
231
+ } else {
232
+ counterPosition++;
233
+ }
234
+ counters[counterPosition] = 1;
235
+ isWhite = !isWhite;
236
+ }
237
+ }
238
+ throw NotFoundException();
239
+ }
240
+
241
+ UPCEANReader::Range UPCEANReader::decodeEnd(Ref<BitArray> row, int endStart) {
242
+ return findGuardPattern(row, endStart, false, START_END_PATTERN);
243
+ }
244
+
245
+ int UPCEANReader::decodeDigit(Ref<BitArray> row,
246
+ vector<int> & counters,
247
+ int rowOffset,
248
+ vector<int const*> const& patterns) {
249
+ recordPattern(row, rowOffset, counters);
250
+ int bestVariance = MAX_AVG_VARIANCE; // worst variance we'll accept
251
+ int bestMatch = -1;
252
+ int max = patterns.size();
253
+ for (int i = 0; i < max; i++) {
254
+ int const* pattern (patterns[i]);
255
+ int variance = patternMatchVariance(counters, pattern, MAX_INDIVIDUAL_VARIANCE);
256
+ if (variance < bestVariance) {
257
+ bestVariance = variance;
258
+ bestMatch = i;
259
+ }
260
+ }
261
+ if (bestMatch >= 0) {
262
+ return bestMatch;
263
+ } else {
264
+ throw NotFoundException();
265
+ }
266
+ }
267
+
268
+ /**
269
+ * @return {@link #checkStandardUPCEANChecksum(String)}
270
+ */
271
+ bool UPCEANReader::checkChecksum(Ref<String> const& s) {
272
+ return checkStandardUPCEANChecksum(s);
273
+ }
274
+
275
+ /**
276
+ * Computes the UPC/EAN checksum on a string of digits, and reports
277
+ * whether the checksum is correct or not.
278
+ *
279
+ * @param s string of digits to check
280
+ * @return true iff string of digits passes the UPC/EAN checksum algorithm
281
+ */
282
+ bool UPCEANReader::checkStandardUPCEANChecksum(Ref<String> const& s_) {
283
+ std::string const& s (s_->getText());
284
+ int length = s.length();
285
+ if (length == 0) {
286
+ return false;
287
+ }
288
+
289
+ int sum = 0;
290
+ for (int i = length - 2; i >= 0; i -= 2) {
291
+ int digit = (int) s[i] - (int) '0';
292
+ if (digit < 0 || digit > 9) {
293
+ return false;
294
+ }
295
+ sum += digit;
296
+ }
297
+ sum *= 3;
298
+ for (int i = length - 1; i >= 0; i -= 2) {
299
+ int digit = (int) s[i] - (int) '0';
300
+ if (digit < 0 || digit > 9) {
301
+ return false;
302
+ }
303
+ sum += digit;
304
+ }
305
+ return sum % 10 == 0;
306
+ }
307
+
308
+ UPCEANReader::~UPCEANReader() {
309
+ }