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,69 @@
|
|
1
|
+
// -*- mode:c++; tab-width:2; indent-tabs-mode:nil; c-basic-offset:2 -*-
|
2
|
+
/*
|
3
|
+
* Decoder.h
|
4
|
+
* zxing
|
5
|
+
*
|
6
|
+
* Created by Lukas Stabe on 08/02/2012.
|
7
|
+
* Copyright 2012 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
|
+
#ifndef __ZXING_AZTEC_DECODER_DECODER_H__
|
23
|
+
#define __ZXING_AZTEC_DECODER_DECODER_H__
|
24
|
+
|
25
|
+
#include <zxing/common/BitMatrix.h>
|
26
|
+
#include <zxing/common/Str.h>
|
27
|
+
#include <zxing/aztec/AztecDetectorResult.h>
|
28
|
+
|
29
|
+
namespace zxing {
|
30
|
+
|
31
|
+
class DecoderResult;
|
32
|
+
|
33
|
+
namespace aztec {
|
34
|
+
|
35
|
+
class Decoder : public Counted {
|
36
|
+
private:
|
37
|
+
enum Table {
|
38
|
+
UPPER,
|
39
|
+
LOWER,
|
40
|
+
MIXED,
|
41
|
+
DIGIT,
|
42
|
+
PUNCT,
|
43
|
+
BINARY
|
44
|
+
};
|
45
|
+
|
46
|
+
static Table getTable(char t);
|
47
|
+
static const char* getCharacter(Table table, int code);
|
48
|
+
|
49
|
+
int numCodewords_;
|
50
|
+
int codewordSize_;
|
51
|
+
Ref<AztecDetectorResult> ddata_;
|
52
|
+
int invertedBitCount_;
|
53
|
+
|
54
|
+
Ref<String> getEncodedData(Ref<BitArray> correctedBits);
|
55
|
+
Ref<BitArray> correctBits(Ref<BitArray> rawbits);
|
56
|
+
Ref<BitArray> extractBits(Ref<BitMatrix> matrix);
|
57
|
+
static Ref<BitMatrix> removeDashedLines(Ref<BitMatrix> matrix);
|
58
|
+
static int readCode(Ref<BitArray> rawbits, int startIndex, int length);
|
59
|
+
|
60
|
+
|
61
|
+
public:
|
62
|
+
Decoder();
|
63
|
+
Ref<DecoderResult> decode(Ref<AztecDetectorResult> detectorResult);
|
64
|
+
};
|
65
|
+
|
66
|
+
}
|
67
|
+
}
|
68
|
+
|
69
|
+
#endif
|
@@ -0,0 +1,548 @@
|
|
1
|
+
// -*- mode:c++; tab-width:2; indent-tabs-mode:nil; c-basic-offset:2 -*-
|
2
|
+
/*
|
3
|
+
* Detector.cpp
|
4
|
+
* zxing
|
5
|
+
*
|
6
|
+
* Created by Lukas Stabe on 08/02/2012.
|
7
|
+
* Copyright 2012 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/aztec/detector/Detector.h>
|
23
|
+
#include <zxing/common/GridSampler.h>
|
24
|
+
#include <zxing/common/detector/WhiteRectangleDetector.h>
|
25
|
+
#include <zxing/common/reedsolomon/ReedSolomonDecoder.h>
|
26
|
+
#include <zxing/common/reedsolomon/ReedSolomonException.h>
|
27
|
+
#include <zxing/common/reedsolomon/GenericGF.h>
|
28
|
+
#include <iostream>
|
29
|
+
#include <zxing/common/detector/MathUtils.h>
|
30
|
+
#include <zxing/NotFoundException.h>
|
31
|
+
|
32
|
+
using std::vector;
|
33
|
+
using zxing::aztec::Detector;
|
34
|
+
using zxing::aztec::Point;
|
35
|
+
using zxing::aztec::AztecDetectorResult;
|
36
|
+
using zxing::Ref;
|
37
|
+
using zxing::ArrayRef;
|
38
|
+
using zxing::ResultPoint;
|
39
|
+
using zxing::BitArray;
|
40
|
+
using zxing::BitMatrix;
|
41
|
+
using zxing::common::detector::MathUtils;
|
42
|
+
|
43
|
+
Detector::Detector(Ref<BitMatrix> image):
|
44
|
+
image_(image),
|
45
|
+
nbLayers_(0),
|
46
|
+
nbDataBlocks_(0),
|
47
|
+
nbCenterLayers_(0) {
|
48
|
+
|
49
|
+
}
|
50
|
+
|
51
|
+
Ref<AztecDetectorResult> Detector::detect() {
|
52
|
+
Ref<Point> pCenter = getMatrixCenter();
|
53
|
+
|
54
|
+
std::vector<Ref<Point> > bullEyeCornerPoints = getBullEyeCornerPoints(pCenter);
|
55
|
+
|
56
|
+
extractParameters(bullEyeCornerPoints);
|
57
|
+
|
58
|
+
ArrayRef< Ref<ResultPoint> > corners = getMatrixCornerPoints(bullEyeCornerPoints);
|
59
|
+
|
60
|
+
Ref<BitMatrix> bits =
|
61
|
+
sampleGrid(image_,
|
62
|
+
corners[shift_%4],
|
63
|
+
corners[(shift_+3)%4],
|
64
|
+
corners[(shift_+2)%4],
|
65
|
+
corners[(shift_+1)%4]);
|
66
|
+
|
67
|
+
// std::printf("------------\ndetected: compact:%s, nbDataBlocks:%d, nbLayers:%d\n------------\n",compact_?"YES":"NO", nbDataBlocks_, nbLayers_);
|
68
|
+
|
69
|
+
return Ref<AztecDetectorResult>(new AztecDetectorResult(bits, corners, compact_, nbDataBlocks_, nbLayers_));
|
70
|
+
}
|
71
|
+
|
72
|
+
void Detector::extractParameters(std::vector<Ref<Point> > bullEyeCornerPoints) {
|
73
|
+
int twoCenterLayers = 2 * nbCenterLayers_;
|
74
|
+
// get the bits around the bull's eye
|
75
|
+
Ref<BitArray> resab = sampleLine(bullEyeCornerPoints[0], bullEyeCornerPoints[1], twoCenterLayers+1);
|
76
|
+
Ref<BitArray> resbc = sampleLine(bullEyeCornerPoints[1], bullEyeCornerPoints[2], twoCenterLayers+1);
|
77
|
+
Ref<BitArray> rescd = sampleLine(bullEyeCornerPoints[2], bullEyeCornerPoints[3], twoCenterLayers+1);
|
78
|
+
Ref<BitArray> resda = sampleLine(bullEyeCornerPoints[3], bullEyeCornerPoints[0], twoCenterLayers+1);
|
79
|
+
|
80
|
+
// determin the orientation of the matrix
|
81
|
+
if (resab->get(0) && resab->get(twoCenterLayers)) {
|
82
|
+
shift_ = 0;
|
83
|
+
} else if (resbc->get(0) && resbc->get(twoCenterLayers)) {
|
84
|
+
shift_ = 1;
|
85
|
+
} else if (rescd->get(0) && rescd->get(twoCenterLayers)) {
|
86
|
+
shift_ = 2;
|
87
|
+
} else if (resda->get(0) && resda->get(twoCenterLayers)) {
|
88
|
+
shift_ = 3;
|
89
|
+
} else {
|
90
|
+
// std::printf("could not detemine orientation\n");
|
91
|
+
throw ReaderException("could not determine orientation");
|
92
|
+
}
|
93
|
+
|
94
|
+
//d a
|
95
|
+
//
|
96
|
+
//c b
|
97
|
+
|
98
|
+
//flatten the bits in a single array
|
99
|
+
Ref<BitArray> parameterData(new BitArray(compact_?28:40));
|
100
|
+
Ref<BitArray> shiftedParameterData(new BitArray(compact_?28:40));
|
101
|
+
|
102
|
+
if (compact_) {
|
103
|
+
for (int i = 0; i < 7; i++) {
|
104
|
+
if (resab->get(2+i)) shiftedParameterData->set(i);
|
105
|
+
if (resbc->get(2+i)) shiftedParameterData->set(i+7);
|
106
|
+
if (rescd->get(2+i)) shiftedParameterData->set(i+14);
|
107
|
+
if (resda->get(2+i)) shiftedParameterData->set(i+21);
|
108
|
+
}
|
109
|
+
for (int i = 0; i < 28; i++) {
|
110
|
+
if (shiftedParameterData->get((i+shift_*7)%28)) parameterData->set(i);
|
111
|
+
}
|
112
|
+
|
113
|
+
} else {
|
114
|
+
for (int i = 0; i < 11; i++) {
|
115
|
+
if (i < 5) {
|
116
|
+
if (resab->get(2+i)) shiftedParameterData->set(i);
|
117
|
+
if (resbc->get(2+i)) shiftedParameterData->set(i+10);
|
118
|
+
if (rescd->get(2+i)) shiftedParameterData->set(i+20);
|
119
|
+
if (resda->get(2+i)) shiftedParameterData->set(i+30);
|
120
|
+
}
|
121
|
+
if (i > 5) {
|
122
|
+
if (resab->get(2+i)) shiftedParameterData->set(i-1);
|
123
|
+
if (resbc->get(2+i)) shiftedParameterData->set(i+9);
|
124
|
+
if (rescd->get(2+i)) shiftedParameterData->set(i+19);
|
125
|
+
if (resda->get(2+i)) shiftedParameterData->set(i+29);
|
126
|
+
}
|
127
|
+
}
|
128
|
+
for (int i = 0; i < 40; i++) {
|
129
|
+
if (shiftedParameterData->get((i+shift_*10)%40)) parameterData->set(i);
|
130
|
+
}
|
131
|
+
}
|
132
|
+
|
133
|
+
correctParameterData(parameterData, compact_);
|
134
|
+
|
135
|
+
getParameters(parameterData);
|
136
|
+
}
|
137
|
+
|
138
|
+
ArrayRef< Ref<ResultPoint> >
|
139
|
+
Detector::getMatrixCornerPoints(std::vector<Ref<Point> > bullEyeCornerPoints) {
|
140
|
+
float ratio = (2 * nbLayers_ + (nbLayers_ > 4 ? 1 : 0) + (nbLayers_ - 4) / 8) / (2.0f * nbCenterLayers_);
|
141
|
+
|
142
|
+
int dx = bullEyeCornerPoints[0]->getX() - bullEyeCornerPoints[2]->getX();
|
143
|
+
dx += dx > 0 ? 1 : -1;
|
144
|
+
int dy = bullEyeCornerPoints[0]->getY() - bullEyeCornerPoints[2]->getY();
|
145
|
+
dy += dy > 0 ? 1 : -1;
|
146
|
+
|
147
|
+
int targetcx = MathUtils::round(bullEyeCornerPoints[2]->getX() - ratio * dx);
|
148
|
+
int targetcy = MathUtils::round(bullEyeCornerPoints[2]->getY() - ratio * dy);
|
149
|
+
|
150
|
+
int targetax = MathUtils::round(bullEyeCornerPoints[0]->getX() + ratio * dx);
|
151
|
+
int targetay = MathUtils::round(bullEyeCornerPoints[0]->getY() + ratio * dy);
|
152
|
+
|
153
|
+
dx = bullEyeCornerPoints[1]->getX() - bullEyeCornerPoints[3]->getX();
|
154
|
+
dx += dx > 0 ? 1 : -1;
|
155
|
+
dy = bullEyeCornerPoints[1]->getY() - bullEyeCornerPoints[3]->getY();
|
156
|
+
dy += dy > 0 ? 1 : -1;
|
157
|
+
|
158
|
+
int targetdx = MathUtils::round(bullEyeCornerPoints[3]->getX() - ratio * dx);
|
159
|
+
int targetdy = MathUtils::round(bullEyeCornerPoints[3]->getY() - ratio * dy);
|
160
|
+
int targetbx = MathUtils::round(bullEyeCornerPoints[1]->getX() + ratio * dx);
|
161
|
+
int targetby = MathUtils::round(bullEyeCornerPoints[1]->getY() + ratio * dy);
|
162
|
+
|
163
|
+
if (!isValid(targetax, targetay) ||
|
164
|
+
!isValid(targetbx, targetby) ||
|
165
|
+
|
166
|
+
!isValid(targetcx, targetcy) ||
|
167
|
+
!isValid(targetdx, targetdy)) {
|
168
|
+
throw ReaderException("matrix extends over image bounds");
|
169
|
+
}
|
170
|
+
Array< Ref<ResultPoint> >* array = new Array< Ref<ResultPoint> >();
|
171
|
+
vector< Ref<ResultPoint> >& returnValue (array->values());
|
172
|
+
returnValue.push_back(Ref<ResultPoint>(new ResultPoint(float(targetax), float(targetay))));
|
173
|
+
returnValue.push_back(Ref<ResultPoint>(new ResultPoint(float(targetbx), float(targetby))));
|
174
|
+
returnValue.push_back(Ref<ResultPoint>(new ResultPoint(float(targetcx), float(targetcy))));
|
175
|
+
returnValue.push_back(Ref<ResultPoint>(new ResultPoint(float(targetdx), float(targetdy))));
|
176
|
+
return ArrayRef< Ref<ResultPoint> >(array);
|
177
|
+
}
|
178
|
+
|
179
|
+
void Detector::correctParameterData(Ref<zxing::BitArray> parameterData, bool compact) {
|
180
|
+
int numCodewords;
|
181
|
+
int numDataCodewords;
|
182
|
+
|
183
|
+
if (compact) {
|
184
|
+
numCodewords = 7;
|
185
|
+
numDataCodewords = 2;
|
186
|
+
} else {
|
187
|
+
numCodewords = 10;
|
188
|
+
numDataCodewords = 4;
|
189
|
+
}
|
190
|
+
|
191
|
+
int numECCodewords = numCodewords - numDataCodewords;
|
192
|
+
|
193
|
+
ArrayRef<int> parameterWords(new Array<int>(numCodewords));
|
194
|
+
|
195
|
+
int codewordSize = 4;
|
196
|
+
for (int i = 0; i < numCodewords; i++) {
|
197
|
+
int flag = 1;
|
198
|
+
for (int j = 1; j <= codewordSize; j++) {
|
199
|
+
if (parameterData->get(codewordSize*i + codewordSize - j)) {
|
200
|
+
parameterWords[i] += flag;
|
201
|
+
}
|
202
|
+
flag <<= 1;
|
203
|
+
}
|
204
|
+
}
|
205
|
+
|
206
|
+
try {
|
207
|
+
// std::printf("parameter data reed solomon\n");
|
208
|
+
ReedSolomonDecoder rsDecoder(GenericGF::AZTEC_PARAM);
|
209
|
+
rsDecoder.decode(parameterWords, numECCodewords);
|
210
|
+
} catch (ReedSolomonException const& ignored) {
|
211
|
+
(void)ignored;
|
212
|
+
// std::printf("reed solomon decoding failed\n");
|
213
|
+
throw ReaderException("failed to decode parameter data");
|
214
|
+
}
|
215
|
+
|
216
|
+
parameterData->clear();
|
217
|
+
for (int i = 0; i < numDataCodewords; i++) {
|
218
|
+
int flag = 1;
|
219
|
+
for (int j = 1; j <= codewordSize; j++) {
|
220
|
+
if ((parameterWords[i] & flag) == flag) {
|
221
|
+
parameterData->set(i*codewordSize+codewordSize-j);
|
222
|
+
}
|
223
|
+
flag <<= 1;
|
224
|
+
}
|
225
|
+
}
|
226
|
+
}
|
227
|
+
|
228
|
+
std::vector<Ref<Point> > Detector::getBullEyeCornerPoints(Ref<zxing::aztec::Point> pCenter) {
|
229
|
+
Ref<Point> pina = pCenter;
|
230
|
+
Ref<Point> pinb = pCenter;
|
231
|
+
Ref<Point> pinc = pCenter;
|
232
|
+
Ref<Point> pind = pCenter;
|
233
|
+
|
234
|
+
bool color = true;
|
235
|
+
|
236
|
+
for (nbCenterLayers_ = 1; nbCenterLayers_ < 9; nbCenterLayers_++) {
|
237
|
+
Ref<Point> pouta = getFirstDifferent(pina, color, 1, -1);
|
238
|
+
Ref<Point> poutb = getFirstDifferent(pinb, color, 1, 1);
|
239
|
+
Ref<Point> poutc = getFirstDifferent(pinc, color, -1, 1);
|
240
|
+
Ref<Point> poutd = getFirstDifferent(pind, color, -1, -1);
|
241
|
+
|
242
|
+
//d a
|
243
|
+
//
|
244
|
+
//c b
|
245
|
+
|
246
|
+
if (nbCenterLayers_ > 2) {
|
247
|
+
float q = distance(poutd, pouta) * nbCenterLayers_ / (distance(pind, pina) * (nbCenterLayers_ + 2));
|
248
|
+
if (q < 0.75 || q > 1.25 || !isWhiteOrBlackRectangle(pouta, poutb, poutc, poutd)) {
|
249
|
+
break;
|
250
|
+
}
|
251
|
+
}
|
252
|
+
|
253
|
+
pina = pouta;
|
254
|
+
pinb = poutb;
|
255
|
+
pinc = poutc;
|
256
|
+
pind = poutd;
|
257
|
+
|
258
|
+
color = !color;
|
259
|
+
}
|
260
|
+
|
261
|
+
if (nbCenterLayers_ != 5 && nbCenterLayers_ != 7) {
|
262
|
+
throw ReaderException("encountered wrong bullseye ring count");
|
263
|
+
}
|
264
|
+
|
265
|
+
compact_ = nbCenterLayers_ == 5;
|
266
|
+
|
267
|
+
|
268
|
+
|
269
|
+
float ratio = 0.75f*2 / (2*nbCenterLayers_-3);
|
270
|
+
|
271
|
+
int dx = pina->getX() - pind->getX();
|
272
|
+
int dy = pina->getY() - pinc->getY();
|
273
|
+
|
274
|
+
int targetcx = MathUtils::round(pinc->getX() - ratio * dx);
|
275
|
+
int targetcy = MathUtils::round(pinc->getY() - ratio * dy);
|
276
|
+
int targetax = MathUtils::round(pina->getX() + ratio * dx);
|
277
|
+
int targetay = MathUtils::round(pina->getY() + ratio * dy);
|
278
|
+
|
279
|
+
dx = pinb->getX() - pind->getX();
|
280
|
+
dy = pinb->getY() - pind->getY();
|
281
|
+
|
282
|
+
int targetdx = MathUtils::round(pind->getX() - ratio * dx);
|
283
|
+
int targetdy = MathUtils::round(pind->getY() - ratio * dy);
|
284
|
+
int targetbx = MathUtils::round(pinb->getX() + ratio * dx);
|
285
|
+
int targetby = MathUtils::round(pinb->getY() + ratio * dy);
|
286
|
+
|
287
|
+
if (!isValid(targetax, targetay) ||
|
288
|
+
!isValid(targetbx, targetby) ||
|
289
|
+
!isValid(targetcx, targetcy) ||
|
290
|
+
!isValid(targetdx, targetdy)) {
|
291
|
+
throw ReaderException("bullseye extends over image bounds");
|
292
|
+
}
|
293
|
+
|
294
|
+
std::vector<Ref<Point> > returnValue;
|
295
|
+
returnValue.push_back(Ref<Point>(new Point(targetax, targetay)));
|
296
|
+
returnValue.push_back(Ref<Point>(new Point(targetbx, targetby)));
|
297
|
+
returnValue.push_back(Ref<Point>(new Point(targetcx, targetcy)));
|
298
|
+
returnValue.push_back(Ref<Point>(new Point(targetdx, targetdy)));
|
299
|
+
|
300
|
+
return returnValue;
|
301
|
+
|
302
|
+
}
|
303
|
+
|
304
|
+
Ref<Point> Detector::getMatrixCenter() {
|
305
|
+
Ref<ResultPoint> pointA, pointB, pointC, pointD;
|
306
|
+
try {
|
307
|
+
|
308
|
+
std::vector<Ref<ResultPoint> > cornerPoints = WhiteRectangleDetector(image_).detect();
|
309
|
+
pointA = cornerPoints[0];
|
310
|
+
pointB = cornerPoints[1];
|
311
|
+
pointC = cornerPoints[2];
|
312
|
+
pointD = cornerPoints[3];
|
313
|
+
|
314
|
+
} catch (NotFoundException const& e) {
|
315
|
+
(void)e;
|
316
|
+
|
317
|
+
int cx = image_->getWidth() / 2;
|
318
|
+
int cy = image_->getHeight() / 2;
|
319
|
+
|
320
|
+
pointA = getFirstDifferent(Ref<Point>(new Point(cx+7, cy-7)), false, 1, -1)->toResultPoint();
|
321
|
+
pointB = getFirstDifferent(Ref<Point>(new Point(cx+7, cy+7)), false, 1, 1)->toResultPoint();
|
322
|
+
pointC = getFirstDifferent(Ref<Point>(new Point(cx-7, cy+7)), false, -1, -1)->toResultPoint();
|
323
|
+
pointD = getFirstDifferent(Ref<Point>(new Point(cx-7, cy-7)), false, -1, -1)->toResultPoint();
|
324
|
+
|
325
|
+
}
|
326
|
+
|
327
|
+
int cx = MathUtils::round((pointA->getX() + pointD->getX() + pointB->getX() + pointC->getX()) / 4.0f);
|
328
|
+
int cy = MathUtils::round((pointA->getY() + pointD->getY() + pointB->getY() + pointC->getY()) / 4.0f);
|
329
|
+
|
330
|
+
try {
|
331
|
+
|
332
|
+
std::vector<Ref<ResultPoint> > cornerPoints = WhiteRectangleDetector(image_, 15, cx, cy).detect();
|
333
|
+
pointA = cornerPoints[0];
|
334
|
+
pointB = cornerPoints[1];
|
335
|
+
pointC = cornerPoints[2];
|
336
|
+
pointD = cornerPoints[3];
|
337
|
+
|
338
|
+
} catch (NotFoundException const& e) {
|
339
|
+
(void)e;
|
340
|
+
|
341
|
+
pointA = getFirstDifferent(Ref<Point>(new Point(cx+7, cy-7)), false, 1, -1)->toResultPoint();
|
342
|
+
pointB = getFirstDifferent(Ref<Point>(new Point(cx+7, cy+7)), false, 1, 1)->toResultPoint();
|
343
|
+
pointC = getFirstDifferent(Ref<Point>(new Point(cx-7, cy+7)), false, -1, 1)->toResultPoint();
|
344
|
+
pointD = getFirstDifferent(Ref<Point>(new Point(cx-7, cy-7)), false, -1, -1)->toResultPoint();
|
345
|
+
|
346
|
+
}
|
347
|
+
|
348
|
+
cx = MathUtils::round((pointA->getX() + pointD->getX() + pointB->getX() + pointC->getX()) / 4.0f);
|
349
|
+
cy = MathUtils::round((pointA->getY() + pointD->getY() + pointB->getY() + pointC->getY()) / 4.0f);
|
350
|
+
|
351
|
+
return Ref<Point>(new Point(cx, cy));
|
352
|
+
|
353
|
+
}
|
354
|
+
|
355
|
+
Ref<BitMatrix> Detector::sampleGrid(Ref<zxing::BitMatrix> image,
|
356
|
+
Ref<zxing::ResultPoint> topLeft,
|
357
|
+
Ref<zxing::ResultPoint> bottomLeft,
|
358
|
+
Ref<zxing::ResultPoint> bottomRight,
|
359
|
+
Ref<zxing::ResultPoint> topRight) {
|
360
|
+
int dimension;
|
361
|
+
if (compact_) {
|
362
|
+
dimension = 4 * nbLayers_+11;
|
363
|
+
} else {
|
364
|
+
if (nbLayers_ <= 4) {
|
365
|
+
dimension = 4 * nbLayers_ + 15;
|
366
|
+
} else {
|
367
|
+
dimension = 4 * nbLayers_ + 2 * ((nbLayers_-4)/8 + 1) + 15;
|
368
|
+
}
|
369
|
+
}
|
370
|
+
|
371
|
+
GridSampler sampler = GridSampler::getInstance();
|
372
|
+
|
373
|
+
return sampler.sampleGrid(image,
|
374
|
+
dimension,
|
375
|
+
0.5f,
|
376
|
+
0.5f,
|
377
|
+
dimension - 0.5f,
|
378
|
+
0.5f,
|
379
|
+
dimension - 0.5f,
|
380
|
+
dimension - 0.5f,
|
381
|
+
0.5f,
|
382
|
+
dimension - 0.5f,
|
383
|
+
topLeft->getX(),
|
384
|
+
topLeft->getY(),
|
385
|
+
topRight->getX(),
|
386
|
+
topRight->getY(),
|
387
|
+
bottomRight->getX(),
|
388
|
+
bottomRight->getY(),
|
389
|
+
bottomLeft->getX(),
|
390
|
+
bottomLeft->getY());
|
391
|
+
}
|
392
|
+
|
393
|
+
void Detector::getParameters(Ref<zxing::BitArray> parameterData) {
|
394
|
+
nbLayers_ = 0;
|
395
|
+
nbDataBlocks_ = 0;
|
396
|
+
|
397
|
+
int nbBitsForNbLayers;
|
398
|
+
int nbBitsForNbDatablocks;
|
399
|
+
|
400
|
+
if (compact_) {
|
401
|
+
nbBitsForNbLayers = 2;
|
402
|
+
nbBitsForNbDatablocks = 6;
|
403
|
+
} else {
|
404
|
+
nbBitsForNbLayers = 5;
|
405
|
+
nbBitsForNbDatablocks = 11;
|
406
|
+
}
|
407
|
+
|
408
|
+
for (int i = 0; i < nbBitsForNbLayers; i++) {
|
409
|
+
nbLayers_ <<= 1;
|
410
|
+
if (parameterData->get(i)) {
|
411
|
+
nbLayers_++;
|
412
|
+
}
|
413
|
+
}
|
414
|
+
|
415
|
+
for (int i = nbBitsForNbLayers; i < nbBitsForNbLayers + nbBitsForNbDatablocks; i++) {
|
416
|
+
nbDataBlocks_ <<= 1;
|
417
|
+
if (parameterData->get(i)) {
|
418
|
+
nbDataBlocks_++;
|
419
|
+
}
|
420
|
+
}
|
421
|
+
|
422
|
+
nbLayers_++;
|
423
|
+
nbDataBlocks_++;
|
424
|
+
}
|
425
|
+
|
426
|
+
Ref<BitArray> Detector::sampleLine(Ref<zxing::aztec::Point> p1, Ref<zxing::aztec::Point> p2, int size) {
|
427
|
+
Ref<BitArray> res(new BitArray(size));
|
428
|
+
|
429
|
+
float d = distance(p1, p2);
|
430
|
+
float moduleSize = d / (size-1);
|
431
|
+
float dx = moduleSize * float(p2->getX() - p1->getX())/d;
|
432
|
+
float dy = moduleSize * float(p2->getY() - p1->getY())/d;
|
433
|
+
|
434
|
+
float px = float(p1->getX());
|
435
|
+
float py = float(p1->getY());
|
436
|
+
|
437
|
+
for (int i = 0; i < size; i++) {
|
438
|
+
if (image_->get(MathUtils::round(px), MathUtils::round(py))) res->set(i);
|
439
|
+
px+=dx;
|
440
|
+
py+=dy;
|
441
|
+
}
|
442
|
+
|
443
|
+
return res;
|
444
|
+
}
|
445
|
+
|
446
|
+
bool Detector::isWhiteOrBlackRectangle(Ref<zxing::aztec::Point> p1,
|
447
|
+
Ref<zxing::aztec::Point> p2,
|
448
|
+
Ref<zxing::aztec::Point> p3,
|
449
|
+
Ref<zxing::aztec::Point> p4) {
|
450
|
+
int corr = 3;
|
451
|
+
|
452
|
+
p1 = new Point(p1->getX() - corr, p1->getY() + corr);
|
453
|
+
p2 = new Point(p2->getX() - corr, p2->getY() - corr);
|
454
|
+
p3 = new Point(p3->getX() + corr, p3->getY() - corr);
|
455
|
+
p4 = new Point(p4->getX() + corr, p4->getY() + corr);
|
456
|
+
|
457
|
+
int cInit = getColor(p4, p1);
|
458
|
+
|
459
|
+
if (cInit == 0) {
|
460
|
+
return false;
|
461
|
+
}
|
462
|
+
|
463
|
+
int c = getColor(p1, p2);
|
464
|
+
|
465
|
+
if (c != cInit) {
|
466
|
+
return false;
|
467
|
+
}
|
468
|
+
|
469
|
+
c = getColor(p2, p3);
|
470
|
+
|
471
|
+
if (c != cInit) {
|
472
|
+
return false;
|
473
|
+
}
|
474
|
+
|
475
|
+
c = getColor(p3, p4);
|
476
|
+
|
477
|
+
if (c != cInit) {
|
478
|
+
return false;
|
479
|
+
}
|
480
|
+
|
481
|
+
return true;
|
482
|
+
}
|
483
|
+
|
484
|
+
int Detector::getColor(Ref<zxing::aztec::Point> p1, Ref<zxing::aztec::Point> p2) {
|
485
|
+
float d = distance(p1, p2);
|
486
|
+
|
487
|
+
float dx = (p2->getX() - p1->getX()) / d;
|
488
|
+
float dy = (p2->getY() - p1->getY()) / d;
|
489
|
+
|
490
|
+
int error = 0;
|
491
|
+
|
492
|
+
float px = float(p1->getX());
|
493
|
+
float py = float(p1->getY());
|
494
|
+
|
495
|
+
bool colorModel = image_->get(p1->getX(), p1->getY());
|
496
|
+
|
497
|
+
for (int i = 0; i < d; i++) {
|
498
|
+
px += dx;
|
499
|
+
py += dy;
|
500
|
+
if (image_->get(MathUtils::round(px), MathUtils::round(py)) != colorModel) {
|
501
|
+
error ++;
|
502
|
+
}
|
503
|
+
}
|
504
|
+
|
505
|
+
float errRatio = (float)error/d;
|
506
|
+
|
507
|
+
|
508
|
+
if (errRatio > 0.1f && errRatio < 0.9f) {
|
509
|
+
return 0;
|
510
|
+
}
|
511
|
+
|
512
|
+
return (errRatio <= 0.1) == colorModel ? 1 : -1;
|
513
|
+
}
|
514
|
+
|
515
|
+
Ref<Point> Detector::getFirstDifferent(Ref<zxing::aztec::Point> init, bool color, int dx, int dy) {
|
516
|
+
int x = init->getX() + dx;
|
517
|
+
int y = init->getY() + dy;
|
518
|
+
|
519
|
+
while (isValid(x, y) && image_->get(x, y) == color) {
|
520
|
+
x += dx;
|
521
|
+
y += dy;
|
522
|
+
}
|
523
|
+
|
524
|
+
x -= dx;
|
525
|
+
y -= dy;
|
526
|
+
|
527
|
+
while (isValid(x, y) && image_->get(x, y) == color) {
|
528
|
+
x += dx;
|
529
|
+
}
|
530
|
+
|
531
|
+
x -= dx;
|
532
|
+
|
533
|
+
while (isValid(x, y) && image_->get(x, y) == color) {
|
534
|
+
y += dy;
|
535
|
+
}
|
536
|
+
|
537
|
+
y -= dy;
|
538
|
+
|
539
|
+
return Ref<Point>(new Point(x, y));
|
540
|
+
}
|
541
|
+
|
542
|
+
bool Detector::isValid(int x, int y) {
|
543
|
+
return x >= 0 && x < (int)image_->getWidth() && y > 0 && y < (int)image_->getHeight();
|
544
|
+
}
|
545
|
+
|
546
|
+
float Detector::distance(Ref<zxing::aztec::Point> a, Ref<zxing::aztec::Point> b) {
|
547
|
+
return sqrtf((float)((a->getX() - b->getX()) * (a->getX() - b->getX()) + (a->getY() - b->getY()) * (a->getY() - b->getY())));
|
548
|
+
}
|