RTK  2.6.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  itkOverrideGetNameOfClassMacro(SignalToInterpolationWeights);
56 
59 
61  using ValueType = float;
62 
64  void
65  Parse() override
66  {}
67 
69  virtual void
70  Update();
71 
74  virtual Array2DType
75  GetOutput();
76 
78  itkSetMacro(NumberOfReconstructedFrames, int);
79  itkGetMacro(NumberOfReconstructedFrames, int);
81 
83  void
84  SetSignal(const std::vector<double> signal);
85 
86 protected:
88  ~SignalToInterpolationWeights() override = default;
89 
91  void
92  PrintSelf(std::ostream & os, itk::Indent indent) const override;
93 
94 private:
97  std::vector<double> m_Signal;
98 };
99 
100 } // end namespace rtk
101 
102 #endif
#define itkSetMacro(name, type)
Computes interpolation weights for 4D reconstruction.