RTK  2.5.0
Reconstruction Toolkit
rtkCudaSplatImageFilter.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 rtkCudaSplatImageFilter_h
20 #define rtkCudaSplatImageFilter_h
21 
22 #include "rtkConfiguration.h"
23 // Conditional definition of the class to pass ITKHeaderTest
24 #ifdef RTK_USE_CUDA
25 
27 # include "itkCudaImage.h"
28 # include "itkCudaInPlaceImageFilter.h"
29 # include "RTKExport.h"
30 
31 namespace rtk
32 {
33 
43 class RTK_EXPORT CudaSplatImageFilter
44  : public itk::CudaInPlaceImageFilter<
45  itk::CudaImage<float, 4>,
46  itk::CudaImage<float, 4>,
47  SplatWithKnownWeightsImageFilter<itk::CudaImage<float, 4>, itk::CudaImage<float, 3>>>
48 
49 {
50 public:
51  ITK_DISALLOW_COPY_AND_MOVE(CudaSplatImageFilter);
52 
54  using Self = rtk::CudaSplatImageFilter;
58 
60  itkNewMacro(Self);
61 
63 # ifdef itkOverrideGetNameOfClassMacro
64  itkOverrideGetNameOfClassMacro(CudaSplatImageFilter);
65 # else
66  itkTypeMacro(CudaSplatImageFilter, SplatWithKnownWeightsImageFilter);
67 # endif
68 
69 
70 protected:
71  CudaSplatImageFilter();
72  ~CudaSplatImageFilter() {}
73 
74  virtual void
75  GPUGenerateData();
76 
77 }; // end of class
78 
79 } // end namespace rtk
80 
81 #endif // end conditional definition of the class
82 
83 #endif
BinaryGeneratorImageFilter< TInputImage1, TInputImage2, TOutputImage > Superclass
Splats (linearly) a 3D volume into a 3D+t sequence of volumes.