RTK  2.5.0
Reconstruction Toolkit
rtkCudaIterativeFDKConeBeamReconstructionFilter.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 rtkCudaIterativeFDKConeBeamReconstructionFilter_h
20 #define rtkCudaIterativeFDKConeBeamReconstructionFilter_h
21 
22 #include "rtkConfiguration.h"
23 // Conditional definition of the class to pass ITKHeaderTest
24 #ifdef RTK_USE_CUDA
25 
31 # include "RTKExport.h"
32 
33 namespace rtk
34 {
35 
51 class RTK_EXPORT CudaIterativeFDKConeBeamReconstructionFilter
52  : public itk::CudaImageToImageFilter<
53  itk::CudaImage<float, 3>,
54  itk::CudaImage<float, 3>,
55  IterativeFDKConeBeamReconstructionFilter<itk::CudaImage<float, 3>, itk::CudaImage<float, 3>, float>>
56 {
57 public:
58  ITK_DISALLOW_COPY_AND_MOVE(CudaIterativeFDKConeBeamReconstructionFilter);
59 
61  using Self = CudaIterativeFDKConeBeamReconstructionFilter;
62  using Superclass =
63  IterativeFDKConeBeamReconstructionFilter<itk::CudaImage<float, 3>, itk::CudaImage<float, 3>, float>;
66 
68  using DisplacedDetectorFilterType = rtk::CudaDisplacedDetectorImageFilter;
69  using ParkerFilterType = rtk::CudaParkerShortScanImageFilter;
70  using FDKFilterType = rtk::CudaFDKConeBeamReconstructionFilter;
71  using ConstantImageSourceType = rtk::CudaConstantVolumeSource;
72 
74  itkNewMacro(Self);
75 
77 # ifdef itkOverrideGetNameOfClassMacro
78  itkOverrideGetNameOfClassMacro(CudaIterativeFDKConeBeamReconstructionFilter);
79 # else
80  itkTypeMacro(CudaIterativeFDKConeBeamReconstructionFilter, IterativeFDKConeBeamReconstructionFilter);
81 # endif
82 
83 
84 protected:
85  CudaIterativeFDKConeBeamReconstructionFilter();
86  ~CudaIterativeFDKConeBeamReconstructionFilter() {}
87 
88  virtual void
89  GPUGenerateData();
90 
91 }; // end of class
92 
93 } // end namespace rtk
94 
95 #endif // end conditional definition of the class
96 
97 #endif
BinaryGeneratorImageFilter< TInputImage1, TInputImage2, TOutputImage > Superclass