CASToR
1.1
Tomographic Reconstruction (PET/SPECT)
|
This class is designed to manage the optimization part of an iterative reconstruction. More...
#include <oOptimizerManager.hh>
Public Member Functions | |
oOptimizerManager () | |
The constructor of oOptimizerManager. More... | |
~oOptimizerManager () | |
The destructor of oOptimizerManager. More... | |
int | CheckParameters () |
A function used to check the parameters settings. More... | |
int | Initialize () |
A function used to initialize the manager and the optimizer it manages. More... | |
int | PreDataUpdateStep (int a_iteration, int a_nbIterations, int a_subset, int a_nbSubsets) |
A function that simply calls the eponym function from the vOptimizer. More... | |
int | PostDataUpdateStep (int a_iteration, int a_nbIterations, int a_subset, int a_nbSubsets) |
A function that simply calls the eponym function from the vOptimizer. More... | |
int | DataUpdateStep (oProjectionLine *ap_Line, oImageSpace *ap_Image, vEvent *ap_Event, int a_bed, int a_timeFrame, int a_respGate, int a_cardGate, int a_iteration, int a_thread) |
A function dedicated to the update step in the data space (for each event inside the loop) More... | |
int | ImageUpdateStep (oImageSpace *ap_Image, int a_iteration, int a_nbSubsets) |
A function dedicated to the update step in the image space (performed after the loop on events) More... | |
void | SetVerbose (int a_verboseLevel) |
Set the verbose level. More... | |
void | SetOptionsOptimizer (const string &a_optionsOptimizer) |
Set the optimizer projection options contained in the provided string. More... | |
void | SetOptionsPenalty (const string &a_optionsPenalty) |
Set the penalty projection options contained in the provided string. More... | |
void | SetImageDimensionsAndQuantification (oImageDimensionsAndQuantification *ap_ImageDimensionsAndQuantification) |
Set the image dimensions in use. More... | |
void | SetNbTOFBins (int a_nbTOFBins) |
Set the number of TOF bins in use. More... | |
void | SetDataMode (int a_dataMode) |
Set the mode of the data (histogram, list-mode) More... | |
void | SetDataType (int a_dataType) |
Set the type of the data (pet, spect, etc) More... | |
void | SetOptimizerFOMFlag (bool a_optimizerFOMFlag) |
Set the optimizer FOM flag that specifies if some figures-of-merit (FOM) will be computed in the data space. More... | |
void | SetOptimizerImageStatFlag (bool a_optimizerImageStatFlag) |
Set the optimizer image stat flag that specifies if some basic statistics about image update is computed. More... | |
int | GetNbBackwardImages () |
Return the number of backward images used by the optimizer, explaining why the eponym function of vOptimizer is called. More... | |
FLTNB | GetInitialValue () |
Return the initial image value used by the optimizer, explaining why the eponym function of vOptimizer is called. More... | |
Private Member Functions | |
int | ParseOptionsAndInitializeOptimizerAndPenalty () |
Private Attributes | |
oImageDimensionsAndQuantification * | mp_ImageDimensionsAndQuantification |
int | m_dataMode |
int | m_dataType |
int | m_nbTOFBins |
string | m_optionsOptimizer |
string | m_optionsPenalty |
bool | m_optimizerFOMFlag |
bool | m_optimizerImageStatFlag |
vOptimizer * | mp_Optimizer |
vPenalty * | mp_Penalty |
int | m_verbose |
This class is designed to manage the optimization part of an iterative reconstruction.
As each manager class, it is created in the main program, all parameters are then set, checked, and the manager is initialized. The manager is then used by the algorithm itself, where the function DataUpdateStep() function is called for each event to apply the forward projection, perform operations in the data space and apply the back-proj, based on a oProjectionLine, a vEvent and a vOptimizer. The ImageUpdateStep() function is called after the loop on events to apply the update operations in the image space, based on the back-projected correction images.
Definition at line 29 of file oOptimizerManager.hh.
oOptimizerManager::oOptimizerManager | ( | ) |
The constructor of oOptimizerManager.
This is the default and unique constructor. It does not take any parameter and its role is only to affect default values to each member of the class.
Definition at line 27 of file oOptimizerManager.cc.
oOptimizerManager::~oOptimizerManager | ( | ) |
The destructor of oOptimizerManager.
This is the default and unique destructor. It does not take any parameter and its role is only to free or delete all structures that were built by this class.
Definition at line 55 of file oOptimizerManager.cc.
int oOptimizerManager::CheckParameters | ( | ) |
A function used to check the parameters settings.
This function does not take any parameter and is used to check that all mandatory members were correctly parameterized.
Definition at line 64 of file oOptimizerManager.cc.
int oOptimizerManager::DataUpdateStep | ( | oProjectionLine * | ap_Line, |
oImageSpace * | ap_Image, | ||
vEvent * | ap_Event, | ||
int | a_bed, | ||
int | a_timeFrame, | ||
int | a_respGate, | ||
int | a_cardGate, | ||
int | a_iteration, | ||
int | a_thread | ||
) |
A function dedicated to the update step in the data space (for each event inside the loop)
oProjectionLine* | ap_Line |
oImageSpace* | ap_Image |
vEvent* | ap_Event |
int | a_bed |
int | a_timeFrame |
int | a_respGate |
int | a_cardGate |
int | a_iteration |
int | a_thread |
This function will call many functions of the vOptimizer that split up the update step in the data space in smaller steps: 1. forward projection, 2. optional step, 3. backproj sensitivity for histogram mode,
Definition at line 386 of file oOptimizerManager.cc.
|
inline |
Return the initial image value used by the optimizer, explaining why the eponym function of vOptimizer is called.
Definition at line 219 of file oOptimizerManager.hh.
|
inline |
Return the number of backward images used by the optimizer, explaining why the eponym function of vOptimizer is called.
Definition at line 213 of file oOptimizerManager.hh.
int oOptimizerManager::ImageUpdateStep | ( | oImageSpace * | ap_Image, |
int | a_iteration, | ||
int | a_nbSubsets | ||
) |
A function dedicated to the update step in the image space (performed after the loop on events)
oImageSpace* | ap_Image |
int | a_iteration |
int | a_nbSubsets |
This function will update the visited voxels first (see in vOptimizer for details), manage the call for penalty computation and call the image update step function specific to the optimizer.
Definition at line 475 of file oOptimizerManager.cc.
int oOptimizerManager::Initialize | ( | ) |
A function used to initialize the manager and the optimizer it manages.
This function does not take any parameter and is used to initialize everything that should be initialized. In a few words, it parses the options, then creates and initializes the optimizer based on the provided options.
Definition at line 105 of file oOptimizerManager.cc.
|
private |
Definition at line 126 of file oOptimizerManager.cc.
int oOptimizerManager::PostDataUpdateStep | ( | int | a_iteration, |
int | a_nbIterations, | ||
int | a_subset, | ||
int | a_nbSubsets | ||
) |
A function that simply calls the eponym function from the vOptimizer.
int | a_iteration |
int | a_nbIterations |
int | a_subset |
int | a_nbSubsets |
Definition at line 369 of file oOptimizerManager.cc.
int oOptimizerManager::PreDataUpdateStep | ( | int | a_iteration, |
int | a_nbIterations, | ||
int | a_subset, | ||
int | a_nbSubsets | ||
) |
A function that simply calls the eponym function from the vOptimizer.
int | a_iteration |
int | a_nbIterations |
int | a_subset |
int | a_nbSubsets |
Definition at line 352 of file oOptimizerManager.cc.
|
inline |
Set the mode of the data (histogram, list-mode)
int | a_dataMode |
Definition at line 186 of file oOptimizerManager.hh.
|
inline |
Set the type of the data (pet, spect, etc)
int | a_dataType |
Definition at line 193 of file oOptimizerManager.hh.
|
inline |
Set the image dimensions in use.
oImageDimensionsAndQuantification* | ap_ImageDimensionsAndQuantification |
Definition at line 172 of file oOptimizerManager.hh.
|
inline |
Set the number of TOF bins in use.
int | a_nbTOFBins |
Definition at line 179 of file oOptimizerManager.hh.
|
inline |
Set the optimizer FOM flag that specifies if some figures-of-merit (FOM) will be computed in the data space.
bool | a_optimizerFOMFlag |
Definition at line 200 of file oOptimizerManager.hh.
|
inline |
Set the optimizer image stat flag that specifies if some basic statistics about image update is computed.
bool | a_optimizerImageStatFlag |
Definition at line 207 of file oOptimizerManager.hh.
|
inline |
Set the optimizer projection options contained in the provided string.
const | string& a_optionsOptimizer |
Definition at line 158 of file oOptimizerManager.hh.
|
inline |
Set the penalty projection options contained in the provided string.
const | string& a_optionsPenalty |
Definition at line 165 of file oOptimizerManager.hh.
|
inline |
Set the verbose level.
int | a_verboseLevel |
Definition at line 151 of file oOptimizerManager.hh.
|
private |
Flag indicating if the data is List (=0) or Histogram (=1) mode
Definition at line 228 of file oOptimizerManager.hh.
|
private |
Flag indicating if the data is PET (=0),SPECT (=1) or TRANSMISSION type (=2)
Definition at line 229 of file oOptimizerManager.hh.
|
private |
The number of TOF bins in use
Definition at line 230 of file oOptimizerManager.hh.
|
private |
Flag that says if some figures-of-merit will be computed in the data space
Definition at line 233 of file oOptimizerManager.hh.
|
private |
Flag that says if some basic statistics about the image update will be computed
Definition at line 234 of file oOptimizerManager.hh.
|
private |
The string containing options for the optimizer projections
Definition at line 231 of file oOptimizerManager.hh.
|
private |
The string containing options for the penalty projections
Definition at line 232 of file oOptimizerManager.hh.
|
private |
The verbose level
Definition at line 237 of file oOptimizerManager.hh.
|
private |
Pointer to the oImageDimensionsAndQuantification object in use
Definition at line 227 of file oOptimizerManager.hh.
|
private |
The actual optimizer in use
Definition at line 235 of file oOptimizerManager.hh.
|
private |
The actual penalty in use (optional)
Definition at line 236 of file oOptimizerManager.hh.