bc39fdc7ade5ebf4776e4da0638a9fff889629ac
[ctsim.git] / tools / pj2if.cpp
1 /*****************************************************************************
2 ** FILE IDENTIFICATION
3 **
4 **   Name:          pj2if.cpp
5 **   Purpose:       Convert an projection data file to an image file
6 **   Programmer:    Kevin Rosenberg
7 **   Date Started:  April 2000
8 **
9 **  This is part of the CTSim program
10 **  Copyright (C) 1983-2000 Kevin Rosenberg
11 **
12 **  $Id$
13 **
14 **  This program is free software; you can redistribute it and/or modify
15 **  it under the terms of the GNU General Public License (version 2) as
16 **  published by the Free Software Foundation.
17 **
18 **  This program is distributed in the hope that it will be useful,
19 **  but WITHOUT ANY WARRANTY; without even the implied warranty of
20 **  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21 **  GNU General Public License for more details.
22 **
23 **  You should have received a copy of the GNU General Public License
24 **  along with this program; if not, write to the Free Software
25 **  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
26 ******************************************************************************/
27
28 /* FILE
29  *   pj2if.c                    Convert Raysum to image
30  *
31  * DATE
32  *   Apr 1999
33  */
34
35 #include "ct.h"
36 #include "timer.h"
37
38
39 enum { O_VERBOSE, O_HELP, O_VERSION, O_POLAR };
40
41 static struct option my_options[] =
42 {
43   {"polar", 0, 0, O_POLAR},
44   {"verbose", 0, 0, O_VERBOSE},
45   {"help", 0, 0, O_HELP},
46   {"version", 0, 0, O_VERSION},
47   {0, 0, 0, 0}
48 };
49
50 static const char* g_szIdStr = "$Id$";
51
52 void
53 pj2if_usage (const char *program)
54 {
55   std::cout << "usage: " << fileBasename(program) << " in-proj-file out-if-file [OPTIONS]\n";
56   std::cout << "Converts a projection file to a imagefile\n";
57   std::cout << std::endl;
58   std::cout << "   --polar     Convert to polar format\n";
59   std::cout << "   --verbose   Verbose mode\n";
60   std::cout << "   --version   Print version\n";
61   std::cout << "   --help      Print this help message\n";
62 }
63
64 int
65 pj2if_main (const int argc, char *const argv[])
66 {
67   char *pj_name, *im_name;
68   bool optVerbose = false;
69   extern int optind;
70   Timer timerProgram;
71
72   while (1)
73     {
74       int c = getopt_long (argc, argv, "", my_options, NULL);
75       if (c == -1)
76         break;
77
78       switch (c)
79         {
80         case O_VERBOSE:
81           optVerbose = true;
82           break;
83         case O_VERSION:
84 #ifdef VERSION
85           std::cout << "Version " << VERSION << std::endl << g_szIdStr << std::endl;
86 #else
87           std::cout << "Unknown version number\n";
88 #endif
89           return (0);
90         case O_HELP:
91         case '?':
92           pj2if_usage(argv[0]);
93           return (0);
94         default:
95           pj2if_usage(argv[0]);
96           return (1);
97         }
98     }
99
100   if (argc - optind != 2) {
101     pj2if_usage(argv[0]);
102     return (1);
103   }
104
105   pj_name = argv[optind];
106   im_name = argv[optind + 1];
107
108   Projections pj;
109   if (! pj.read (pj_name)) {
110     sys_error (ERR_SEVERE, "Can not open projection file %s", pj_name);
111     return (1);
112   }
113
114   if (optVerbose) {
115     std::ostringstream os;
116     pj.printScanInfo (os);
117     std::cout << os.str();
118   }
119
120   ImageFile im (pj.nDet(), pj.nView());
121
122   ImageFileArray v = im.getArray();
123
124   for (int iy = 0; iy < pj.nView(); iy++) {
125     const DetectorArray& detarray = pj.getDetectorArray (pj.nView() - iy - 1);
126     const DetectorValue* detval = detarray.detValues();
127     for (int ix = 0; ix < pj.nDet(); ix++) {
128       v[ix][iy] = detval[ix];
129     }
130   }
131
132   im.labelAdd (pj.getLabel());
133   im.labelAdd (Array2dFileLabel::L_HISTORY, "Conversion from .pj to .if", timerProgram.timerEnd());
134   im.fileWrite (im_name);
135
136   return(0);
137 }
138
139
140 #ifndef NO_MAIN
141 int
142 main (const int argc, char *const argv[])
143 {
144   int retval = 1;
145
146   try {
147     retval = pj2if_main(argc, argv);
148   } catch (exception e) {
149     std::cerr << "Exception: " << e.what() << std::endl;
150   } catch (...) {
151     std::cerr << "Unknown exception\n";
152   }
153
154   return (retval);
155 }
156 #endif