CASToR  3.2
Tomographic Reconstruction (PET/SPECT/CT)
include/image/iImageConvolverTemplate.hh
Go to the documentation of this file.
1 
8 #ifndef IIMAGECONVOLVERTEMPLATE_HH
9 #define IIMAGECONVOLVERTEMPLATE_HH 1
10 
11 #include "gVariables.hh"
12 #include "gOptions.hh"
13 #include "oImageSpace.hh"
14 #include "vImageConvolver.hh"
15 #include "sAddonManager.hh"
16 
29 {
30  // -----------------------------------------------------------------------------------------
31  // Constructor & Destructor
32  public:
48 
49 
50  // -----------------------------------------------------------------------------------------
51  // Public member functions
52  public:
53  // Function for automatic insertion (put the class name as the parameter and do NOT add semi-colon at the end of the line)
65  int ReadConfigurationFile(const string& a_fileOptions);
76  int ReadOptionsList(const string& a_listOptions);
85  void ShowHelp();
86 
87 
88  // -----------------------------------------------------------------------------------------
89  // Private member functions
90  private:
114 
115 
116  // -----------------------------------------------------------------------------------------
117  // Data members
118  protected:
119  // Declare here any members useful for this specific module
120 };
121 
122 
123 // Class for automatic insertion (set here the visible image convolver's name as the first parameter,
124 // put the class name as the second parameter and do NOT add semi-colon at the end of the line)
126 
127 #endif
Declaration of class oImageSpace.
int BuildConvolutionKernel()
A private function used to build the convolution kernel specific to the child convolver.
~iImageConvolverTemplate()
The destructor of iImageConvolverTemplate.
Declaration of class vImageConvolver.
int ReadOptionsList(const string &a_listOptions)
#define CLASS_IMAGE_CONVOLVER(NAME, CLASS)
int ReadConfigurationFile(const string &a_fileOptions)
int CheckSpecificParameters()
A private function used to check the parameters settings specific to the child module.
#define FUNCTION_IMAGE_CONVOLVER(CLASS)
This class is a template of an image convolver module to serve as an example.
void ShowHelp()
A function used to show help about the child module.
iImageConvolverTemplate()
The constructor of iImageConvolverTemplate.
This abstract class is the generic image convolver class used by the oImageConvolverManager.