X-Git-Url: http://git.kpe.io/?p=ctsim.git;a=blobdiff_plain;f=tools%2Fpj2if.cpp;h=d55b0e1b9a85b8d46a78cdc11284da46cfa1d397;hp=f65d55d12e9d6aa57e285e29ab2251bc54bec0b1;hb=8a7697ce57b56cdc43698cd1241ad98d49f9b5ac;hpb=d158a6da6ec776fe98961f73f2ea74cf55de4700 diff --git a/tools/pj2if.cpp b/tools/pj2if.cpp index f65d55d..d55b0e1 100644 --- a/tools/pj2if.cpp +++ b/tools/pj2if.cpp @@ -9,7 +9,7 @@ ** This is part of the CTSim program ** Copyright (C) 1983-2000 Kevin Rosenberg ** -** $Id: pj2if.cpp,v 1.3 2000/08/03 09:57:29 kevin Exp $ +** $Id$ ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License (version 2) as @@ -36,31 +36,31 @@ #include "timer.h" -enum { O_VERBOSE, O_HELP, O_VERSION }; +enum { O_VERBOSE, O_HELP, O_VERSION, O_POLAR }; static struct option my_options[] = { + {"polar", 0, 0, O_POLAR}, {"verbose", 0, 0, O_VERBOSE}, {"help", 0, 0, O_HELP}, {"version", 0, 0, O_VERSION}, {0, 0, 0, 0} }; -static const char* g_szIdStr = "$Id: pj2if.cpp,v 1.3 2000/08/03 09:57:29 kevin Exp $"; +static const char* g_szIdStr = "$Id$"; void pj2if_usage (const char *program) { - cout << "usage: " << fileBasename(program) << " in-proj-file out-if-file [OPTIONS]" << endl; - cout << "Converts a projection file to a IF file" << endl; - cout << endl; - cout << " --verbose Verbose mode" << endl; - cout << " --version Print version" << endl; - cout << " --help Print this help message" << endl; + std::cout << "usage: " << fileBasename(program) << " in-proj-file out-if-file [OPTIONS]\n"; + std::cout << "Converts a projection file to a imagefile\n"; + std::cout << std::endl; + std::cout << " --polar Convert to polar format\n"; + std::cout << " --verbose Verbose mode\n"; + std::cout << " --version Print version\n"; + std::cout << " --help Print this help message\n"; } - - int pj2if_main (const int argc, char *const argv[]) { @@ -82,9 +82,9 @@ pj2if_main (const int argc, char *const argv[]) break; case O_VERSION: #ifdef VERSION - cout << "Version " << VERSION << endl << g_szIdStr << endl; + std::cout << "Version " << VERSION << std::endl << g_szIdStr << std::endl; #else - cout << "Unknown version number" << endl; + std::cout << "Unknown version number\n"; #endif return (0); case O_HELP: @@ -111,15 +111,18 @@ pj2if_main (const int argc, char *const argv[]) return (1); } - if (optVerbose) - pj.printScanInfo(); + if (optVerbose) { + std::ostringstream os; + pj.printScanInfo (os); + std::cout << os.str(); + } ImageFile im (pj.nDet(), pj.nView()); ImageFileArray v = im.getArray(); for (int iy = 0; iy < pj.nView(); iy++) { - const DetectorArray& detarray = pj.getDetectorArray (iy); + const DetectorArray& detarray = pj.getDetectorArray (pj.nView() - iy - 1); const DetectorValue* detval = detarray.detValues(); for (int ix = 0; ix < pj.nDet(); ix++) { v[ix][iy] = detval[ix]; @@ -143,9 +146,9 @@ main (const int argc, char *const argv[]) try { retval = pj2if_main(argc, argv); } catch (exception e) { - cerr << "Exception: " << e.what() << endl; + std::cerr << "Exception: " << e.what() << std::endl; } catch (...) { - cerr << "Unknown exception" << endl; + std::cerr << "Unknown exception\n"; } return (retval);