RTK  2.6.0
Reconstruction Toolkit
rtkSplatWithKnownWeightsImageFilter.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 #ifndef rtkSplatWithKnownWeightsImageFilter_h
19 #define rtkSplatWithKnownWeightsImageFilter_h
20 
21 #include <itkInPlaceImageFilter.h>
22 #include <itkArray2D.h>
23 
25 
26 #include "rtkMacro.h"
27 
28 namespace rtk
29 {
66 template <typename VolumeSeriesType, typename VolumeType>
67 class ITK_TEMPLATE_EXPORT SplatWithKnownWeightsImageFilter
68  : public itk::InPlaceImageFilter<VolumeSeriesType, VolumeSeriesType>
69 {
70 public:
71  ITK_DISALLOW_COPY_AND_MOVE(SplatWithKnownWeightsImageFilter);
72 
77  using OutputImageRegionType = typename VolumeSeriesType::RegionType;
78 
80  itkNewMacro(Self);
81 
83  itkOverrideGetNameOfClassMacro(SplatWithKnownWeightsImageFilter);
84 
86  void
87  SetInputVolumeSeries(const VolumeSeriesType * VolumeSeries);
88 
90  void
91  SetInputVolume(const VolumeType * Volume);
92 
94  itkGetMacro(Weights, itk::Array2D<float>);
97 
98  itkGetMacro(ProjectionNumber, int);
99  void
100  SetProjectionNumber(int n);
101 
102 protected:
104  ~SplatWithKnownWeightsImageFilter() override = default;
105 
106  typename VolumeSeriesType::ConstPointer
107  GetInputVolumeSeries();
108  typename VolumeType::Pointer
109  GetInputVolume();
110 
112  void
113  ThreadedGenerateData(const typename VolumeSeriesType::RegionType & outputRegionForThread,
114  itk::ThreadIdType itkNotUsed(threadId)) override;
115 
118  GetImageRegionSplitter() const override;
120 
123 };
124 } // namespace rtk
125 
126 
127 #ifndef ITK_MANUAL_INSTANTIATION
128 # include "rtkSplatWithKnownWeightsImageFilter.hxx"
129 #endif
130 
131 #endif
Splats (linearly) a 3D volume into a 3D+t sequence of volumes.
#define itkSetMacro(name, type)
typename OutputImageType::RegionType OutputImageRegionType
unsigned int ThreadIdType
itk::ImageRegionSplitterDirection::Pointer m_Splitter