83d54762d5002c6742c0ca5ef35e08d8813405f5
[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: reconstruct.h,v 1.5 2001/01/29 23:11:32 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 #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 class Reconstructor 
39 {
40 public:
41     Reconstructor (const Projections& rProj, ImageFile& rIF, const char* const filterName, double filt_param, const char* const filterMethodName, const int zeropad, const char* filterGenerationName, const char* const interpName, int interpFactor, const char* const backprojectName, const int trace, SGP* pSGP = NULL);
42
43     ~Reconstructor ();
44
45     bool fail() const {return m_bFail;}
46     const std::string& failMessage() const {return m_strFailMessage;}
47     
48     void plotFilter (SGP* pSGP = NULL);
49
50     void reconstructAllViews ();
51
52     void reconstructView (int iStartView = 0, int iViewCount = -1, SGP* pSGP = NULL, bool bBackprojectView = true, double dGraphWidth = 1.);
53     
54  private:
55     const Projections& m_rProj;
56     ImageFile& m_rImagefile;
57     ProcessSignal* m_pProcessSignal;
58     Backprojector* m_pBackprojector;
59     int m_nFilteredProjections;
60     int m_iTrace;
61
62     bool m_bFail;
63     std::string m_strFailMessage;
64
65     double* m_adPlotXAxis;
66 };
67
68 #endif