One-D barcodes reader port on c++
authorwarcholuke <warcholuke@59b500cc-1b3d-0410-9834-0bbf25fbcc57>
Tue, 2 Feb 2010 20:38:25 +0000 (20:38 +0000)
committerwarcholuke <warcholuke@59b500cc-1b3d-0410-9834-0bbf25fbcc57>
Tue, 2 Feb 2010 20:38:25 +0000 (20:38 +0000)
commitf60aaa3608812e2e19550c0ced1ce0f947dfedb0
tree7e15c7eda0738ac163c6a210541ca0c85592cac6
parentac343e4ddc7af1f54c2d2634abb1be992d183a35
One-D barcodes reader port on c++

git-svn-id: http://zxing.googlecode.com/svn/trunk@1196 59b500cc-1b3d-0410-9834-0bbf25fbcc57
38 files changed:
cpp/core/src/zxing/BarcodeFormat.h
cpp/core/src/zxing/Binarizer.cpp
cpp/core/src/zxing/Binarizer.h
cpp/core/src/zxing/BinaryBitmap.cpp
cpp/core/src/zxing/BinaryBitmap.h
cpp/core/src/zxing/MultiFormatReader.cpp [new file with mode: 0644]
cpp/core/src/zxing/MultiFormatReader.h [new file with mode: 0644]
cpp/core/src/zxing/common/GlobalHistogramBinarizer.cpp
cpp/core/src/zxing/common/GlobalHistogramBinarizer.h
cpp/core/src/zxing/oned/Code128Reader.cpp [new file with mode: 0644]
cpp/core/src/zxing/oned/Code128Reader.h [new file with mode: 0644]
cpp/core/src/zxing/oned/Code39Reader.cpp [new file with mode: 0644]
cpp/core/src/zxing/oned/Code39Reader.h [new file with mode: 0644]
cpp/core/src/zxing/oned/EAN13Reader.cpp [new file with mode: 0644]
cpp/core/src/zxing/oned/EAN13Reader.h [new file with mode: 0644]
cpp/core/src/zxing/oned/EAN8Reader.cpp [new file with mode: 0644]
cpp/core/src/zxing/oned/EAN8Reader.h [new file with mode: 0644]
cpp/core/src/zxing/oned/ITFReader.cpp [new file with mode: 0644]
cpp/core/src/zxing/oned/ITFReader.h [new file with mode: 0644]
cpp/core/src/zxing/oned/MultiFormatOneDReader.cpp [new file with mode: 0644]
cpp/core/src/zxing/oned/MultiFormatOneDReader.h [new file with mode: 0644]
cpp/core/src/zxing/oned/MultiFormatUPCEANReader.cpp [new file with mode: 0644]
cpp/core/src/zxing/oned/MultiFormatUPCEANReader.h [new file with mode: 0644]
cpp/core/src/zxing/oned/OneDReader.cpp [new file with mode: 0644]
cpp/core/src/zxing/oned/OneDReader.h [new file with mode: 0644]
cpp/core/src/zxing/oned/OneDResultPoint.cpp [new file with mode: 0644]
cpp/core/src/zxing/oned/OneDResultPoint.h [new file with mode: 0644]
cpp/core/src/zxing/oned/UPCAReader.cpp [new file with mode: 0644]
cpp/core/src/zxing/oned/UPCAReader.h [new file with mode: 0644]
cpp/core/src/zxing/oned/UPCEANReader.cpp [new file with mode: 0644]
cpp/core/src/zxing/oned/UPCEANReader.h [new file with mode: 0644]
cpp/core/src/zxing/oned/UPCEReader.cpp [new file with mode: 0644]
cpp/core/src/zxing/oned/UPCEReader.h [new file with mode: 0644]
cpp/core/src/zxing/qrcode/QRCodeReader.cpp
cpp/core/src/zxing/qrcode/QRCodeReader.h
cpp/core/src/zxing/qrcode/detector/AlignmentPattern.h
cpp/core/src/zxing/qrcode/detector/FinderPattern.cpp
cpp/core/src/zxing/qrcode/detector/FinderPattern.h