r244: *** empty log message ***
[ctsim.git] / libctsim / projections.cpp
1 /*****************************************************************************
2 ** FILE IDENTIFICATION
3 **
4 **   Name:         projections.cpp         Projection data classes
5 **   Programmer:   Kevin Rosenberg
6 **   Date Started: Aug 84
7 **
8 **  This is part of the CTSim program
9 **  Copyright (C) 1983-2000 Kevin Rosenberg
10 **
11 **  $Id: projections.cpp,v 1.27 2000/12/04 05:36:57 kevin Exp $
12 **
13 **  This program is free software; you can redistribute it and/or modify
14 **  it under the terms of the GNU General Public License (version 2) as
15 **  published by the Free Software Foundation.
16 **
17 **  This program is distributed in the hope that it will be useful,
18 **  but WITHOUT ANY WARRANTY; without even the implied warranty of
19 **  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20 **  GNU General Public License for more details.
21 **
22 **  You should have received a copy of the GNU General Public License
23 **  along with this program; if not, write to the Free Software
24 **  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
25 ******************************************************************************/
26
27 #include "ct.h"
28 \r
29 const kuint16 Projections::m_signature = ('P'*256 + 'J');\r
30
31 /* NAME
32  *    Projections               Constructor for projections matrix storage 
33  *
34  * SYNOPSIS
35  *    proj = projections_create (filename, nView, nDet)
36  *    Projections& proj         Allocated projections structure & matrix
37  *    int nView                 Number of rotated view
38  *    int nDet                  Number of detectors
39  *
40  */
41
42 Projections::Projections (const Scanner& scanner)
43   : m_projData(0)
44 {
45   initFromScanner (scanner);
46 }
47
48
49 Projections::Projections (const int nView, const int nDet)
50   : m_projData(0)
51 {
52   init (nView, nDet);
53 }
54
55 Projections::Projections (void)
56   : m_projData(0)
57 {
58   init (0, 0);
59 }
60
61 Projections::~Projections (void)
62 {
63   deleteProjData();
64 }
65
66
67 void
68 Projections::init (const int nView, const int nDet)
69 {
70   m_label.setLabelType (Array2dFileLabel::L_HISTORY);
71   m_nView = nView;
72   m_nDet = nDet;
73   newProjData ();
74 }
75
76 void
77 Projections::initFromScanner (const Scanner& scanner)
78 {
79   m_label.setLabelType (Array2dFileLabel::L_HISTORY);
80   deleteProjData();
81   init (scanner.nView(), scanner.nDet());
82
83   m_phmLen = scanner.phmLen();
84   m_rotInc = scanner.rotInc();
85   m_detInc = scanner.detInc();
86   m_geometry = scanner.geometry();
87   m_focalLength = scanner.focalLength();
88   m_fieldOfView = scanner.fieldOfView();
89   m_rotStart = 0;
90   m_detStart =  -(scanner.detLen() / 2);
91 #if 0
92   if (m_geometry == Scanner::GEOMETRY_EQUILINEAR) {
93     m_detInc /= 2;
94     cout << "Kludge: detInc /= 2 in Projections::initFromScanner" << endl;
95   }
96 #endif
97 }
98
99 void
100 Projections::setNView (int nView)  // used by MPI to reduce # of views
101 {
102   deleteProjData();
103   init (nView, m_nDet);
104 }
105
106 // NAME
107 // newProjData
108
109 void 
110 Projections::newProjData (void)
111 {
112   if (m_projData)
113     sys_error(ERR_WARNING, "m_projData != NULL [newProjData]");
114
115   if (m_nView > 0 && m_nDet) {
116     m_projData = new DetectorArray* [m_nView];
117
118     for (int i = 0; i < m_nView; i++)
119       m_projData[i] = new DetectorArray (m_nDet);
120   }
121 }
122
123
124 /* NAME
125  *   projections_free                   Free memory allocated to projections
126  *
127  * SYNOPSIS
128  *   projections_free(proj)
129  *   Projections& proj                          Projectionss to be deallocated
130  */
131
132 void 
133 Projections::deleteProjData (void)
134 {
135   if (m_projData != NULL) {
136     for (int i = 0; i < m_nView; i++)
137       delete m_projData[i];
138
139     delete m_projData;
140     m_projData = NULL;
141   }
142 }
143
144
145 /* NAME
146  *    Projections::headerWwrite         Write data header for projections file
147  *
148  */
149
150 bool 
151 Projections::headerWrite (fnetorderstream& fs)
152 {
153   kuint16 _hsize = m_headerSize;
154   kuint16 _signature = m_signature;
155   kuint32 _nView = m_nView;
156   kuint32 _nDet = m_nDet;
157   kuint32 _geom = m_geometry;
158   kuint16 _remarksize = m_remark.length();
159   kuint16 _year = m_year;
160   kuint16 _month = m_month;
161   kuint16 _day = m_day;
162   kuint16 _hour = m_hour;
163   kuint16 _minute = m_minute;
164   kuint16 _second = m_second;
165
166   kfloat64 _calcTime = m_calcTime;
167   kfloat64 _rotStart = m_rotStart;
168   kfloat64 _rotInc = m_rotInc;
169   kfloat64 _detStart = m_detStart;
170   kfloat64 _detInc = m_detInc;
171   kfloat64 _phmLen = m_phmLen;
172   kfloat64 _fieldOfView = m_fieldOfView;
173   kfloat64 _focalLength = m_focalLength;
174
175   fs.seekp(0);
176   if (! fs)
177     return false;
178
179   fs.writeInt16 (_hsize);
180   fs.writeInt16 (_signature);
181   fs.writeInt32 (_nView);
182   fs.writeInt32 (_nDet);
183   fs.writeInt32 (_geom);
184   fs.writeFloat64 (_calcTime);
185   fs.writeFloat64 (_rotStart);
186   fs.writeFloat64 (_rotInc);
187   fs.writeFloat64 (_detStart);
188   fs.writeFloat64 (_detInc);
189   fs.writeFloat64 (_phmLen);
190   fs.writeFloat64 (_focalLength);
191   fs.writeFloat64 (_fieldOfView);
192   fs.writeInt16 (_year);
193   fs.writeInt16 (_month);
194   fs.writeInt16 (_day);
195   fs.writeInt16 (_hour);
196   fs.writeInt16 (_minute);
197   fs.writeInt16 (_second);
198   fs.writeInt16 (_remarksize);
199   fs.write (m_remark.c_str(), _remarksize);
200
201   m_headerSize = fs.tellp();
202   _hsize = m_headerSize;
203   fs.seekp(0);
204   fs.writeInt16 (_hsize);
205   if (! fs)
206       return false;
207   
208   return true;
209 }
210
211 /* NAME
212  *    projections_read_header         Read data header for projections file
213  *
214  */
215 bool
216 Projections::headerRead (fnetorderstream& fs)
217 {
218   kuint16 _hsize, _signature, _year, _month, _day, _hour, _minute, _second, _remarksize = 0;
219   kuint32 _nView, _nDet, _geom;
220   kfloat64 _calcTime, _rotStart, _rotInc, _detStart, _detInc, _phmLen, _focalLength, _fieldOfView;
221   
222   fs.seekg(0);
223   if (! fs)
224       return false;
225
226   fs.readInt16 (_hsize);
227   fs.readInt16 (_signature);
228   fs.readInt32 (_nView);
229   fs.readInt32 (_nDet);
230   fs.readInt32 (_geom);
231   fs.readFloat64 (_calcTime);
232   fs.readFloat64 (_rotStart);
233   fs.readFloat64 (_rotInc);
234   fs.readFloat64 (_detStart);
235   fs.readFloat64 (_detInc);
236   fs.readFloat64 (_phmLen);
237   fs.readFloat64 (_focalLength);
238   fs.readFloat64 (_fieldOfView);
239   fs.readInt16 (_year);
240   fs.readInt16 (_month);
241   fs.readInt16 (_day);
242   fs.readInt16 (_hour);
243   fs.readInt16 (_minute);
244   fs.readInt16 (_second);
245   fs.readInt16 (_remarksize);
246
247   if (! fs) {
248       sys_error (ERR_SEVERE, "Error reading header information , _remarksize=%d [projections_read_header]", _remarksize);
249       return false;
250   }
251
252   if (_signature != m_signature) {
253     sys_error (ERR_SEVERE, "File %s does not have a valid projection file signature", m_filename.c_str());
254     return false;
255   }
256
257   char remarkStorage[_remarksize+1];
258   fs.read (remarkStorage, _remarksize);
259   if (! fs) {
260     sys_error (ERR_SEVERE, "Error reading remark, _remarksize = %d", _remarksize);
261     return false;
262   }
263   remarkStorage[_remarksize] = 0;
264   m_remark = remarkStorage;
265
266   off_t _hsizeread = fs.tellg();
267   if (!fs || _hsizeread != _hsize) {
268       sys_error (ERR_WARNING, "File header size read %ld != file header size stored %ld [read_projections_header]\n_remarksize=%ld", (long int) _hsizeread, _hsize, _remarksize);
269       return false;
270   }
271   
272   m_headerSize = _hsize;
273   m_nView = _nView;
274   m_nDet = _nDet;
275   m_geometry = _geom;
276   m_calcTime = _calcTime;
277   m_rotStart = _rotStart;
278   m_rotInc = _rotInc;
279   m_detStart = _detStart;
280   m_detInc = _detInc;
281   m_phmLen = _phmLen;
282   m_focalLength = _focalLength;
283   m_fieldOfView = _fieldOfView;
284   m_year = _year;
285   m_month = _month;
286   m_day = _day;
287   m_hour = _hour;
288   m_minute = _minute;
289   m_second = _second;
290
291   m_label.setLabelType (Array2dFileLabel::L_HISTORY);
292   m_label.setLabelString (m_remark);
293   m_label.setCalcTime (m_calcTime);
294   m_label.setDateTime (m_year, m_month, m_day, m_hour, m_minute, m_second);
295
296   return true;
297 }
298
299 bool
300 Projections::read (const string& filename)
301 {
302   return read (filename.c_str());
303 }
304
305
306 bool
307 Projections::read (const char* filename)
308 {
309   frnetorderstream fileRead (filename, ios::in | ios::binary);
310   m_filename = filename;
311
312   if (! fileRead)
313     return false;
314
315   if (! headerRead (fileRead))
316     return false;
317
318   deleteProjData ();
319   newProjData();
320
321   for (int i = 0; i < m_nView; i++) {
322     if (! detarrayRead (fileRead, *m_projData[i], i))
323       break;
324   }
325
326   fileRead.close();
327   return true;
328 }
329
330
331 bool
332 Projections::write (const string& filename)
333 {
334   return write (filename.c_str());
335 }
336
337 bool
338 Projections::write (const char* filename)
339 {
340   frnetorderstream fs (filename, ios::out | ios::binary | ios::trunc | ios::ate);
341   m_filename = filename;
342   if (! fs) {
343     sys_error (ERR_SEVERE, "Error opening file %s for output [projections_create]", filename);
344     return false;
345   }
346
347 #ifdef HAVE_TIME
348   time_t t = time(NULL);
349   tm* lt = localtime(&t);
350   m_year = lt->tm_year;
351   m_month = lt->tm_mon;
352   m_day = lt->tm_mday;
353   m_hour = lt->tm_hour;
354   m_minute = lt->tm_min;
355   m_second = lt->tm_sec;
356 #endif
357
358   if (! headerWrite (fs))
359       return false;
360
361   if (m_projData != NULL) {
362     for (int i = 0; i < m_nView; i++) {
363       if (! detarrayWrite (fs, *m_projData[i], i))
364         break;
365     }
366   }
367   if (! fs)
368     return false;
369
370  fs.close();
371
372   return true;
373 }
374
375 /* NAME
376  *   detarrayRead               Read a Detector Array structure from the disk
377  *
378  * SYNOPSIS
379  *   detarrayRead (proj, darray, view_num)
380  *   DETARRAY *darray           Detector array storage location to be filled
381  *   int      view_num          View number to read
382  */
383
384 bool
385 Projections::detarrayRead (fnetorderstream& fs, DetectorArray& darray, const int iview)
386 {
387   const int detval_bytes = darray.nDet() * sizeof(kfloat32);
388   const int detheader_bytes = sizeof(kfloat64) /* view_angle */ + sizeof(kint32) /* nDet */;
389   const int view_bytes = detheader_bytes + detval_bytes;
390   const off_t start_data = m_headerSize + (iview * view_bytes);
391   DetectorValue* detval_ptr = darray.detValues();  
392   kfloat64 view_angle;
393   kuint32 nDet;
394
395   fs.seekg (start_data);
396
397   fs.readFloat64 (view_angle);
398   fs.readInt32 (nDet);
399   darray.setViewAngle (view_angle);
400   //  darray.setNDet ( nDet);
401   
402   for (unsigned int i = 0; i < nDet; i++) {
403       kfloat32 detval;
404       fs.readFloat32 (detval);
405       detval_ptr[i] = detval;
406   }
407   if (! fs)
408     return false;
409
410   return true;
411 }
412
413
414 /* NAME
415  *   detarrayWrite                      Write detector array data to the disk
416  *
417  * SYNOPSIS
418  *   detarrayWrite (darray, view_num)
419  *   DETARRAY *darray                   Detector array data to be written
420  *   int      view_num                  View number to write
421  *
422  * DESCRIPTION
423  *       This routine writes the detarray data from the disk sequentially to
424  *    the file that was opened with open_projections().  Data is written in
425  *    binary format.
426  */
427
428 bool
429 Projections::detarrayWrite (fnetorderstream& fs, const DetectorArray& darray, const int iview)
430 {
431   const int detval_bytes = darray.nDet() * sizeof(float);
432   const int detheader_bytes = sizeof(kfloat64) /* view_angle */ + sizeof(kint32) /* nDet */;
433   const int view_bytes = detheader_bytes + detval_bytes;
434   const off_t start_data = m_headerSize + (iview * view_bytes);
435   const DetectorValue* const detval_ptr = darray.detValues();  
436   kfloat64 view_angle = darray.viewAngle();
437   kuint32 nDet = darray.nDet();
438   
439   fs.seekp (start_data);
440   if (! fs) {
441     sys_error (ERR_SEVERE, "Error seeking detectory array [detarrayWrite]");
442     return false;
443   }
444
445   fs.writeFloat64 (view_angle);
446   fs.writeInt32 (nDet);
447
448   for (unsigned int i = 0; i < nDet; i++) {
449     kfloat32 detval = detval_ptr[i];
450     fs.writeFloat32 (detval);
451   }
452
453   if (! fs)
454     return (false);
455
456   return true;
457 }
458
459 /* NAME
460  *   printProjectionData                        Print projections data
461  *
462  * SYNOPSIS
463  *   printProjectionData ()
464  */
465
466 void
467 Projections::printProjectionData (void)
468 {
469   printf("Projections Data\n\n");
470   printf("Description: %s\n", m_remark.c_str());
471   printf("Geometry: %s\n", Scanner::convertGeometryIDToName (m_geometry));
472   printf("nView       = %8d           nDet = %8d\n", m_nView, m_nDet);
473   printf("focalLength = %8.4f  fieldOfView = %8.4f\n", m_focalLength, m_fieldOfView);
474   printf("rotStart    = %8.4f       rotInc = %8.4f\n", m_rotStart, m_rotInc);
475   printf("detStart    = %8.4f       detInc = %8.4f\n", m_detStart, m_detInc);
476   if (m_projData != NULL) {
477       for (int ir = 0; ir < m_nView; ir++) {
478           printf("View %d: angle %f\n", ir, m_projData[ir]->viewAngle());
479           DetectorValue* detval = m_projData[ir]->detValues();
480           for (int id = 0; id < m_projData[ir]->nDet(); id++)
481               printf("%8.4f  ", detval[id]);
482           printf("\n");
483       }
484   }
485 }
486
487 void 
488 Projections::printScanInfo (ostringstream& os) const
489 {
490   os << "Number of detectors: " << m_nDet << "\n";
491   os << "    Number of views: " << m_nView<< "\n";
492   os << "             Remark: " << m_remark.c_str()<< "\n";
493   os << "           Geometry: " << Scanner::convertGeometryIDToName (m_geometry)<< "\n";
494   os << "       Focal Length: " << m_focalLength<< "\n";
495   os << "      Field Of View: " << m_fieldOfView<< "\n";
496   os << "             phmLen: " << m_phmLen<< "\n";
497   os << "           detStart: " << m_detStart<< "\n";
498   os << "             detInc: " << m_detInc<< "\n";
499   os << "           rotStart: " << m_rotStart<< "\n";
500   os << "             rotInc: " << m_rotInc<< "\n";
501 }
502
503
504