Tomato
OxTestImage.h
Go to the documentation of this file.
1 
7 #ifndef Tomato_OXTESTImage_H
8 #define Tomato_OXTESTImage_H
9 
10 #include "CmakeConfigForTomato.h"
11 
12 #ifdef USE_YAML
13 
14 #include "OxTestData.h"
15 
16 
17 namespace Ox {
18 
19  template< typename MeasureType >
20  class TestImage {
21 
22  public:
23 
24  TestImage(int nCols, int nRows, std::vector <std::string> filesPaths, std::vector<int> invTimesOrder);
25  TestImage(int nCols, int nRows, std::vector <std::string> filesPaths);
26  virtual ~TestImage();
27 
28  int init(int nCols, int nRows, std::vector <std::string> filesPaths, std::vector<int> invTimesOrder);
29 
30  virtual MeasureType *getInvTimesPtr() ;
31  virtual std::vector<MeasureType> getInvTimes() const;
32 
33  virtual MeasureType *getImageMagPtr() const;
34  virtual MeasureType *getImagePhaPtr() const;
35  virtual MeasureType *getImageResultsMolliPtr() const;
36  virtual MeasureType *getImageResultsShmolliPtr() const;
37 
38  virtual int getNCols() const { return _nCols; }
39  virtual int getNRows() const { return _nRows; }
40  virtual int getNSamples() const { return _nSamples; }
41 
42  protected:
43 
44  int _nCols;
45  int _nRows;
46  int _nSamples;
47 
48  std::vector<MeasureType> _invTimes;
49  std::vector<int> _invTimesOrder;
50 
51  MeasureType *_imageMag; // nRows * nCols * nSamples, address [iRow][iCol][iSam] iSample * (nRows*nCols) + iCol * nRows + iRow
52  MeasureType *_imagePha; // nRows * nCols * nSamples, address [iRow][iCol][iSam] iSample * (nRows*nCols) + iCol * nRows + iRow
53 
54  MeasureType *_imageResultsMolli; // nCols * nRows * 3
55  MeasureType *_imageResultsShmolli; // nCols * nRows * 3
56 
57  };
58 } // namespace Ox
59 
60 #include "OxTestImage.hxx"
61 
62 #endif // USE_YAML
63 
64 #endif //Tomato_OXTESTImage_H
Definition: OxCalculator.h:19