RTK  2.5.0
Reconstruction Toolkit
rtkCudaWeidingerForwardModelImageFilter.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 rtkCudaWeidingerForwardModelImageFilter_h
20 #define rtkCudaWeidingerForwardModelImageFilter_h
21 
22 #include "rtkConfiguration.h"
23 // Conditional definition of the class to pass ITKHeaderTest
24 #ifdef RTK_USE_CUDA
25 
27 # include "itkCudaImageToImageFilter.h"
28 # include "itkCudaUtil.h"
29 # include "RTKExport.h"
30 
39 namespace rtk
40 {
41 template <class TMaterialProjections,
42  class TPhotonCounts,
43  class TSpectrum,
44  class TProjections =
45  itk::CudaImage<typename TMaterialProjections::PixelType::ValueType, TMaterialProjections::ImageDimension>>
46 class ITK_TEMPLATE_EXPORT CudaWeidingerForwardModelImageFilter
47  : public itk::CudaImageToImageFilter<
48  TMaterialProjections,
49  TMaterialProjections,
50  WeidingerForwardModelImageFilter<TMaterialProjections, TPhotonCounts, TSpectrum, TProjections>>
51 {
52 public:
53  ITK_DISALLOW_COPY_AND_MOVE(CudaWeidingerForwardModelImageFilter);
54 
56  using Self = CudaWeidingerForwardModelImageFilter;
57  using Superclass = WeidingerForwardModelImageFilter<TMaterialProjections, TPhotonCounts, TSpectrum, TProjections>;
58  using GPUSuperclass = itk::CudaImageToImageFilter<TMaterialProjections, TMaterialProjections, Superclass>;
61 
63  itkNewMacro(Self);
64 
66 # ifdef itkOverrideGetNameOfClassMacro
67  itkOverrideGetNameOfClassMacro(CudaWeidingerForwardModelImageFilter);
68 # else
69  itkTypeMacro(CudaWeidingerForwardModelImageFilter, ImageToImageFilter);
70 # endif
71 
72 
73 protected:
74  CudaWeidingerForwardModelImageFilter();
75  ~CudaWeidingerForwardModelImageFilter(){};
76 
77  virtual void
78  GPUGenerateData();
79 
80 }; // end of class
81 
82 } // end namespace rtk
83 
84 # ifndef ITK_MANUAL_INSTANTIATION
85 # include "rtkCudaWeidingerForwardModelImageFilter.hxx"
86 # endif
87 
88 #endif // end conditional definition of the class
89 
90 #endif
BinaryGeneratorImageFilter< TInputImage1, TInputImage2, TOutputImage > Superclass