RTK  2.5.0
Reconstruction Toolkit
rtkCudaConstantVolumeSource.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 rtkCudaConstantVolumeSource_h
20 #define rtkCudaConstantVolumeSource_h
21 
22 #include "rtkConfiguration.h"
23 // Conditional definition of the class to pass ITKHeaderTest
24 #ifdef RTK_USE_CUDA
25 
26 # include "rtkConstantImageSource.h"
27 # include <itkCudaImageToImageFilter.h>
28 # include "RTKExport.h"
29 
30 namespace rtk
31 {
32 
43 class RTK_EXPORT CudaConstantVolumeSource
44  : public itk::CudaImageToImageFilter<itk::CudaImage<float, 3>,
45  itk::CudaImage<float, 3>,
46  ConstantImageSource<itk::CudaImage<float, 3>>>
47 {
48 public:
49  ITK_DISALLOW_COPY_AND_MOVE(CudaConstantVolumeSource);
50 
52  using Self = rtk::CudaConstantVolumeSource;
53  using OutputImageType = itk::CudaImage<float, 3>;
57 
59  itkNewMacro(Self);
60 
62 # ifdef itkOverrideGetNameOfClassMacro
63  itkOverrideGetNameOfClassMacro(CudaConstantVolumeSource);
64 # else
65  itkTypeMacro(CudaConstantVolumeSource, ImageToImageFilter);
66 # endif
67 
68 
69 protected:
70  CudaConstantVolumeSource();
71  ~CudaConstantVolumeSource() {}
72 
73  virtual void
74  GPUGenerateData();
75 
76 }; // end of class
77 
78 } // end namespace rtk
79 
80 #endif // end conditional definition of the class
81 
82 #endif
BinaryGeneratorImageFilter< TInputImage1, TInputImage2, TOutputImage > Superclass
Generate an n-dimensional image with constant pixel values.