RTK  2.6.0
Reconstruction Toolkit
rtkCudaWarpForwardProjectionImageFilter.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 rtkCudaWarpForwardProjectionImageFilter_h
20 #define rtkCudaWarpForwardProjectionImageFilter_h
21 
22 #include "rtkConfiguration.h"
23 // Conditional definition of the class to pass ITKHeaderTest
24 #ifdef RTK_USE_CUDA
25 
27 # include "itkCudaInPlaceImageFilter.h"
28 # include "itkCudaUtil.h"
29 # include "RTKExport.h"
30 
44 namespace rtk
45 {
46 
47 class RTK_EXPORT CudaWarpForwardProjectionImageFilter
48  : public itk::CudaInPlaceImageFilter<itk::CudaImage<float, 3>,
49  itk::CudaImage<float, 3>,
50  ForwardProjectionImageFilter<itk::CudaImage<float, 3>, itk::CudaImage<float, 3>>>
51 {
52 public:
53  ITK_DISALLOW_COPY_AND_MOVE(CudaWarpForwardProjectionImageFilter);
54 
56  using InputImageType = itk::CudaImage<float, 3>;
57  using DisplacementVectorType = itk::CovariantVector<float, 3>;
58  using Self = CudaWarpForwardProjectionImageFilter;
59  using Superclass = ForwardProjectionImageFilter<InputImageType, InputImageType>;
60  using GPUSuperclass = itk::CudaInPlaceImageFilter<InputImageType, InputImageType, Superclass>;
63  using DVFType = itk::CudaImage<DisplacementVectorType, 3>;
64 
66  itkNewMacro(Self);
67 
69  itkOverrideGetNameOfClassMacro(CudaWarpForwardProjectionImageFilter);
70 
72  void
73  SetInputProjectionStack(const InputImageType * ProjectionStack);
74  InputImageType::Pointer
75  GetInputProjectionStack();
77 
79  void
80  SetInputVolume(const InputImageType * Volume);
81  InputImageType::Pointer
82  GetInputVolume();
84 
86  void
87  SetDisplacementField(const DVFType * DVF);
88  DVFType::Pointer
89  GetDisplacementField();
91 
93  itkGetConstMacro(StepSize, double);
94  itkSetMacro(StepSize, double);
96 
97 protected:
98  CudaWarpForwardProjectionImageFilter();
99  ~CudaWarpForwardProjectionImageFilter() {};
100 
101  virtual void
102  GenerateInputRequestedRegion();
103 
104  virtual void
105  GPUGenerateData();
106 
107 private:
108  double m_StepSize;
109 }; // end of class
110 
111 } // end namespace rtk
112 
113 #endif // end conditional definition of the class
114 
115 #endif
BinaryGeneratorImageFilter< TInputImage1, TInputImage2, TOutputImage > Superclass
SmartPointer< const Self > ConstPointer
SmartPointer< Self > Pointer
#define itkSetMacro(name, type)