/* * main.cpp * zxing * * Created by Ralf Kistner on 16/10/2009. * Copyright 2008 ZXing authors All rights reserved. * Modified by Yakov Okshtein (flyashi@gmail.com) to add 1D barcode support. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include #include #include "MagickBitmapSource.h" #include //#include #include #include #include #include #include //#include #include #include #include #include //#include //#include //#include using namespace Magick; using namespace std; using namespace zxing; //using namespace zxing::qrcode; Ref decode(Ref image) { Ref reader(new MultiFormatReader); return Ref (new Result(*reader->decode(image))); } int test_image(Image& image, bool localized) { string cell_result; int res = -1; Ref matrix(NULL); Ref binarizer(NULL); try { Ref source(new MagickBitmapSource(image)); if (localized) { //binarizer = new LocalBlockBinarizer(source); } else { binarizer = new GlobalHistogramBinarizer(source); } Ref binary(new BinaryBitmap(binarizer)); Ref result(decode(binary)); cell_result = result->getText()->getText(); res = 0; } catch (ReaderException e) { cell_result = "zxing::ReaderException: " + string(e.what()); res = -2; } catch (zxing::IllegalArgumentException& e) { cell_result = "zxing::IllegalArgumentException: " + string(e.what()); res = -3; } catch (zxing::Exception& e) { cell_result = "zxing::Exception: " + string(e.what()); res = -4; } catch (std::exception& e) { cell_result = "std::exception: " + string(e.what()); res = -5; } cout << cell_result; return res; } int test_image_local(Image& image) { return test_image(image, true); } int test_image_global(Image& image) { return test_image(image, false); } int main(int argc, char** argv) { if (argc <= 1) { cout << "Usage: " << argv[0] << " [ ...]" << endl; return 1; } // int total = argc - 2; int gonly = 0; int lonly = 0; int both = 0; int neither = 0; for (int i = 1; i < argc; i++) { string infilename = argv[i]; // cerr << "Processing: " << infilename << endl; Image image; try { image.read(infilename); } catch (...) { cerr << "Unable to open image, ignoring" << endl; continue; } int gresult = 1; int lresult = 1; gresult = test_image_global(image); // lresult = test_image_local(image); gresult = gresult == 0; // lresult = lresult == 0; gonly += gresult && !lresult; lonly += lresult && !gresult; both += gresult && lresult; neither += !gresult && !lresult; } return 0; }