r97: Converted Scanner and Projections to C++
[ctsim.git] / src / pj2if.cpp
1 /*****************************************************************************
2 ** FILE IDENTIFICATION
3 **
4 **   Name:          proj2if.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.1 2000/06/17 20:12:15 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  *   proj2if.c                  Convert Raysum to image
30  *
31  * DATE
32  *   Apr 1999
33  */
34
35 #include "ct.h"
36
37
38 enum { O_VERBOSE, O_HELP, O_VERSION };
39
40 static struct option my_options[] =
41 {
42   {"verbose", 0, 0, O_VERBOSE},
43   {"help", 0, 0, O_HELP},
44   {"version", 0, 0, O_VERSION},
45   {0, 0, 0, 0}
46 };
47
48
49 void 
50 proj2if_usage (const char *program)
51 {
52   fprintf(stdout, "usage: %s in-proj-file out-if-file [OPTIONS]\n", fileBasename(program));
53   fprintf(stdout, "This program converts a projection file to a IF file\n");
54   fprintf(stdout, "\n");
55   fprintf(stdout, "   --verbose   Verbose mode\n");
56   fprintf(stdout, "   --version   Print version\n");
57   fprintf(stdout, "   --help      Print this help message\n");
58 }
59
60           
61
62 int 
63 proj2if_main (const int argc, char *const argv[])
64 {
65   char *proj_name, *im_name;
66   int ix, iy;
67   bool opt_verbose = false;
68   extern int optind;
69   
70   while (1)
71     {
72       int c = getopt_long (argc, argv, "", my_options, NULL);
73       if (c == -1)
74         break;
75       
76       switch (c)
77         {
78         case O_VERBOSE:
79           opt_verbose = true;
80           break;
81         case O_VERSION:
82 #ifdef VERSION
83           fprintf(stdout, "Version %s\n", VERSION);
84 #else
85           fprintf(stderr, "Unknown version number");
86 #endif
87           exit(0);
88         case O_HELP:
89         case '?':
90           proj2if_usage(argv[0]);
91           return (0);
92         default:
93           proj2if_usage(argv[0]);
94           return (1);
95         }
96     }
97   
98   if (argc - optind != 2) {
99     proj2if_usage(argv[0]);
100     return (1);
101   }
102
103   proj_name = argv[optind];
104   im_name = argv[optind + 1];
105
106   Projections proj;
107   if (! proj.read (proj_name)) {
108     sys_error (ERR_SEVERE, "Can not open projection file %s", proj_name);
109     return (1);
110   }
111
112   if (opt_verbose)
113       proj.printScanInfo();
114   
115   ImageFile im (im_name, proj.nDet(), proj.nView());
116   
117   ImageFileArray v = im.getArray();
118
119   for (iy = 0; iy < proj.nView(); iy++)
120     {
121       DetectorArray& detarray = proj.getDetectorArray (iy);
122       const DetectorValue* detval = detarray.detValues();
123       for (ix = 0; ix < proj.nDet(); ix++)
124         {
125           v[ix][iy] = detval[ix];
126         }
127     }
128
129   im.fileCreate ();
130   im.arrayDataWrite ();
131   im.labelAdd (Array2dFileLabel::L_HISTORY, proj.remark(), proj.calcTime());
132   im.labelAdd (Array2dFileLabel::L_HISTORY, "Conversion from .pj to .if");
133   im.fileClose ();
134   
135   return(0);
136 }
137
138
139 #ifndef NO_MAIN
140 int 
141 main (const int argc, char *const argv[])
142 {
143   return (proj2if_main(argc, argv));
144 }
145 #endif