ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkGPUPDEDeformableRegistrationFilter.h
Go to the documentation of this file.
1/*=========================================================================
2 *
3 * Copyright NumFOCUS
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 itkGPUPDEDeformableRegistrationFilter_h
19#define itkGPUPDEDeformableRegistrationFilter_h
20
24
25namespace itk
26{
74
76itkGPUKernelClassMacro(GPUPDEDeformableRegistrationFilterKernel);
77
78template <typename TFixedImage,
79 typename TMovingImage,
80 typename TDisplacementField,
82class ITK_TEMPLATE_EXPORT GPUPDEDeformableRegistrationFilter
83 : public GPUDenseFiniteDifferenceImageFilter<TDisplacementField, TDisplacementField, TParentImageFilter>
84{
85public:
86 ITK_DISALLOW_COPY_AND_MOVE(GPUPDEDeformableRegistrationFilter);
87
91 using CPUSuperclass = TParentImageFilter;
94
96 itkNewMacro(Self);
97
99 itkOverrideGetNameOfClassMacro(GPUPDEDeformableRegistrationFilter);
100
102 using FixedImageType = TFixedImage;
103 using FixedImagePointer = typename FixedImageType::Pointer;
104 using FixedImageConstPointer = typename FixedImageType::ConstPointer;
105
107 using MovingImageType = TMovingImage;
108 using MovingImagePointer = typename MovingImageType::Pointer;
109 using MovingImageConstPointer = typename MovingImageType::ConstPointer;
110
112 using DisplacementFieldType = TDisplacementField;
113 using DisplacementFieldPointer = typename DisplacementFieldType::Pointer;
114 using DeformationVectorType = typename TDisplacementField::PixelType;
115 using DeformationScalarType = typename TDisplacementField::PixelType::ValueType;
116
119
122
127
129 static constexpr unsigned int ImageDimension = GPUSuperclass::ImageDimension;
130
132 itkGetOpenCLSourceFromKernelMacro(GPUPDEDeformableRegistrationFilterKernel);
133
137 {
138 return this->GetOutput();
139 }
140
142
143protected:
146
147 void
148 PrintSelf(std::ostream & os, Indent indent) const override;
149
153 void
155
158 void
160
164 void
166
171 virtual void
173 typename GPUDataManager::Pointer GPUSmoothingKernels[],
174 int GPUSmoothingKernelSizes[]);
175
176 virtual void
178
182 void
184
189 void
191
196 void
197 Initialize() override;
198
203 void
205
212 void
214
215private:
219
220private:
225
230
233
234 /* GPU kernel handle for GPUSmoothDisplacementField */
236};
237} // end namespace itk
238
239#ifndef ITK_MANUAL_INSTANTIATION
240# include "itkGPUPDEDeformableRegistrationFilter.hxx"
241#endif
242
243#endif
Simulate a standard C array with copy semantics.
SmartPointer< Self > Pointer
GPUDenseFiniteDifferenceImageFilter< TDisplacementField, TDisplacementField, TParentImageFilter > GPUSuperclass
GPUPDEDeformableRegistrationFunction< FixedImageType, MovingImageType, DisplacementFieldType > GPUPDEDeformableRegistrationFunctionType
void PrintSelf(std::ostream &os, Indent indent) const override
virtual void GPUSmoothVectorField(DisplacementFieldPointer field, typename GPUDataManager::Pointer GPUSmoothingKernels[], int GPUSmoothingKernelSizes[])
itkGetOpenCLSourceFromKernelMacro(GPUPDEDeformableRegistrationFilterKernel)
~GPUPDEDeformableRegistrationFilter() override=default
OutputImageType * GetOutput()
Control indentation during Print() invocation.
Definition itkIndent.h:50
Deformably register two images using a PDE algorithm.
Implements transparent reference counting.
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....
itkGPUKernelClassMacro(GPUImageOpsKernel)