r187: *** empty log message ***
[ctsim.git] / tools / pjinfo.cpp
diff --git a/tools/pjinfo.cpp b/tools/pjinfo.cpp
new file mode 100644 (file)
index 0000000..0ca578c
--- /dev/null
@@ -0,0 +1,141 @@
+/*****************************************************************************
+** FILE IDENTIFICATION
+**
+**   Name:          pjfinfo.cpp
+**   Purpose:       Convert an projection data file to an image file
+**   Programmer:    Kevin Rosenberg
+**   Date Started:  April 2000
+**
+**  This is part of the CTSim program
+**  Copyright (C) 1983-2000 Kevin Rosenberg
+**
+**  $Id: pjinfo.cpp,v 1.1 2000/09/02 05:17:29 kevin Exp $
+**
+**  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
+**  published by the Free Software Foundation.
+**
+**  This program is distributed in the hope that it will be useful,
+**  but WITHOUT ANY WARRANTY; without even the implied warranty of
+**  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+**  GNU General Public License for more details.
+**
+**  You should have received a copy of the GNU General Public License
+**  along with this program; if not, write to the Free Software
+**  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+******************************************************************************/
+
+/* FILE
+ *   pjfinfo.c                 Convert Raysum to image
+ *
+ * DATE
+ *   August 2000
+ */
+
+#include "ct.h"
+#include "timer.h"
+
+
+enum { O_DUMP, O_HELP, O_VERSION };
+
+static struct option my_options[] =
+{
+  {"dump", 0, 0, O_DUMP},
+  {"help", 0, 0, O_HELP},
+  {"version", 0, 0, O_VERSION},
+  {0, 0, 0, 0}
+};
+
+static const char* g_szIdStr = "$Id: pjinfo.cpp,v 1.1 2000/09/02 05:17:29 kevin Exp $";
+
+void 
+pjfinfo_usage (const char *program)
+{
+  cout << "usage: " << fileBasename(program) << " proj-file [OPTIONS]" << endl;
+  cout << "Display projection file information" << endl;
+  cout << endl;
+  cout << "   --dump      Dump all scan data" << endl;
+  cout << "   --version   Print version" << endl;
+  cout << "   --help      Print this help message" << endl;
+}
+
+         
+
+int 
+pjfinfo_main (const int argc, char *const argv[])
+{
+  string pj_name;
+  bool optDump = false;
+  extern int optind;
+  Timer timerProgram;
+
+  while (1)
+    {
+      int c = getopt_long (argc, argv, "", my_options, NULL);
+      if (c == -1)
+       break;
+      
+      switch (c)
+       {
+       case O_DUMP:
+         optDump = true;
+         break;
+        case O_VERSION:
+#ifdef VERSION
+         cout << "Version " << VERSION << endl << g_szIdStr << endl;
+#else
+          cout << "Unknown version number" << endl;
+#endif
+         return (0);
+       case O_HELP:
+       case '?':
+         pjfinfo_usage(argv[0]);
+         return (0);
+       default:
+         pjfinfo_usage(argv[0]);
+         return (1);
+       }
+    }
+  
+  if (argc - optind != 1) {
+    pjfinfo_usage(argv[0]);
+    return (1);
+  }
+
+  pj_name = argv[optind];
+
+  Projections pj;
+  if (! pj.read (pj_name)) {
+    sys_error (ERR_SEVERE, "Can not open projection file %s", pj_name.c_str());
+    return (1);
+  }
+
+  if (optDump)
+    pj.printProjectionData();
+  else {
+    ostringstream os;
+    pj.printScanInfo (os);
+    cout << os.str();
+  }
+  
+  return(0);
+}
+
+
+#ifndef NO_MAIN
+int 
+main (const int argc, char *const argv[])
+{
+  int retval = 1;
+
+  try {
+    retval = pjfinfo_main(argc, argv);
+  } catch (exception e) {
+    cerr << "Exception: " << e.what() << endl;
+  } catch (...) {
+    cerr << "Unknown exception" << endl;
+  }
+
+  return (retval);
+}
+#endif