RTK  2.6.0
Reconstruction Toolkit
rtkCudaWarpImageFilter.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 rtkCudaWarpImageFilter_h
20 #define rtkCudaWarpImageFilter_h
21 
22 #include "rtkConfiguration.h"
23 // Conditional definition of the class to pass ITKHeaderTest
24 #ifdef RTK_USE_CUDA
25 
26 # include "RTKExport.h"
27 
28 # include <itkCudaImage.h>
29 # include <itkWarpImageFilter.h>
30 # include <itkCudaImageToImageFilter.h>
31 
32 namespace rtk
33 {
34 
46 class RTK_EXPORT CudaWarpImageFilter
47  : public itk::CudaImageToImageFilter<itk::CudaImage<float, 3>,
48  itk::CudaImage<float, 3>,
49  itk::WarpImageFilter<itk::CudaImage<float, 3>,
50  itk::CudaImage<float, 3>,
51  itk::CudaImage<itk::CovariantVector<float, 3>, 3>>>
52 {
53 public:
54  ITK_DISALLOW_COPY_AND_MOVE(CudaWarpImageFilter);
55 
57  using ImageType = itk::CudaImage<float, 3>;
58  using DisplacementVectorType = itk::CovariantVector<float, 3>;
59  using DVFType = itk::CudaImage<DisplacementVectorType, 3>;
60  using WarpImageFilterType = itk::WarpImageFilter<ImageType, ImageType, DVFType>;
61  using Self = CudaWarpImageFilter;
62  using Superclass = itk::CudaImageToImageFilter<ImageType, ImageType, WarpImageFilterType>;
65 
66  using OutputImageRegionType = ImageType::RegionType;
67 
69  itkNewMacro(Self);
70 
72 # ifdef itkOverrideGetNameOfClassMacro
73  itkOverrideGetNameOfClassMacro(CudaWarpImageFilter);
74 # else
75  itkTypeMacro(CudaWarpImageFilter, Superclass);
76 # endif
77 
78 
79 protected:
80  CudaWarpImageFilter();
81  virtual ~CudaWarpImageFilter(){};
82 
83  virtual void
84  GPUGenerateData();
85 };
86 
87 } // end namespace rtk
88 
89 #endif // end conditional definition of the class
90 
91 #endif
BinaryGeneratorImageFilter< TInputImage1, TInputImage2, TOutputImage > Superclass