f65d55d12e9d6aa57e285e29ab2251bc54bec0b1
[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: pj2if.cpp,v 1.3 2000/08/03 09:57:29 kevin Exp $
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 };
40
41 static struct option my_options[] =
42 {
43   {"verbose", 0, 0, O_VERBOSE},
44   {"help", 0, 0, O_HELP},
45   {"version", 0, 0, O_VERSION},
46   {0, 0, 0, 0}
47 };
48
49 static const char* g_szIdStr = "$Id: pj2if.cpp,v 1.3 2000/08/03 09:57:29 kevin Exp $";
50
51 void 
52 pj2if_usage (const char *program)
53 {
54   cout << "usage: " << fileBasename(program) << " in-proj-file out-if-file [OPTIONS]" << endl;
55   cout << "Converts a projection file to a IF file" << endl;
56   cout << endl;
57   cout << "   --verbose   Verbose mode" << endl;
58   cout << "   --version   Print version" << endl;
59   cout << "   --help      Print this help message" << endl;
60 }
61
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           cout << "Version " << VERSION << endl << g_szIdStr << endl;
86 #else
87           cout << "Unknown version number" << endl;
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       pj.printScanInfo();
116   
117   ImageFile im (pj.nDet(), pj.nView());
118   
119   ImageFileArray v = im.getArray();
120
121   for (int iy = 0; iy < pj.nView(); iy++) {
122     const DetectorArray& detarray = pj.getDetectorArray (iy);
123     const DetectorValue* detval = detarray.detValues();
124     for (int ix = 0; ix < pj.nDet(); ix++) {
125       v[ix][iy] = detval[ix];
126     }
127   }
128
129   im.labelAdd (pj.getLabel());
130   im.labelAdd (Array2dFileLabel::L_HISTORY, "Conversion from .pj to .if", timerProgram.timerEnd());
131   im.fileWrite (im_name);
132   
133   return(0);
134 }
135
136
137 #ifndef NO_MAIN
138 int 
139 main (const int argc, char *const argv[])
140 {
141   int retval = 1;
142
143   try {
144     retval = pj2if_main(argc, argv);
145   } catch (exception e) {
146     cerr << "Exception: " << e.what() << endl;
147   } catch (...) {
148     cerr << "Unknown exception" << endl;
149   }
150
151   return (retval);
152 }
153 #endif