CASToR  3.0
Tomographic Reconstruction (PET/SPECT/CT)
iOptimizerOneStepLate.hh
Go to the documentation of this file.
1 /*
2 This file is part of CASToR.
3 
4  CASToR is free software: you can redistribute it and/or modify it under the
5  terms of the GNU General Public License as published by the Free Software
6  Foundation, either version 3 of the License, or (at your option) any later
7  version.
8 
9  CASToR is distributed in the hope that it will be useful, but WITHOUT ANY
10  WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
11  FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
12  details.
13 
14  You should have received a copy of the GNU General Public License along with
15  CASToR (in file GNU_GPL.TXT). If not, see <http://www.gnu.org/licenses/>.
16 
17 Copyright 2017-2019 all CASToR contributors listed below:
18 
19  --> Didier BENOIT, Claude COMTAT, Marina FILIPOVIC, Thibaut MERLIN, Mael MILLARDET, Simon STUTE, Valentin VIELZEUF
20 
21 This is CASToR version 3.0.
22 */
23 
30 #ifndef IOPTIMIZERONESTEPLATE_HH
31 #define IOPTIMIZERONESTEPLATE_HH 1
32 
33 #include "gVariables.hh"
34 #include "sAddonManager.hh"
35 #include "vOptimizer.hh"
36 #include "oImageSpace.hh"
37 
38 
45 {
46  // -------------------------------------------------------------------
47  // Constructor & Destructor
48  public:
63 
64 
65  // -------------------------------------------------------------------
66  // Public member functions
67  public:
68  // Function for automatic insertion (put the class name as the parameter and do not add semi-column at the end of the line)
80  int ReadConfigurationFile(const string& a_configurationFile);
91  int ReadOptionsList(const string& a_optionsList);
92 
93 
94  // -------------------------------------------------------------------
95  // Private member functions (virtual in vOptimizer)
96  private:
97 
106 
107  // -------------------------------------------------------------------
108  // Private member functions (pure virtual in vOptimizer)
109  private:
119  void ShowHelpSpecific();
136  int InitializeSpecific();
151  int SensitivitySpecificOperations( FLTNB a_data, FLTNB a_forwardModel, FLTNB* ap_weight,
152  FLTNB a_multiplicativeCorrections, FLTNB a_additiveCorrections, FLTNB a_blankValue,
153  FLTNB a_quantificationFactor, oProjectionLine* ap_Line );
169  int DataSpaceSpecificOperations( FLTNB a_data, FLTNB a_forwardModel, FLTNB* ap_backwardValues,
170  FLTNB a_multiplicativeCorrections, FLTNB a_additiveCorrections, FLTNB a_blankValue,
171  FLTNB a_quantificationFactor, oProjectionLine* ap_Line );
187  int ImageSpaceSpecificOperations( FLTNB a_currentImageValue, FLTNB* ap_newImageValue,
188  FLTNB a_sensitivity, FLTNB* ap_correctionValues,
189  INTNB a_voxel, int a_tbf = -1, int a_rbf = -1, int a_cbf = -1 );
190 
191 
192  // -------------------------------------------------------------------
193  // Data members
194  private:
200 };
201 
202 
203 // Class for automatic insertion (set here the visible optimizer's name as the first parameter,
204 // put the class name as the second parameter and do NOT add semi-colon at the end of the line)
206 
207 #endif
208 
This header file is mainly used to declare some macro definitions and all includes needed from the st...
#define FLTNB
Definition: gVariables.hh:81
void ShowHelpSpecific()
A function used to show help about the child optimizer.
int SensitivitySpecificOperations(FLTNB a_data, FLTNB a_forwardModel, FLTNB *ap_weight, FLTNB a_multiplicativeCorrections, FLTNB a_additiveCorrections, FLTNB a_blankValue, FLTNB a_quantificationFactor, oProjectionLine *ap_Line)
This function compute the weight associated to the provided event (for sensitivity computation) ...
int ImageSpaceSpecificOperations(FLTNB a_currentImageValue, FLTNB *ap_newImageValue, FLTNB a_sensitivity, FLTNB *ap_correctionValues, INTNB a_voxel, int a_tbf=-1, int a_rbf=-1, int a_cbf=-1)
This function perform the image update step specific to the optimizer.
int ReadOptionsList(const string &a_optionsList)
A function used to read options from a list of options.
int ReadConfigurationFile(const string &a_configurationFile)
A function used to read options from a configuration file.
Declaration of class vOptimizer.
~iOptimizerOneStepLate()
The destructor of iOptimizerOneStepLate.
#define FUNCTION_OPTIMIZER(CLASS)
Definition: vOptimizer.hh:708
#define CLASS_OPTIMIZER(NAME, CLASS)
Definition: vOptimizer.hh:712
#define INTNB
Definition: gVariables.hh:92
This class is designed to generically described any iterative optimizer.
Definition: vOptimizer.hh:59
This class is designed to manage and store system matrix elements associated to a vEvent...
int DataSpaceSpecificOperations(FLTNB a_data, FLTNB a_forwardModel, FLTNB *ap_backwardValues, FLTNB a_multiplicativeCorrections, FLTNB a_additiveCorrections, FLTNB a_blankValue, FLTNB a_quantificationFactor, oProjectionLine *ap_Line)
This function performs the data space operations specific to the optimizer (computes the values to be...
Declaration of class oImageSpace.
iOptimizerOneStepLate()
The constructor of iOptimizerOneStepLate.
This class implements the One Step Late algorithm.
int InitializeSpecific()
This function is used to initialize specific stuff to the child optimizer.
Declaration of class sAddonManager.
int PreImageUpdateSpecificStep()
A private function used to compute the penalty term of the OneStepLate algorithm. ...
int CheckSpecificParameters()
A private function used to check the parameters settings specific to the child optimizer.