基本信息
源码名称:zxing-cpp-master开发包
源码大小:0.48M
文件格式:.zip
开发语言:C/C++
更新时间:2022-09-21
   友情提示:(无需注册或充值,赞助后即可获取资源下载链接)

     嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300

本次赞助数额为: 2 元 
   源码介绍
zxing-cpp-master开发包

.
├── zxing-cpp-master
│   ├── AUTHORS
│   ├── CMakeLists.txt
│   ├── COPYING
│   ├── NOTICE
│   ├── README.md
│   ├── cli
│   │   └── src
│   │       ├── ImageReaderSource.cpp
│   │       ├── ImageReaderSource.h
│   │       ├── jpgd.cpp
│   │       ├── jpgd.h
│   │       ├── lodepng.cpp
│   │       ├── lodepng.h
│   │       └── main.cpp
│   ├── cmake
│   │   ├── FindModules
│   │   │   ├── FindCPPUNIT.cmake
│   │   │   └── FindIconv.cmake
│   │   └── zxing-config.cmake.in
│   ├── core
│   │   ├── src
│   │   │   ├── bigint
│   │   │   │   ├── BigInteger.cc
│   │   │   │   ├── BigInteger.hh
│   │   │   │   ├── BigIntegerAlgorithms.cc
│   │   │   │   ├── BigIntegerAlgorithms.hh
│   │   │   │   ├── BigIntegerLibrary.hh
│   │   │   │   ├── BigIntegerUtils.cc
│   │   │   │   ├── BigIntegerUtils.hh
│   │   │   │   ├── BigUnsigned.cc
│   │   │   │   ├── BigUnsigned.hh
│   │   │   │   ├── BigUnsignedInABase.cc
│   │   │   │   ├── BigUnsignedInABase.hh
│   │   │   │   ├── ChangeLog
│   │   │   │   ├── Makefile
│   │   │   │   ├── NumberlikeArray.hh
│   │   │   │   └── README
│   │   │   ├── win32
│   │   │   │   └── zxing
│   │   │   │       ├── iconv.h
│   │   │   │       ├── stdint.h
│   │   │   │       └── win_iconv.c
│   │   │   └── zxing
│   │   │       ├── BarcodeFormat.cpp
│   │   │       ├── BarcodeFormat.h
│   │   │       ├── Binarizer.cpp
│   │   │       ├── Binarizer.h
│   │   │       ├── BinaryBitmap.cpp
│   │   │       ├── BinaryBitmap.h
│   │   │       ├── ChecksumException.cpp
│   │   │       ├── ChecksumException.h
│   │   │       ├── DecodeHints.cpp
│   │   │       ├── DecodeHints.h
│   │   │       ├── Exception.cpp
│   │   │       ├── Exception.h
│   │   │       ├── FormatException.cpp
│   │   │       ├── FormatException.h
│   │   │       ├── IllegalStateException.h
│   │   │       ├── InvertedLuminanceSource.cpp
│   │   │       ├── InvertedLuminanceSource.h
│   │   │       ├── LuminanceSource.cpp
│   │   │       ├── LuminanceSource.h
│   │   │       ├── MultiFormatReader.cpp
│   │   │       ├── MultiFormatReader.h
│   │   │       ├── NotFoundException.h
│   │   │       ├── Reader.cpp
│   │   │       ├── Reader.h
│   │   │       ├── ReaderException.h
│   │   │       ├── Result.cpp
│   │   │       ├── Result.h
│   │   │       ├── ResultIO.cpp
│   │   │       ├── ResultPoint.cpp
│   │   │       ├── ResultPoint.h
│   │   │       ├── ResultPointCallback.cpp
│   │   │       ├── ResultPointCallback.h
│   │   │       ├── ZXing.h
│   │   │       ├── aztec
│   │   │       │   ├── AztecDetectorResult.cpp
│   │   │       │   ├── AztecDetectorResult.h
│   │   │       │   ├── AztecReader.cpp
│   │   │       │   ├── AztecReader.h
│   │   │       │   ├── decoder
│   │   │       │   │   ├── Decoder.cpp
│   │   │       │   │   └── Decoder.h
│   │   │       │   └── detector
│   │   │       │       ├── Detector.cpp
│   │   │       │       └── Detector.h
│   │   │       ├── common
│   │   │       │   ├── Array.h
│   │   │       │   ├── BitArray.cpp
│   │   │       │   ├── BitArray.h
│   │   │       │   ├── BitArrayIO.cpp
│   │   │       │   ├── BitMatrix.cpp
│   │   │       │   ├── BitMatrix.h
│   │   │       │   ├── BitSource.cpp
│   │   │       │   ├── BitSource.h
│   │   │       │   ├── CharacterSetECI.cpp
│   │   │       │   ├── CharacterSetECI.h
│   │   │       │   ├── Counted.h
│   │   │       │   ├── DecoderResult.cpp
│   │   │       │   ├── DecoderResult.h
│   │   │       │   ├── DetectorResult.cpp
│   │   │       │   ├── DetectorResult.h
│   │   │       │   ├── GlobalHistogramBinarizer.cpp
│   │   │       │   ├── GlobalHistogramBinarizer.h
│   │   │       │   ├── GreyscaleLuminanceSource.cpp
│   │   │       │   ├── GreyscaleLuminanceSource.h
│   │   │       │   ├── GreyscaleRotatedLuminanceSource.cpp
│   │   │       │   ├── GreyscaleRotatedLuminanceSource.h
│   │   │       │   ├── GridSampler.cpp
│   │   │       │   ├── GridSampler.h
│   │   │       │   ├── HybridBinarizer.cpp
│   │   │       │   ├── HybridBinarizer.h
│   │   │       │   ├── IllegalArgumentException.cpp
│   │   │       │   ├── IllegalArgumentException.h
│   │   │       │   ├── PerspectiveTransform.cpp
│   │   │       │   ├── PerspectiveTransform.h
│   │   │       │   ├── Point.h
│   │   │       │   ├── Str.cpp
│   │   │       │   ├── Str.h
│   │   │       │   ├── StringUtils.cpp
│   │   │       │   ├── StringUtils.h
│   │   │       │   ├── detector
│   │   │       │   │   ├── JavaMath.h
│   │   │       │   │   ├── MathUtils.h
│   │   │       │   │   ├── MonochromeRectangleDetector.cpp
│   │   │       │   │   ├── MonochromeRectangleDetector.h
│   │   │       │   │   ├── WhiteRectangleDetector.cpp
│   │   │       │   │   └── WhiteRectangleDetector.h
│   │   │       │   └── reedsolomon
│   │   │       │       ├── GenericGF.cpp
│   │   │       │       ├── GenericGF.h
│   │   │       │       ├── GenericGFPoly.cpp
│   │   │       │       ├── GenericGFPoly.h
│   │   │       │       ├── ReedSolomonDecoder.cpp
│   │   │       │       ├── ReedSolomonDecoder.h
│   │   │       │       ├── ReedSolomonException.cpp
│   │   │       │       └── ReedSolomonException.h
│   │   │       ├── datamatrix
│   │   │       │   ├── DataMatrixReader.cpp
│   │   │       │   ├── DataMatrixReader.h
│   │   │       │   ├── Version.cpp
│   │   │       │   ├── Version.h
│   │   │       │   ├── decoder
│   │   │       │   │   ├── BitMatrixParser.cpp
│   │   │       │   │   ├── BitMatrixParser.h
│   │   │       │   │   ├── DataBlock.cpp
│   │   │       │   │   ├── DataBlock.h
│   │   │       │   │   ├── DecodedBitStreamParser.cpp
│   │   │       │   │   ├── DecodedBitStreamParser.h
│   │   │       │   │   ├── Decoder.cpp
│   │   │       │   │   └── Decoder.h
│   │   │       │   └── detector
│   │   │       │       ├── CornerPoint.cpp
│   │   │       │       ├── CornerPoint.h
│   │   │       │       ├── Detector.cpp
│   │   │       │       ├── Detector.h
│   │   │       │       ├── DetectorException.cpp
│   │   │       │       └── DetectorException.h
│   │   │       ├── multi
│   │   │       │   ├── ByQuadrantReader.cpp
│   │   │       │   ├── ByQuadrantReader.h
│   │   │       │   ├── GenericMultipleBarcodeReader.cpp
│   │   │       │   ├── GenericMultipleBarcodeReader.h
│   │   │       │   ├── MultipleBarcodeReader.cpp
│   │   │       │   ├── MultipleBarcodeReader.h
│   │   │       │   └── qrcode
│   │   │       │       ├── QRCodeMultiReader.cpp
│   │   │       │       ├── QRCodeMultiReader.h
│   │   │       │       └── detector
│   │   │       │           ├── MultiDetector.cpp
│   │   │       │           ├── MultiDetector.h
│   │   │       │           ├── MultiFinderPatternFinder.cpp
│   │   │       │           └── MultiFinderPatternFinder.h
│   │   │       ├── oned
│   │   │       │   ├── CodaBarReader.cpp
│   │   │       │   ├── CodaBarReader.h
│   │   │       │   ├── Code128Reader.cpp
│   │   │       │   ├── Code128Reader.h
│   │   │       │   ├── Code39Reader.cpp
│   │   │       │   ├── Code39Reader.h
│   │   │       │   ├── Code93Reader.cpp
│   │   │       │   ├── Code93Reader.h
│   │   │       │   ├── EAN13Reader.cpp
│   │   │       │   ├── EAN13Reader.h
│   │   │       │   ├── EAN8Reader.cpp
│   │   │       │   ├── EAN8Reader.h
│   │   │       │   ├── ITFReader.cpp
│   │   │       │   ├── ITFReader.h
│   │   │       │   ├── MultiFormatOneDReader.cpp
│   │   │       │   ├── MultiFormatOneDReader.h
│   │   │       │   ├── MultiFormatUPCEANReader.cpp
│   │   │       │   ├── MultiFormatUPCEANReader.h
│   │   │       │   ├── OneDReader.cpp
│   │   │       │   ├── OneDReader.h
│   │   │       │   ├── OneDResultPoint.cpp
│   │   │       │   ├── OneDResultPoint.h
│   │   │       │   ├── UPCAReader.cpp
│   │   │       │   ├── UPCAReader.h
│   │   │       │   ├── UPCEANReader.cpp
│   │   │       │   ├── UPCEANReader.h
│   │   │       │   ├── UPCEReader.cpp
│   │   │       │   └── UPCEReader.h
│   │   │       ├── pdf417
│   │   │       │   ├── PDF417Reader.cpp
│   │   │       │   ├── PDF417Reader.h
│   │   │       │   ├── decoder
│   │   │       │   │   ├── BitMatrixParser.cpp
│   │   │       │   │   ├── BitMatrixParser.h
│   │   │       │   │   ├── DecodedBitStreamParser.cpp
│   │   │       │   │   ├── DecodedBitStreamParser.h
│   │   │       │   │   ├── Decoder.cpp
│   │   │       │   │   ├── Decoder.h
│   │   │       │   │   └── ec
│   │   │       │   │       ├── ErrorCorrection.cpp
│   │   │       │   │       ├── ErrorCorrection.h
│   │   │       │   │       ├── ModulusGF.cpp
│   │   │       │   │       ├── ModulusGF.h
│   │   │       │   │       ├── ModulusPoly.cpp
│   │   │       │   │       └── ModulusPoly.h
│   │   │       │   └── detector
│   │   │       │       ├── Detector.cpp
│   │   │       │       ├── Detector.h
│   │   │       │       ├── LinesSampler.cpp
│   │   │       │       └── LinesSampler.h
│   │   │       └── qrcode
│   │   │           ├── ErrorCorrectionLevel.cpp
│   │   │           ├── ErrorCorrectionLevel.h
│   │   │           ├── FormatInformation.cpp
│   │   │           ├── FormatInformation.h
│   │   │           ├── QRCodeReader.cpp
│   │   │           ├── QRCodeReader.h
│   │   │           ├── Version.cpp
│   │   │           ├── Version.h
│   │   │           ├── decoder
│   │   │           │   ├── BitMatrixParser.cpp
│   │   │           │   ├── BitMatrixParser.h
│   │   │           │   ├── DataBlock.cpp
│   │   │           │   ├── DataBlock.h
│   │   │           │   ├── DataMask.cpp
│   │   │           │   ├── DataMask.h
│   │   │           │   ├── DecodedBitStreamParser.cpp
│   │   │           │   ├── DecodedBitStreamParser.h
│   │   │           │   ├── Decoder.cpp
│   │   │           │   ├── Decoder.h
│   │   │           │   ├── Mode.cpp
│   │   │           │   └── Mode.h
│   │   │           └── detector
│   │   │               ├── AlignmentPattern.cpp
│   │   │               ├── AlignmentPattern.h
│   │   │               ├── AlignmentPatternFinder.cpp
│   │   │               ├── AlignmentPatternFinder.h
│   │   │               ├── Detector.cpp
│   │   │               ├── Detector.h
│   │   │               ├── FinderPattern.cpp
│   │   │               ├── FinderPattern.h
│   │   │               ├── FinderPatternFinder.cpp
│   │   │               ├── FinderPatternFinder.h
│   │   │               ├── FinderPatternInfo.cpp
│   │   │               └── FinderPatternInfo.h
│   │   └── tests
│   │       └── src
│   │           ├── TestRunner.cpp
│   │           ├── common
│   │           │   ├── BitArrayTest.cpp
│   │           │   ├── BitArrayTest.h
│   │           │   ├── BitMatrixTest.cpp
│   │           │   ├── BitMatrixTest.h
│   │           │   ├── BitSourceTest.cpp
│   │           │   ├── BitSourceTest.h
│   │           │   ├── CountedTest.cpp
│   │           │   ├── CountedTest.h
│   │           │   ├── PerspectiveTransformTest.cpp
│   │           │   ├── PerspectiveTransformTest.h
│   │           │   └── reedsolomon
│   │           │       ├── ReedSolomonTest.cpp
│   │           │       └── ReedSolomonTest.h
│   │           └── qrcode
│   │               ├── ErrorCorrectionLevelTest.cpp
│   │               ├── ErrorCorrectionLevelTest.h
│   │               ├── FormatInformationTest.cpp
│   │               ├── FormatInformationTest.h
│   │               ├── VersionTest.cpp
│   │               ├── VersionTest.h
│   │               └── decoder
│   │                   ├── DataMaskTest.cpp
│   │                   ├── DataMaskTest.h
│   │                   ├── ModeTest.cpp
│   │                   └── ModeTest.h
│   ├── opencv
│   │   └── src
│   │       └── zxing
│   │           ├── MatSource.cpp
│   │           └── MatSource.h
│   ├── opencv-cli
│   │   └── src
│   │       └── main.cpp
│   └── source_files.cmake
└── 好例子网_zxing-cpp-master.zip

42 directories, 258 files