zxing_cpp 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +13 -0
- data/.gitmodules +3 -0
- data/CHANGELOG.rdoc +6 -0
- data/Gemfile +3 -0
- data/Manifest.txt +331 -0
- data/README.rdoc +138 -0
- data/Rakefile +28 -0
- data/bin/zxd +87 -0
- data/bin/zxe +53 -0
- data/ext/zxing/extconf.rb +27 -0
- data/ext/zxing/zxing-cpp/.gitignore +4 -0
- data/ext/zxing/zxing-cpp/AUTHORS +115 -0
- data/ext/zxing/zxing-cpp/CMakeLists.txt +84 -0
- data/ext/zxing/zxing-cpp/COPYING +201 -0
- data/ext/zxing/zxing-cpp/NOTICE +65 -0
- data/ext/zxing/zxing-cpp/README.md +50 -0
- data/ext/zxing/zxing-cpp/cli/src/ImageReaderSource.cpp +112 -0
- data/ext/zxing/zxing-cpp/cli/src/ImageReaderSource.h +40 -0
- data/ext/zxing/zxing-cpp/cli/src/jpgd.cpp +3174 -0
- data/ext/zxing/zxing-cpp/cli/src/jpgd.h +319 -0
- data/ext/zxing/zxing-cpp/cli/src/lodepng.cpp +6261 -0
- data/ext/zxing/zxing-cpp/cli/src/lodepng.h +1695 -0
- data/ext/zxing/zxing-cpp/cli/src/main.cpp +297 -0
- data/ext/zxing/zxing-cpp/cmake/FindCPPUNIT.cmake +54 -0
- data/ext/zxing/zxing-cpp/cmake/FindIconv.cmake +57 -0
- data/ext/zxing/zxing-cpp/core/src/bigint/.gitignore +6 -0
- data/ext/zxing/zxing-cpp/core/src/bigint/BigInteger.cc +405 -0
- data/ext/zxing/zxing-cpp/core/src/bigint/BigInteger.hh +215 -0
- data/ext/zxing/zxing-cpp/core/src/bigint/BigIntegerAlgorithms.cc +70 -0
- data/ext/zxing/zxing-cpp/core/src/bigint/BigIntegerAlgorithms.hh +25 -0
- data/ext/zxing/zxing-cpp/core/src/bigint/BigIntegerLibrary.hh +8 -0
- data/ext/zxing/zxing-cpp/core/src/bigint/BigIntegerUtils.cc +50 -0
- data/ext/zxing/zxing-cpp/core/src/bigint/BigIntegerUtils.hh +72 -0
- data/ext/zxing/zxing-cpp/core/src/bigint/BigUnsigned.cc +697 -0
- data/ext/zxing/zxing-cpp/core/src/bigint/BigUnsigned.hh +418 -0
- data/ext/zxing/zxing-cpp/core/src/bigint/BigUnsignedInABase.cc +125 -0
- data/ext/zxing/zxing-cpp/core/src/bigint/BigUnsignedInABase.hh +122 -0
- data/ext/zxing/zxing-cpp/core/src/bigint/ChangeLog +146 -0
- data/ext/zxing/zxing-cpp/core/src/bigint/Makefile +73 -0
- data/ext/zxing/zxing-cpp/core/src/bigint/NumberlikeArray.hh +177 -0
- data/ext/zxing/zxing-cpp/core/src/bigint/README +71 -0
- data/ext/zxing/zxing-cpp/core/src/win32/zxing/iconv.h +14 -0
- data/ext/zxing/zxing-cpp/core/src/win32/zxing/stdint.h +247 -0
- data/ext/zxing/zxing-cpp/core/src/win32/zxing/win_iconv.c +2035 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/BarcodeFormat.cpp +40 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/BarcodeFormat.h +60 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/Binarizer.cpp +45 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/Binarizer.h +50 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/BinaryBitmap.cpp +70 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/BinaryBitmap.h +56 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/ChecksumException.cpp +28 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/ChecksumException.h +34 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/DecodeHints.cpp +142 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/DecodeHints.h +85 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/Exception.cpp +43 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/Exception.h +51 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/FormatException.cpp +41 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/FormatException.h +37 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/IllegalStateException.h +35 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/InvertedLuminanceSource.cpp +68 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/InvertedLuminanceSource.h +48 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/LuminanceSource.cpp +86 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/LuminanceSource.h +59 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/MultiFormatReader.cpp +124 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/MultiFormatReader.h +48 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/NotFoundException.h +35 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/Reader.cpp +31 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/Reader.h +40 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/ReaderException.h +37 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/Result.cpp +61 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/Result.h +55 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/ResultIO.cpp +34 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/ResultPoint.cpp +108 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/ResultPoint.h +55 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/ResultPointCallback.cpp +26 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/ResultPointCallback.h +39 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/ZXing.h +133 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/aztec/AztecDetectorResult.cpp +54 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/aztec/AztecDetectorResult.h +48 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/aztec/AztecReader.cpp +68 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/aztec/AztecReader.h +49 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/aztec/decoder/Decoder.cpp +489 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/aztec/decoder/Decoder.h +69 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/aztec/detector/Detector.cpp +548 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/aztec/detector/Detector.h +92 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/Array.h +170 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/BitArray.cpp +155 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/BitArray.h +81 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/BitArrayIO.cpp +31 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/BitMatrix.cpp +143 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/BitMatrix.h +91 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/BitSource.cpp +76 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/BitSource.h +74 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/CharacterSetECI.cpp +104 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/CharacterSetECI.h +53 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/Counted.h +140 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/DecoderResult.cpp +46 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/DecoderResult.h +51 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/DetectorResult.cpp +39 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/DetectorResult.h +43 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/GlobalHistogramBinarizer.cpp +212 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/GlobalHistogramBinarizer.h +48 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/GreyscaleLuminanceSource.cpp +80 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/GreyscaleLuminanceSource.h +53 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/GreyscaleRotatedLuminanceSource.cpp +81 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/GreyscaleRotatedLuminanceSource.h +46 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/GridSampler.cpp +122 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/GridSampler.h +45 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/HybridBinarizer.cpp +226 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/HybridBinarizer.h +67 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/IllegalArgumentException.cpp +27 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/IllegalArgumentException.h +36 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/PerspectiveTransform.cpp +107 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/PerspectiveTransform.h +49 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/Point.h +47 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/Str.cpp +61 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/Str.h +51 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/StringUtils.cpp +198 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/StringUtils.h +52 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/detector/JavaMath.h +43 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/detector/MathUtils.h +57 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/detector/MonochromeRectangleDetector.cpp +174 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/detector/MonochromeRectangleDetector.h +62 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/detector/WhiteRectangleDetector.cpp +330 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/detector/WhiteRectangleDetector.h +59 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/reedsolomon/GenericGF.cpp +150 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/reedsolomon/GenericGF.h +73 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/reedsolomon/GenericGFPoly.cpp +218 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/reedsolomon/GenericGFPoly.h +56 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/reedsolomon/ReedSolomonDecoder.cpp +174 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/reedsolomon/ReedSolomonDecoder.h +49 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/reedsolomon/ReedSolomonException.cpp +30 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/reedsolomon/ReedSolomonException.h +33 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/datamatrix/DataMatrixReader.cpp +54 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/datamatrix/DataMatrixReader.h +45 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/datamatrix/Version.cpp +199 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/datamatrix/Version.h +87 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/datamatrix/decoder/BitMatrixParser.cpp +361 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/datamatrix/decoder/BitMatrixParser.h +59 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/datamatrix/decoder/DataBlock.cpp +113 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/datamatrix/decoder/DataBlock.h +49 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/datamatrix/decoder/DecodedBitStreamParser.cpp +416 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/datamatrix/decoder/DecodedBitStreamParser.h +104 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/datamatrix/decoder/Decoder.cpp +93 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/datamatrix/decoder/Decoder.h +49 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/datamatrix/detector/CornerPoint.cpp +46 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/datamatrix/detector/CornerPoint.h +43 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/datamatrix/detector/Detector.cpp +446 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/datamatrix/detector/Detector.h +94 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/datamatrix/detector/DetectorException.cpp +23 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/datamatrix/detector/DetectorException.h +23 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/multi/ByQuadrantReader.cpp +75 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/multi/ByQuadrantReader.h +42 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/multi/GenericMultipleBarcodeReader.cpp +137 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/multi/GenericMultipleBarcodeReader.h +51 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/multi/MultipleBarcodeReader.cpp +29 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/multi/MultipleBarcodeReader.h +41 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/multi/qrcode/QRCodeMultiReader.cpp +58 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/multi/qrcode/QRCodeMultiReader.h +36 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/multi/qrcode/detector/MultiDetector.cpp +47 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/multi/qrcode/detector/MultiDetector.h +37 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/multi/qrcode/detector/MultiFinderPatternFinder.cpp +236 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/multi/qrcode/detector/MultiFinderPatternFinder.h +47 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/oned/CodaBarReader.cpp +340 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/oned/CodaBarReader.h +57 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/oned/Code128Reader.cpp +496 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/oned/Code128Reader.h +48 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/oned/Code39Reader.cpp +328 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/oned/Code39Reader.h +63 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/oned/Code93Reader.cpp +293 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/oned/Code93Reader.h +58 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/oned/EAN13Reader.cpp +85 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/oned/EAN13Reader.h +49 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/oned/EAN8Reader.cpp +65 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/oned/EAN8Reader.h +47 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/oned/ITFReader.cpp +337 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/oned/ITFReader.h +54 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/oned/MultiFormatOneDReader.cpp +96 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/oned/MultiFormatOneDReader.h +38 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/oned/MultiFormatUPCEANReader.cpp +110 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/oned/MultiFormatUPCEANReader.h +41 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/oned/OneDReader.cpp +227 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/oned/OneDReader.h +81 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/oned/OneDResultPoint.cpp +28 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/oned/OneDResultPoint.h +35 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/oned/UPCAReader.cpp +71 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/oned/UPCAReader.h +50 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/oned/UPCEANReader.cpp +309 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/oned/UPCEANReader.h +88 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/oned/UPCEReader.cpp +146 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/oned/UPCEReader.h +47 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/pdf417/PDF417Reader.cpp +170 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/pdf417/PDF417Reader.h +49 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/pdf417/decoder/BitMatrixParser.cpp +997 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/pdf417/decoder/BitMatrixParser.h +84 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/pdf417/decoder/DecodedBitStreamParser.cpp +563 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/pdf417/decoder/DecodedBitStreamParser.h +84 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/pdf417/decoder/Decoder.cpp +118 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/pdf417/decoder/Decoder.h +62 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/pdf417/decoder/ec/ErrorCorrection.cpp +214 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/pdf417/decoder/ec/ErrorCorrection.h +71 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/pdf417/decoder/ec/ModulusGF.cpp +120 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/pdf417/decoder/ec/ModulusGF.h +72 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/pdf417/decoder/ec/ModulusPoly.cpp +284 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/pdf417/decoder/ec/ModulusPoly.h +68 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/pdf417/detector/Detector.cpp +664 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/pdf417/detector/Detector.h +106 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/pdf417/detector/LinesSampler.cpp +714 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/pdf417/detector/LinesSampler.h +122 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/ErrorCorrectionLevel.cpp +65 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/ErrorCorrectionLevel.h +52 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/FormatInformation.cpp +117 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/FormatInformation.h +54 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/QRCodeReader.cpp +52 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/QRCodeReader.h +48 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/Version.cpp +560 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/Version.h +85 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/decoder/BitMatrixParser.cpp +183 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/decoder/BitMatrixParser.h +56 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/decoder/DataBlock.cpp +118 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/decoder/DataBlock.h +50 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/decoder/DataMask.cpp +159 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/decoder/DataMask.h +50 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/decoder/DecodedBitStreamParser.cpp +425 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/decoder/DecodedBitStreamParser.h +72 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/decoder/Decoder.cpp +107 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/decoder/Decoder.h +46 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/decoder/Mode.cpp +90 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/decoder/Mode.h +57 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/detector/AlignmentPattern.cpp +47 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/detector/AlignmentPattern.h +45 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/detector/AlignmentPatternFinder.cpp +208 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/detector/AlignmentPatternFinder.h +68 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/detector/Detector.cpp +314 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/detector/Detector.h +69 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/detector/FinderPattern.cpp +69 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/detector/FinderPattern.h +48 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/detector/FinderPatternFinder.cpp +559 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/detector/FinderPatternFinder.h +76 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/detector/FinderPatternInfo.cpp +41 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/detector/FinderPatternInfo.h +47 -0
- data/ext/zxing/zxing-cpp/core/tests/src/TestRunner.cpp +30 -0
- data/ext/zxing/zxing-cpp/core/tests/src/common/BitArrayTest.cpp +216 -0
- data/ext/zxing/zxing-cpp/core/tests/src/common/BitArrayTest.h +61 -0
- data/ext/zxing/zxing-cpp/core/tests/src/common/BitMatrixTest.cpp +106 -0
- data/ext/zxing/zxing-cpp/core/tests/src/common/BitMatrixTest.h +55 -0
- data/ext/zxing/zxing-cpp/core/tests/src/common/BitSourceTest.cpp +49 -0
- data/ext/zxing/zxing-cpp/core/tests/src/common/BitSourceTest.h +42 -0
- data/ext/zxing/zxing-cpp/core/tests/src/common/CountedTest.cpp +58 -0
- data/ext/zxing/zxing-cpp/core/tests/src/common/CountedTest.h +46 -0
- data/ext/zxing/zxing-cpp/core/tests/src/common/PerspectiveTransformTest.cpp +69 -0
- data/ext/zxing/zxing-cpp/core/tests/src/common/PerspectiveTransformTest.h +47 -0
- data/ext/zxing/zxing-cpp/core/tests/src/common/reedsolomon/ReedSolomonTest.cpp +129 -0
- data/ext/zxing/zxing-cpp/core/tests/src/common/reedsolomon/ReedSolomonTest.h +62 -0
- data/ext/zxing/zxing-cpp/core/tests/src/qrcode/ErrorCorrectionLevelTest.cpp +47 -0
- data/ext/zxing/zxing-cpp/core/tests/src/qrcode/ErrorCorrectionLevelTest.h +45 -0
- data/ext/zxing/zxing-cpp/core/tests/src/qrcode/FormatInformationTest.cpp +88 -0
- data/ext/zxing/zxing-cpp/core/tests/src/qrcode/FormatInformationTest.h +47 -0
- data/ext/zxing/zxing-cpp/core/tests/src/qrcode/VersionTest.cpp +88 -0
- data/ext/zxing/zxing-cpp/core/tests/src/qrcode/VersionTest.h +49 -0
- data/ext/zxing/zxing-cpp/core/tests/src/qrcode/decoder/DataMaskTest.cpp +132 -0
- data/ext/zxing/zxing-cpp/core/tests/src/qrcode/decoder/DataMaskTest.h +91 -0
- data/ext/zxing/zxing-cpp/core/tests/src/qrcode/decoder/ModeTest.cpp +52 -0
- data/ext/zxing/zxing-cpp/core/tests/src/qrcode/decoder/ModeTest.h +47 -0
- data/ext/zxing/zxing.cc +224 -0
- data/lib/zxing.rb +50 -0
- data/lib/zxing/.gitignore +2 -0
- data/lib/zxing/aztec.rb +5 -0
- data/lib/zxing/aztec/aztec_reader.rb +14 -0
- data/lib/zxing/bad_image_exception.rb +4 -0
- data/lib/zxing/binarizer.rb +8 -0
- data/lib/zxing/binary_bitmap.rb +15 -0
- data/lib/zxing/checksum_exception.rb +4 -0
- data/lib/zxing/common.rb +7 -0
- data/lib/zxing/common/bit_matrix.rb +9 -0
- data/lib/zxing/common/hybrid_binarizer.rb +17 -0
- data/lib/zxing/common/illegal_argument_exception.rb +4 -0
- data/lib/zxing/datamatrix.rb +5 -0
- data/lib/zxing/datamatrix/data_matrix_reader.rb +14 -0
- data/lib/zxing/decodable.rb +11 -0
- data/lib/zxing/exception.rb +4 -0
- data/lib/zxing/ffi.rb +20 -0
- data/lib/zxing/ffi/aztec.rb +6 -0
- data/lib/zxing/ffi/aztec/aztec_reader.rb +9 -0
- data/lib/zxing/ffi/binarizer.rb +25 -0
- data/lib/zxing/ffi/binary_bitmap.rb +15 -0
- data/lib/zxing/ffi/common.rb +8 -0
- data/lib/zxing/ffi/common/bit_matrix.rb +12 -0
- data/lib/zxing/ffi/common/greyscale_luminance_source.rb +30 -0
- data/lib/zxing/ffi/common/hybrid_binarizer.rb +10 -0
- data/lib/zxing/ffi/datamatrix.rb +6 -0
- data/lib/zxing/ffi/datamatrix/data_matrix_reader.rb +9 -0
- data/lib/zxing/ffi/library.rb +102 -0
- data/lib/zxing/ffi/luminance_source.rb +18 -0
- data/lib/zxing/ffi/multi_format_reader.rb +9 -0
- data/lib/zxing/ffi/oned.rb +6 -0
- data/lib/zxing/ffi/oned/code_39_reader.rb +10 -0
- data/lib/zxing/ffi/qrcode.rb +8 -0
- data/lib/zxing/ffi/qrcode/decoder.rb +10 -0
- data/lib/zxing/ffi/qrcode/detector.rb +10 -0
- data/lib/zxing/ffi/reader.rb +58 -0
- data/lib/zxing/ffi/result.rb +23 -0
- data/lib/zxing/format_exception.rb +4 -0
- data/lib/zxing/illegal_argument_exception.rb +4 -0
- data/lib/zxing/image.rb +15 -0
- data/lib/zxing/luminance_source.rb +18 -0
- data/lib/zxing/multi_format_reader.rb +11 -0
- data/lib/zxing/not_found_exception.rb +4 -0
- data/lib/zxing/oned.rb +5 -0
- data/lib/zxing/oned/code_39_reader.rb +15 -0
- data/lib/zxing/qrcode.rb +8 -0
- data/lib/zxing/qrcode/decoder.rb +14 -0
- data/lib/zxing/qrcode/detector.rb +14 -0
- data/lib/zxing/qrcode/encoder.rb +8 -0
- data/lib/zxing/qrcode/encoder/byte_matrix.rb +18 -0
- data/lib/zxing/qrcode/encoder/encoder.rb +9 -0
- data/lib/zxing/qrcode/encoder/qrcode.rb +18 -0
- data/lib/zxing/reader.rb +8 -0
- data/lib/zxing/reader_exception.rb +4 -0
- data/lib/zxing/reed_solomon_exception.rb +2 -0
- data/lib/zxing/result.rb +18 -0
- data/lib/zxing/rmagick.rb +5 -0
- data/lib/zxing/rmagick/image.rb +104 -0
- data/lib/zxing/version.rb +33 -0
- data/test/qrcode.png +0 -0
- data/test/test_helper.rb +5 -0
- data/test/test_zxing.rb +58 -0
- data/test/vendor.rb +360 -0
- data/test/zxing/test_decodable.rb +38 -0
- data/zxing_cpp.gemspec +48 -0
- metadata +473 -0
@@ -0,0 +1,53 @@
|
|
1
|
+
// -*- mode:c++; tab-width:2; indent-tabs-mode:nil; c-basic-offset:2 -*-
|
2
|
+
|
3
|
+
#ifndef __CHARACTERSET_ECI__
|
4
|
+
#define __CHARACTERSET_ECI__
|
5
|
+
|
6
|
+
/*
|
7
|
+
* Copyright 2008-2011 ZXing authors
|
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
|
+
|
22
|
+
#include <map>
|
23
|
+
#include <zxing/DecodeHints.h>
|
24
|
+
|
25
|
+
namespace zxing {
|
26
|
+
namespace common {
|
27
|
+
|
28
|
+
class CharacterSetECI {
|
29
|
+
private:
|
30
|
+
static std::map<int, CharacterSetECI*> VALUE_TO_ECI;
|
31
|
+
static std::map<std::string, CharacterSetECI*> NAME_TO_ECI;
|
32
|
+
static const bool inited;
|
33
|
+
static bool init_tables();
|
34
|
+
|
35
|
+
int const* const values_;
|
36
|
+
char const* const* const names_;
|
37
|
+
|
38
|
+
CharacterSetECI(int const* values, char const* const* names);
|
39
|
+
|
40
|
+
static void addCharacterSet(int const* value, char const* const* encodingNames);
|
41
|
+
|
42
|
+
public:
|
43
|
+
char const* name() const;
|
44
|
+
int getValue() const;
|
45
|
+
|
46
|
+
static CharacterSetECI* getCharacterSetECIByValue(int value);
|
47
|
+
static CharacterSetECI* getCharacterSetECIByName(std::string const& name);
|
48
|
+
};
|
49
|
+
|
50
|
+
}
|
51
|
+
}
|
52
|
+
|
53
|
+
#endif
|
@@ -0,0 +1,140 @@
|
|
1
|
+
// -*- mode:c++; tab-width:2; indent-tabs-mode:nil; c-basic-offset:2 -*-
|
2
|
+
#ifndef __COUNTED_H__
|
3
|
+
#define __COUNTED_H__
|
4
|
+
|
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 <iostream>
|
22
|
+
|
23
|
+
namespace zxing {
|
24
|
+
|
25
|
+
/* base class for reference-counted objects */
|
26
|
+
class Counted {
|
27
|
+
private:
|
28
|
+
unsigned int count_;
|
29
|
+
public:
|
30
|
+
Counted() :
|
31
|
+
count_(0) {
|
32
|
+
}
|
33
|
+
virtual ~Counted() {
|
34
|
+
}
|
35
|
+
Counted *retain() {
|
36
|
+
count_++;
|
37
|
+
return this;
|
38
|
+
}
|
39
|
+
void release() {
|
40
|
+
count_--;
|
41
|
+
if (count_ == 0) {
|
42
|
+
count_ = 0xDEADF001;
|
43
|
+
delete this;
|
44
|
+
}
|
45
|
+
}
|
46
|
+
|
47
|
+
|
48
|
+
/* return the current count for denugging purposes or similar */
|
49
|
+
int count() const {
|
50
|
+
return count_;
|
51
|
+
}
|
52
|
+
};
|
53
|
+
|
54
|
+
/* counting reference to reference-counted objects */
|
55
|
+
template<typename T> class Ref {
|
56
|
+
private:
|
57
|
+
public:
|
58
|
+
T *object_;
|
59
|
+
explicit Ref(T *o = 0) :
|
60
|
+
object_(0) {
|
61
|
+
reset(o);
|
62
|
+
}
|
63
|
+
Ref(const Ref &other) :
|
64
|
+
object_(0) {
|
65
|
+
reset(other.object_);
|
66
|
+
}
|
67
|
+
|
68
|
+
template<class Y>
|
69
|
+
Ref(const Ref<Y> &other) :
|
70
|
+
object_(0) {
|
71
|
+
reset(other.object_);
|
72
|
+
}
|
73
|
+
|
74
|
+
~Ref() {
|
75
|
+
if (object_) {
|
76
|
+
object_->release();
|
77
|
+
}
|
78
|
+
}
|
79
|
+
|
80
|
+
void reset(T *o) {
|
81
|
+
if (o) {
|
82
|
+
o->retain();
|
83
|
+
}
|
84
|
+
if (object_ != 0) {
|
85
|
+
object_->release();
|
86
|
+
}
|
87
|
+
object_ = o;
|
88
|
+
}
|
89
|
+
Ref& operator=(const Ref &other) {
|
90
|
+
reset(other.object_);
|
91
|
+
return *this;
|
92
|
+
}
|
93
|
+
template<class Y>
|
94
|
+
Ref& operator=(const Ref<Y> &other) {
|
95
|
+
reset(other.object_);
|
96
|
+
return *this;
|
97
|
+
}
|
98
|
+
Ref& operator=(T* o) {
|
99
|
+
reset(o);
|
100
|
+
return *this;
|
101
|
+
}
|
102
|
+
template<class Y>
|
103
|
+
Ref& operator=(Y* o) {
|
104
|
+
reset(o);
|
105
|
+
return *this;
|
106
|
+
}
|
107
|
+
|
108
|
+
T& operator*() {
|
109
|
+
return *object_;
|
110
|
+
}
|
111
|
+
T* operator->() const {
|
112
|
+
return object_;
|
113
|
+
}
|
114
|
+
operator T*() const {
|
115
|
+
return object_;
|
116
|
+
}
|
117
|
+
|
118
|
+
bool operator==(const T* that) {
|
119
|
+
return object_ == that;
|
120
|
+
}
|
121
|
+
bool operator==(const Ref &other) const {
|
122
|
+
return object_ == other.object_ || *object_ == *(other.object_);
|
123
|
+
}
|
124
|
+
template<class Y>
|
125
|
+
bool operator==(const Ref<Y> &other) const {
|
126
|
+
return object_ == other.object_ || *object_ == *(other.object_);
|
127
|
+
}
|
128
|
+
|
129
|
+
bool operator!=(const T* that) {
|
130
|
+
return !(*this == that);
|
131
|
+
}
|
132
|
+
|
133
|
+
bool empty() const {
|
134
|
+
return object_ == 0;
|
135
|
+
}
|
136
|
+
};
|
137
|
+
|
138
|
+
}
|
139
|
+
|
140
|
+
#endif // __COUNTED_H__
|
@@ -0,0 +1,46 @@
|
|
1
|
+
// -*- mode:c++; tab-width:2; indent-tabs-mode:nil; c-basic-offset:2 -*-
|
2
|
+
/*
|
3
|
+
* DecoderResult.cpp
|
4
|
+
* zxing
|
5
|
+
*
|
6
|
+
* Created by Christian Brunschen on 20/05/2008.
|
7
|
+
* Copyright 2008-2011 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
|
+
|
22
|
+
#include <zxing/common/DecoderResult.h>
|
23
|
+
|
24
|
+
using namespace std;
|
25
|
+
using namespace zxing;
|
26
|
+
|
27
|
+
DecoderResult::DecoderResult(ArrayRef<char> rawBytes,
|
28
|
+
Ref<String> text,
|
29
|
+
ArrayRef< ArrayRef<char> >& byteSegments,
|
30
|
+
string const& ecLevel) :
|
31
|
+
rawBytes_(rawBytes),
|
32
|
+
text_(text),
|
33
|
+
byteSegments_(byteSegments),
|
34
|
+
ecLevel_(ecLevel) {}
|
35
|
+
|
36
|
+
DecoderResult::DecoderResult(ArrayRef<char> rawBytes,
|
37
|
+
Ref<String> text)
|
38
|
+
: rawBytes_(rawBytes), text_(text) {}
|
39
|
+
|
40
|
+
ArrayRef<char> DecoderResult::getRawBytes() {
|
41
|
+
return rawBytes_;
|
42
|
+
}
|
43
|
+
|
44
|
+
Ref<String> DecoderResult::getText() {
|
45
|
+
return text_;
|
46
|
+
}
|
@@ -0,0 +1,51 @@
|
|
1
|
+
#ifndef __DECODER_RESULT_H__
|
2
|
+
#define __DECODER_RESULT_H__
|
3
|
+
|
4
|
+
/*
|
5
|
+
* DecoderResult.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/Counted.h>
|
24
|
+
#include <zxing/common/Array.h>
|
25
|
+
#include <string>
|
26
|
+
#include <zxing/common/Str.h>
|
27
|
+
|
28
|
+
namespace zxing {
|
29
|
+
|
30
|
+
class DecoderResult : public Counted {
|
31
|
+
private:
|
32
|
+
ArrayRef<char> rawBytes_;
|
33
|
+
Ref<String> text_;
|
34
|
+
ArrayRef< ArrayRef<char> > byteSegments_;
|
35
|
+
std::string ecLevel_;
|
36
|
+
|
37
|
+
public:
|
38
|
+
DecoderResult(ArrayRef<char> rawBytes,
|
39
|
+
Ref<String> text,
|
40
|
+
ArrayRef< ArrayRef<char> >& byteSegments,
|
41
|
+
std::string const& ecLevel);
|
42
|
+
|
43
|
+
DecoderResult(ArrayRef<char> rawBytes, Ref<String> text);
|
44
|
+
|
45
|
+
ArrayRef<char> getRawBytes();
|
46
|
+
Ref<String> getText();
|
47
|
+
};
|
48
|
+
|
49
|
+
}
|
50
|
+
|
51
|
+
#endif // __DECODER_RESULT_H__
|
@@ -0,0 +1,39 @@
|
|
1
|
+
// -*- mode:c++; tab-width:2; indent-tabs-mode:nil; c-basic-offset:2 -*-
|
2
|
+
/*
|
3
|
+
* DetectorResult.cpp
|
4
|
+
* zxing
|
5
|
+
*
|
6
|
+
* Created by Christian Brunschen on 14/05/2008.
|
7
|
+
* Copyright 2008 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
|
+
|
22
|
+
#include <zxing/common/DetectorResult.h>
|
23
|
+
|
24
|
+
namespace zxing {
|
25
|
+
|
26
|
+
DetectorResult::DetectorResult(Ref<BitMatrix> bits,
|
27
|
+
ArrayRef< Ref<ResultPoint> > points)
|
28
|
+
: bits_(bits), points_(points) {
|
29
|
+
}
|
30
|
+
|
31
|
+
Ref<BitMatrix> DetectorResult::getBits() {
|
32
|
+
return bits_;
|
33
|
+
}
|
34
|
+
|
35
|
+
ArrayRef< Ref<ResultPoint> > DetectorResult::getPoints() {
|
36
|
+
return points_;
|
37
|
+
}
|
38
|
+
|
39
|
+
}
|
@@ -0,0 +1,43 @@
|
|
1
|
+
#ifndef __DETECTOR_RESULT_H__
|
2
|
+
#define __DETECTOR_RESULT_H__
|
3
|
+
|
4
|
+
/*
|
5
|
+
* DetectorResult.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/Counted.h>
|
24
|
+
#include <zxing/common/Array.h>
|
25
|
+
#include <zxing/common/BitMatrix.h>
|
26
|
+
#include <zxing/ResultPoint.h>
|
27
|
+
|
28
|
+
namespace zxing {
|
29
|
+
|
30
|
+
class DetectorResult : public Counted {
|
31
|
+
private:
|
32
|
+
Ref<BitMatrix> bits_;
|
33
|
+
ArrayRef< Ref<ResultPoint> > points_;
|
34
|
+
|
35
|
+
public:
|
36
|
+
DetectorResult(Ref<BitMatrix> bits, ArrayRef< Ref<ResultPoint> > points);
|
37
|
+
Ref<BitMatrix> getBits();
|
38
|
+
ArrayRef< Ref<ResultPoint> > getPoints();
|
39
|
+
};
|
40
|
+
|
41
|
+
}
|
42
|
+
|
43
|
+
#endif // __DETECTOR_RESULT_H__
|
@@ -0,0 +1,212 @@
|
|
1
|
+
// -*- mode:c++; tab-width:2; indent-tabs-mode:nil; c-basic-offset:2 -*-
|
2
|
+
/*
|
3
|
+
* GlobalHistogramBinarizer.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/common/GlobalHistogramBinarizer.h>
|
22
|
+
#include <zxing/NotFoundException.h>
|
23
|
+
#include <zxing/common/Array.h>
|
24
|
+
|
25
|
+
using zxing::GlobalHistogramBinarizer;
|
26
|
+
using zxing::Binarizer;
|
27
|
+
using zxing::ArrayRef;
|
28
|
+
using zxing::Ref;
|
29
|
+
using zxing::BitArray;
|
30
|
+
using zxing::BitMatrix;
|
31
|
+
|
32
|
+
// VC++
|
33
|
+
using zxing::LuminanceSource;
|
34
|
+
|
35
|
+
namespace {
|
36
|
+
const int LUMINANCE_BITS = 5;
|
37
|
+
const int LUMINANCE_SHIFT = 8 - LUMINANCE_BITS;
|
38
|
+
const int LUMINANCE_BUCKETS = 1 << LUMINANCE_BITS;
|
39
|
+
const ArrayRef<char> EMPTY (0);
|
40
|
+
}
|
41
|
+
|
42
|
+
GlobalHistogramBinarizer::GlobalHistogramBinarizer(Ref<LuminanceSource> source)
|
43
|
+
: Binarizer(source), luminances(EMPTY), buckets(LUMINANCE_BUCKETS) {}
|
44
|
+
|
45
|
+
GlobalHistogramBinarizer::~GlobalHistogramBinarizer() {}
|
46
|
+
|
47
|
+
void GlobalHistogramBinarizer::initArrays(int luminanceSize) {
|
48
|
+
if (luminances->size() < luminanceSize) {
|
49
|
+
luminances = ArrayRef<char>(luminanceSize);
|
50
|
+
}
|
51
|
+
for (int x = 0; x < LUMINANCE_BUCKETS; x++) {
|
52
|
+
buckets[x] = 0;
|
53
|
+
}
|
54
|
+
}
|
55
|
+
|
56
|
+
Ref<BitArray> GlobalHistogramBinarizer::getBlackRow(int y, Ref<BitArray> row) {
|
57
|
+
// std::cerr << "gbr " << y << std::endl;
|
58
|
+
LuminanceSource& source = *getLuminanceSource();
|
59
|
+
int width = source.getWidth();
|
60
|
+
if (row == NULL || static_cast<int>(row->getSize()) < width) {
|
61
|
+
row = new BitArray(width);
|
62
|
+
} else {
|
63
|
+
row->clear();
|
64
|
+
}
|
65
|
+
|
66
|
+
initArrays(width);
|
67
|
+
ArrayRef<char> localLuminances = source.getRow(y, luminances);
|
68
|
+
if (false) {
|
69
|
+
std::cerr << "gbr " << y << " r ";
|
70
|
+
for(int i=0, e=localLuminances->size(); i < e; ++i) {
|
71
|
+
std::cerr << 0+localLuminances[i] << " ";
|
72
|
+
}
|
73
|
+
std::cerr << std::endl;
|
74
|
+
}
|
75
|
+
ArrayRef<int> localBuckets = buckets;
|
76
|
+
for (int x = 0; x < width; x++) {
|
77
|
+
int pixel = localLuminances[x] & 0xff;
|
78
|
+
localBuckets[pixel >> LUMINANCE_SHIFT]++;
|
79
|
+
}
|
80
|
+
int blackPoint = estimateBlackPoint(localBuckets);
|
81
|
+
// std::cerr << "gbr bp " << y << " " << blackPoint << std::endl;
|
82
|
+
|
83
|
+
int left = localLuminances[0] & 0xff;
|
84
|
+
int center = localLuminances[1] & 0xff;
|
85
|
+
for (int x = 1; x < width - 1; x++) {
|
86
|
+
int right = localLuminances[x + 1] & 0xff;
|
87
|
+
// A simple -1 4 -1 box filter with a weight of 2.
|
88
|
+
int luminance = ((center << 2) - left - right) >> 1;
|
89
|
+
if (luminance < blackPoint) {
|
90
|
+
row->set(x);
|
91
|
+
}
|
92
|
+
left = center;
|
93
|
+
center = right;
|
94
|
+
}
|
95
|
+
return row;
|
96
|
+
}
|
97
|
+
|
98
|
+
Ref<BitMatrix> GlobalHistogramBinarizer::getBlackMatrix() {
|
99
|
+
LuminanceSource& source = *getLuminanceSource();
|
100
|
+
int width = source.getWidth();
|
101
|
+
int height = source.getHeight();
|
102
|
+
Ref<BitMatrix> matrix(new BitMatrix(width, height));
|
103
|
+
|
104
|
+
// Quickly calculates the histogram by sampling four rows from the image.
|
105
|
+
// This proved to be more robust on the blackbox tests than sampling a
|
106
|
+
// diagonal as we used to do.
|
107
|
+
initArrays(width);
|
108
|
+
ArrayRef<int> localBuckets = buckets;
|
109
|
+
for (int y = 1; y < 5; y++) {
|
110
|
+
int row = height * y / 5;
|
111
|
+
ArrayRef<char> localLuminances = source.getRow(row, luminances);
|
112
|
+
int right = (width << 2) / 5;
|
113
|
+
for (int x = width / 5; x < right; x++) {
|
114
|
+
int pixel = localLuminances[x] & 0xff;
|
115
|
+
localBuckets[pixel >> LUMINANCE_SHIFT]++;
|
116
|
+
}
|
117
|
+
}
|
118
|
+
|
119
|
+
int blackPoint = estimateBlackPoint(localBuckets);
|
120
|
+
|
121
|
+
ArrayRef<char> localLuminances = source.getMatrix();
|
122
|
+
for (int y = 0; y < height; y++) {
|
123
|
+
int offset = y * width;
|
124
|
+
for (int x = 0; x < width; x++) {
|
125
|
+
int pixel = localLuminances[offset + x] & 0xff;
|
126
|
+
if (pixel < blackPoint) {
|
127
|
+
matrix->set(x, y);
|
128
|
+
}
|
129
|
+
}
|
130
|
+
}
|
131
|
+
|
132
|
+
return matrix;
|
133
|
+
}
|
134
|
+
|
135
|
+
using namespace std;
|
136
|
+
|
137
|
+
int GlobalHistogramBinarizer::estimateBlackPoint(ArrayRef<int> const& buckets) {
|
138
|
+
// Find tallest peak in histogram
|
139
|
+
int numBuckets = buckets->size();
|
140
|
+
int maxBucketCount = 0;
|
141
|
+
int firstPeak = 0;
|
142
|
+
int firstPeakSize = 0;
|
143
|
+
if (false) {
|
144
|
+
for (int x = 0; x < numBuckets; x++) {
|
145
|
+
cerr << buckets[x] << " ";
|
146
|
+
}
|
147
|
+
cerr << endl;
|
148
|
+
}
|
149
|
+
for (int x = 0; x < numBuckets; x++) {
|
150
|
+
if (buckets[x] > firstPeakSize) {
|
151
|
+
firstPeak = x;
|
152
|
+
firstPeakSize = buckets[x];
|
153
|
+
}
|
154
|
+
if (buckets[x] > maxBucketCount) {
|
155
|
+
maxBucketCount = buckets[x];
|
156
|
+
}
|
157
|
+
}
|
158
|
+
|
159
|
+
// Find second-tallest peak -- well, another peak that is tall and not
|
160
|
+
// so close to the first one
|
161
|
+
int secondPeak = 0;
|
162
|
+
int secondPeakScore = 0;
|
163
|
+
for (int x = 0; x < numBuckets; x++) {
|
164
|
+
int distanceToBiggest = x - firstPeak;
|
165
|
+
// Encourage more distant second peaks by multiplying by square of distance
|
166
|
+
int score = buckets[x] * distanceToBiggest * distanceToBiggest;
|
167
|
+
if (score > secondPeakScore) {
|
168
|
+
secondPeak = x;
|
169
|
+
secondPeakScore = score;
|
170
|
+
}
|
171
|
+
}
|
172
|
+
|
173
|
+
if (firstPeak > secondPeak) {
|
174
|
+
int temp = firstPeak;
|
175
|
+
firstPeak = secondPeak;
|
176
|
+
secondPeak = temp;
|
177
|
+
}
|
178
|
+
|
179
|
+
// Kind of arbitrary; if the two peaks are very close, then we figure there is
|
180
|
+
// so little dynamic range in the image, that discriminating black and white
|
181
|
+
// is too error-prone.
|
182
|
+
// Decoding the image/line is either pointless, or may in some cases lead to
|
183
|
+
// a false positive for 1D formats, which are relatively lenient.
|
184
|
+
// We arbitrarily say "close" is
|
185
|
+
// "<= 1/16 of the total histogram buckets apart"
|
186
|
+
// std::cerr << "! " << secondPeak << " " << firstPeak << " " << numBuckets << std::endl;
|
187
|
+
if (secondPeak - firstPeak <= numBuckets >> 4) {
|
188
|
+
throw NotFoundException();
|
189
|
+
}
|
190
|
+
|
191
|
+
// Find a valley between them that is low and closer to the white peak
|
192
|
+
int bestValley = secondPeak - 1;
|
193
|
+
int bestValleyScore = -1;
|
194
|
+
for (int x = secondPeak - 1; x > firstPeak; x--) {
|
195
|
+
int fromFirst = x - firstPeak;
|
196
|
+
// Favor a "valley" that is not too close to either peak -- especially not
|
197
|
+
// the black peak -- and that has a low value of course
|
198
|
+
int score = fromFirst * fromFirst * (secondPeak - x) *
|
199
|
+
(maxBucketCount - buckets[x]);
|
200
|
+
if (score > bestValleyScore) {
|
201
|
+
bestValley = x;
|
202
|
+
bestValleyScore = score;
|
203
|
+
}
|
204
|
+
}
|
205
|
+
|
206
|
+
// std::cerr << "bps " << (bestValley << LUMINANCE_SHIFT) << std::endl;
|
207
|
+
return bestValley << LUMINANCE_SHIFT;
|
208
|
+
}
|
209
|
+
|
210
|
+
Ref<Binarizer> GlobalHistogramBinarizer::createBinarizer(Ref<LuminanceSource> source) {
|
211
|
+
return Ref<Binarizer> (new GlobalHistogramBinarizer(source));
|
212
|
+
}
|