RTK  2.5.0
Reconstruction Toolkit
rtkCudaFDKBackProjectionImageFilter.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 rtkCudaFDKBackProjectionImageFilter_h
20 #define rtkCudaFDKBackProjectionImageFilter_h
21 
22 #include "rtkConfiguration.h"
23 // Conditional definition of the class to pass ITKHeaderTest
24 #ifdef RTK_USE_CUDA
25 
27 # include "RTKExport.h"
28 
29 # include <itkCudaImage.h>
30 # include <itkCudaInPlaceImageFilter.h>
31 
32 namespace rtk
33 {
34 
46 class RTK_EXPORT CudaFDKBackProjectionImageFilter
47  : public itk::CudaInPlaceImageFilter<itk::CudaImage<float, 3>,
48  itk::CudaImage<float, 3>,
49  FDKBackProjectionImageFilter<itk::CudaImage<float, 3>, itk::CudaImage<float, 3>>>
50 {
51 public:
52  ITK_DISALLOW_COPY_AND_MOVE(CudaFDKBackProjectionImageFilter);
53 
55  using ImageType = itk::CudaImage<float, 3>;
56  using FDKBackProjectionImageFilterType = FDKBackProjectionImageFilter<ImageType, ImageType>;
57  using Self = CudaFDKBackProjectionImageFilter;
58  using Superclass = itk::CudaInPlaceImageFilter<ImageType, ImageType, FDKBackProjectionImageFilterType>;
61 
62  using OutputImageRegionType = ImageType::RegionType;
63  using ProjectionImageType = itk::CudaImage<float, 2>;
64  using ProjectionImagePointer = ProjectionImageType::Pointer;
65 
67  itkNewMacro(Self);
68 
70 # ifdef itkOverrideGetNameOfClassMacro
71  itkOverrideGetNameOfClassMacro(CudaFDKBackProjectionImageFilter);
72 # else
73  itkTypeMacro(CudaFDKBackProjectionImageFilter, Superclass);
74 # endif
75 
76 
77 protected:
78  CudaFDKBackProjectionImageFilter();
79  virtual ~CudaFDKBackProjectionImageFilter(){};
80 
81  virtual void
82  GPUGenerateData();
83 };
84 
85 } // end namespace rtk
86 
87 #endif // end conditional definition of the class
88 
89 #endif
BinaryGeneratorImageFilter< TInputImage1, TInputImage2, TOutputImage > Superclass