RTK  2.5.0
Reconstruction Toolkit
rtkCudaCropImageFilter.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 #ifndef rtkCudaCropImageFilter_h
19 #define rtkCudaCropImageFilter_h
20 
21 #include "rtkConfiguration.h"
22 // Conditional definition of the class to pass ITKHeaderTest
23 #ifdef RTK_USE_CUDA
24 
25 # include <itkCropImageFilter.h>
26 # include "RTKExport.h"
27 
28 # include <itkCudaImage.h>
29 # include <itkCudaImageToImageFilter.h>
30 
31 namespace rtk
32 {
48 class RTK_EXPORT CudaCropImageFilter
49  : public itk::CudaImageToImageFilter<itk::CudaImage<float, 3>,
50  itk::CudaImage<float, 3>,
51  itk::CropImageFilter<itk::CudaImage<float, 3>, itk::CudaImage<float, 3>>>
52 {
53 public:
54  ITK_DISALLOW_COPY_AND_MOVE(CudaCropImageFilter);
55 
57  using ImageType = itk::CudaImage<float, 3>;
58  using Self = CudaCropImageFilter;
59  using Superclass = itk::CropImageFilter<itk::CudaImage<float, 3>, itk::CudaImage<float, 3>>;
60  using GPUSuperclass = itk::CudaImageToImageFilter<itk::CudaImage<float, 3>, itk::CudaImage<float, 3>, Superclass>;
63 
65  itkNewMacro(Self);
66 
68 # ifdef itkOverrideGetNameOfClassMacro
69  itkOverrideGetNameOfClassMacro(CudaCropImageFilter);
70 # else
71  itkTypeMacro(CudaCropImageFilter, ImageToImageFilter);
72 # endif
73 
74 
75 protected:
76  CudaCropImageFilter();
77  virtual ~CudaCropImageFilter(){};
78 
79  virtual void
80  GPUGenerateData();
81 
82 }; // end of class
83 } // end namespace rtk
84 
85 #endif // end conditional definition of the class
86 
87 #endif
BinaryGeneratorImageFilter< TInputImage1, TInputImage2, TOutputImage > Superclass