r7061: initial property settings
[ctsim.git] / include / reconstruct.h
1 /*****************************************************************************
2 ** FILE IDENTIFICATION
3 **
4 **   Name:         reconstruct.h          Header file for Reconstruction class
5 **   Programmer:   Kevin Rosenberg
6 **   Date Started: Aug 84
7 **
8 **  This is part of the CTSim program
9 **  Copyright (c) 1983-2001 Kevin Rosenberg
10 **
11 **  $Id$
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 #ifndef __RECONSTRUCT_H
28 #define __RECONSTRUCT_H
29
30
31 class Projections;
32 class ImageFile;
33 class Backprojector;
34 class ProcessSignal;
35
36 #include <string>
37
38 struct ReconstructionROI {
39   double m_dXMin;
40   double m_dYMin;
41   double m_dXMax;
42   double m_dYMax;
43 };
44
45 class Reconstructor 
46 {
47  private:
48     const Projections& m_rOriginalProj;
49     const Projections* m_pProj;
50     ImageFile& m_rImagefile;
51     ProcessSignal* m_pProcessSignal;
52     Backprojector* m_pBackprojector;
53     int m_nFilteredProjections;
54     int m_iTrace;
55     const bool m_bRebinToParallel;
56     bool m_bFail;
57     std::string m_strFailMessage;
58
59     double* m_adPlotXAxis;
60
61  public:
62     Reconstructor (const Projections& rProj, ImageFile& rIF, const char* const filterName, double filt_param, 
63       const char* const filterMethodName, const int zeropad, const char* filterGenerationName, 
64       const char* const interpName, int interpFactor, const char* const backprojectName, const int trace, 
65       ReconstructionROI* pROI = NULL, bool bRebinToParallel = false, SGP* pSGP = NULL);
66
67     ~Reconstructor ();
68
69     bool fail() const {return m_bFail;}
70     const std::string& failMessage() const {return m_strFailMessage;}
71     
72     void plotFilter (SGP* pSGP = NULL);
73
74     void reconstructAllViews ();
75
76     void reconstructView (int iStartView = 0, int iViewCount = -1, SGP* pSGP = NULL, bool bBackprojectView = true, double dGraphWidth = 1.);
77     void postProcessing ();
78 };
79
80 #endif