66 cout <<
"This optimizer implements the standard Landweber algorithm for least-squares optimization." << endl;
67 cout <<
"No penalty can be used with this algorithm." << endl;
68 cout <<
"Be aware that the relaxation parameter is not automatically set, so it often requires some" << endl;
69 cout <<
"trials and errors to find an optimal setting. Also, remember that this algorithm is particularly" << endl;
70 cout <<
"slow to converge." << endl;
71 cout <<
"The following options can be used (in this particular order when provided as a list):" << endl;
72 cout <<
" initial image value: to set the uniform voxel value for the initial image" << endl;
73 cout <<
" relaxation factor: to set the relaxation factor applied to the update" << endl;
85 key_word =
"initial image value";
88 Cerr(
"***** iOptimizerLandweber::ReadAndCheckConfigurationFile() -> Failed to get the '" << key_word <<
"' keyword !" << endl);
92 key_word =
"relaxation factor";
95 Cerr(
"***** iOptimizerLandweber::ReadAndCheckConfigurationFile() -> Failed to get the '" << key_word <<
"' keyword !" << endl);
113 if (
ReadStringOption(a_optionsList, options, 2,
",",
"Landweber configuration"))
115 Cerr(
"***** iOptimizerLandweber::ReadAndCheckConfigurationFile() -> Failed to correctly read the list of options !" << endl);
136 Cerr(
"***** iOptimizerLandweber->Initialize() -> Provided relaxation factor (" <<
m_relaxationFactor <<
") must be strictly positive !" << endl);
153 Cout(
"iOptimizerLandweber::Initialize() -> Use the Landweber algorithm" << endl);
170 FLTNB a_multiplicativeCorrections,
FLTNB a_additiveCorrections,
185 FLTNB a_multiplicativeCorrections,
FLTNB a_additiveCorrections,
189 *ap_backwardValues = (a_data - a_forwardModel);
200 FLTNB a_sensitivity,
FLTNB* ap_correctionValues )
205 *ap_newImageValue = a_currentImageValue + image_update_factor;
int ReadOptionsList(const string &a_optionsList)
A function used to read options from a list of options.
void ShowHelpSpecific()
A function used to show help about the child optimizer.
bool m_listmodeCompatibility
int DataSpaceSpecificOperations(FLTNB a_data, FLTNB a_forwardModel, FLTNB *ap_backwardValues, FLTNB a_multiplicativeCorrections, FLTNB a_additiveCorrections, FLTNB a_quantificationFactor, oProjectionLine *ap_Line)
This function performs the data space operations specific to the optimizer (computes the values to be...
int ReadConfigurationFile(const string &a_configurationFile)
A function used to read options from a configuration file.
~iOptimizerLandweber()
The destructor of iOptimizerLandweber.
int ImageSpaceSpecificOperations(FLTNB a_currentImageValue, FLTNB *ap_newImageValue, FLTNB a_sensitivity, FLTNB *ap_correctionValues)
This function perform the image update step specific to the optimizer.
int InitializeSpecific()
This function is used to initialize specific stuff to the child optimizer.
int SensitivitySpecificOperations(FLTNB a_data, FLTNB a_forwardModel, FLTNB *ap_weight, FLTNB a_multiplicativeCorrections, FLTNB a_additiveCorrections, FLTNB a_quantificationFactor, oProjectionLine *ap_Line)
This function compute the weight associated to the provided event (for sensitivity computation) ...
int CheckSpecificParameters()
A private function used to check the parameters settings specific to the child optimizer.
int ReadDataASCIIFile(const string &a_file, const string &a_keyword, T *ap_return, int a_nbElts, bool a_mandatoryFlag)
Look for "a_nbElts" elts in the "a_file" file matching the "a_keyword" string passed as parameter a...
bool m_histogramCompatibility
#define KEYWORD_MANDATORY
Declaration of class iOptimizerLandweber.
This class is designed to generically described any iterative optimizer.
This class is designed to manage and store system matrix elements associated to a vEvent...
iOptimizerLandweber()
The constructor of iOptimizerLandweber.
Declaration of class sOutputManager.
int ReadStringOption(const string &a_input, T *ap_return, int a_nbElts, const string &sep, const string &a_option)
Parse the 'a_input' string corresponding to the 'a_option' into 'a_nbElts' elements, using the 'sep' separator. The results are returned in the templated 'ap_return' dynamic templated array. Call "ConvertFromString()" to perform the correct conversion depending on the type of the data to convert.