RTK  2.5.0
Reconstruction Toolkit
rtkSignalToInterpolationWeights.h
Go to the documentation of this file.
1 /*=========================================================================
2  *
3  * Copyright RTK Consortium
4  *
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  * https://www.apache.org/licenses/LICENSE-2.0.txt
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  *
17  *=========================================================================*/
18 
19 #ifndef rtkSignalToInterpolationWeights_h
20 #define rtkSignalToInterpolationWeights_h
21 
22 #include "RTKExport.h"
23 #include "itkCSVFileReaderBase.h"
24 #include "itkArray2D.h"
25 
26 namespace rtk
27 {
28 
41 {
42 public:
43  ITK_DISALLOW_COPY_AND_MOVE(SignalToInterpolationWeights);
44 
50 
52  itkNewMacro(Self);
53 
55 #ifdef itkOverrideGetNameOfClassMacro
56  itkOverrideGetNameOfClassMacro(SignalToInterpolationWeights);
57 #else
59 #endif
60 
61 
64 
66  using ValueType = float;
67 
69  void
70  Parse() override
71  {}
72 
74  virtual void
75  Update();
76 
79  virtual Array2DType
80  GetOutput();
81 
83  itkSetMacro(NumberOfReconstructedFrames, int);
84  itkGetMacro(NumberOfReconstructedFrames, int);
86 
88  void
89  SetSignal(const std::vector<double> signal);
90 
91 protected:
93  ~SignalToInterpolationWeights() override = default;
94 
96  void
97  PrintSelf(std::ostream & os, itk::Indent indent) const override;
98 
99 private:
102  std::vector<double> m_Signal;
103 };
104 
105 } // end namespace rtk
106 
107 #endif
#define itkSetMacro(name, type)
Computes interpolation weights for 4D reconstruction.