RTK  2.7.0
Reconstruction Toolkit
rtkCudaFDKConeBeamReconstructionFilter.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 rtkCudaFDKConeBeamReconstructionFilter_h
20 #define rtkCudaFDKConeBeamReconstructionFilter_h
21 
22 #include "rtkConfiguration.h"
23 // Conditional definition of the class to pass ITKHeaderTest
24 #ifdef RTK_USE_CUDA
25 
30 # include "RTKExport.h"
31 
32 namespace rtk
33 {
34 
50  : public itk::CudaInPlaceImageFilter<
51  itk::CudaImage<float, 3>,
52  itk::CudaImage<float, 3>,
53  FDKConeBeamReconstructionFilter<itk::CudaImage<float, 3>, itk::CudaImage<float, 3>, float>>
54 {
55 public:
56  ITK_DISALLOW_COPY_AND_MOVE(CudaFDKConeBeamReconstructionFilter);
57 
60  using Superclass = FDKConeBeamReconstructionFilter<itk::CudaImage<float, 3>, itk::CudaImage<float, 3>, float>;
63 
68 
70  itkNewMacro(Self);
71 
73  itkOverrideGetNameOfClassMacro(CudaFDKConeBeamReconstructionFilter);
74 
75 protected:
78 
79  virtual void
80  GPUGenerateData();
81 
82 }; // end of class
83 
84 } // end namespace rtk
85 
86 #endif // end conditional definition of the class
87 
88 #endif
Cuda version of rtk::FDKWeightProjectionFilter.
Implements [Feldkamp, Davis, Kress, 1984] algorithm using Cuda.
Implements the ramp image filter of the FDK algorithm on GPU.
Implements Feldkamp, David and Kress cone-beam reconstruction.
Cuda version of the FDK backprojection.