CASToR  2.0
Tomographic Reconstruction (PET/SPECT/CT)
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
iOptimizerMLTR.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-2018 all CASToR contributors listed below:
18 
19  --> current contributors: Thibaut MERLIN, Simon STUTE, Didier BENOIT, Claude COMTAT, Marina FILIPOVIC, Mael MILLARDET
20  --> past contributors: Valentin VIELZEUF
21 
22 This is CASToR version 2.0.
23 */
24 
31 #ifndef IOPTIMIZERMLTR_HH
32 #define IOPTIMIZERMLTR_HH 1
33 
34 #include "gVariables.hh"
35 #include "sAddonManager.hh"
36 #include "vOptimizer.hh"
37 
46 class iOptimizerMLTR : public vOptimizer
47 {
48  // -------------------------------------------------------------------
49  // Constructor & Destructor
50  public:
65 
66 
67  // -------------------------------------------------------------------
68  // Public member functions
69  public:
70  // Function for automatic insertion (put the class name as the parameter and do not add semi-column at the end of the line)
82  int ReadConfigurationFile(const string& a_configurationFile);
93  int ReadOptionsList(const string& a_optionsList);
94 
95  // -------------------------------------------------------------------
96  // Private member functions (virtual in vOptimizer)
97  private:
109  int PostDataUpdateSpecificStep(int a_iteration, int a_nbIterations, int a_subset, int* ap_nbSubsets);
110 
111  // -------------------------------------------------------------------
112  // Private member functions (pure virtual in vOptimizer)
113  private:
123  void ShowHelpSpecific();
140  int InitializeSpecific();
156  int SensitivitySpecificOperations( FLTNB a_data, FLTNB a_forwardModel, FLTNB* ap_weight,
157  FLTNB a_multiplicativeCorrections, FLTNB a_additiveCorrections, FLTNB a_blankValue,
158  FLTNB a_quantificationFactor, oProjectionLine* ap_Line );
175  int DataSpaceSpecificOperations( FLTNB a_data, FLTNB a_forwardModel, FLTNB* ap_backwardValues,
176  FLTNB a_multiplicativeCorrections, FLTNB a_additiveCorrections, FLTNB a_blankValue,
177  FLTNB a_quantificationFactor, oProjectionLine* ap_Line );
189  int ImageSpaceSpecificOperations( FLTNB a_currentImageValue, FLTNB* ap_newImageValue,
190  FLTNB a_sensitivity, FLTNB* ap_correctionValues, INTNB a_voxel );
191 
192 
193  // -------------------------------------------------------------------
194  // Data members
195  private:
202 };
203 
204 
205 // Class for automatic insertion (set here the visible optimizer's name as the first parameter,
206 // put the class name as the second parameter and do NOT add semi-colon at the end of the line)
208 
209 #endif
210 
This header file is mainly used to declare some macro definitions and all includes needed from the st...
#define FLTNB
Definition: gVariables.hh:81
~iOptimizerMLTR()
The destructor of iOptimizerMLTR.
FLTNB m_initialRelaxationFactor
void ShowHelpSpecific()
A function used to show help about the child optimizer.
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...
FLTNB m_currentRelaxationFactor
iOptimizerMLTR()
The constructor of iOptimizerMLTR.
int CheckSpecificParameters()
A private function used to check the parameters settings specific to the child optimizer.
Declaration of class vOptimizer.
int ReadOptionsList(const string &a_optionsList)
A function used to read options from a list of options.
int ImageSpaceSpecificOperations(FLTNB a_currentImageValue, FLTNB *ap_newImageValue, FLTNB a_sensitivity, FLTNB *ap_correctionValues, INTNB a_voxel)
This function perform the image update step specific to the optimizer.
#define FUNCTION_OPTIMIZER(CLASS)
Definition: vOptimizer.hh:655
int InitializeSpecific()
This function is used to initialize specific stuff to the child optimizer.
This class implements a version of the Maximum Likelihood Transmission algorithm. ...
int PostDataUpdateSpecificStep(int a_iteration, int a_nbIterations, int a_subset, int *ap_nbSubsets)
This function is overloaded from the vOptimizer that does nothing by default.
#define CLASS_OPTIMIZER(NAME, CLASS)
Definition: vOptimizer.hh:659
#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...
bool m_nonNegativityConstraint
FLTNB m_finalRelaxationFactor
int ReadConfigurationFile(const string &a_configurationFile)
A function used to read options from a configuration file.
Declaration of class sAddonManager.
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) ...