ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkWarpImageFilter.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 itkWarpImageFilter_h
19#define itkWarpImageFilter_h
20#include "itkImageBase.h"
23
24namespace itk
25{
84template <typename TInputImage, typename TOutputImage, typename TDisplacementField>
85class ITK_TEMPLATE_EXPORT WarpImageFilter : public ImageToImageFilter<TInputImage, TOutputImage>
86{
87public:
88 ITK_DISALLOW_COPY_AND_MOVE(WarpImageFilter);
89
95
97 itkNewMacro(Self);
98
100 itkOverrideGetNameOfClassMacro(WarpImageFilter);
101
103 using OutputImageRegionType = typename TOutputImage::RegionType;
104
106 using typename Superclass::InputImageType;
107 using typename Superclass::InputImagePointer;
108 using typename Superclass::OutputImageType;
109 using typename Superclass::OutputImagePointer;
111 using IndexType = typename OutputImageType::IndexType;
112 using IndexValueType = typename OutputImageType::IndexValueType;
113 using SizeType = typename OutputImageType::SizeType;
114 using PixelType = typename OutputImageType::PixelType;
115 using PixelComponentType = typename OutputImageType::InternalPixelType;
116 using SpacingType = typename OutputImageType::SpacingType;
117
119 static constexpr unsigned int ImageDimension = TOutputImage::ImageDimension;
120 static constexpr unsigned int InputImageDimension = TInputImage::ImageDimension;
121 static constexpr unsigned int DisplacementFieldDimension = TDisplacementField::ImageDimension;
122
125
127 using DisplacementFieldType = TDisplacementField;
128 using DisplacementFieldPointer = typename DisplacementFieldType::Pointer;
129 using DisplacementType = typename DisplacementFieldType::PixelType;
130
132 using CoordinateType = double;
133#ifndef ITK_FUTURE_LEGACY_REMOVE
134 using CoordRepType ITK_FUTURE_DEPRECATED(
135 "ITK 6 discourages using `CoordRepType`. Please use `CoordinateType` instead!") = CoordinateType;
136#endif
140
143
145 using DirectionType = typename TOutputImage::DirectionType;
146
147
150
153
156 itkSetObjectMacro(Interpolator, InterpolatorType);
157 itkGetModifiableObjectMacro(Interpolator, InterpolatorType);
161 itkSetMacro(OutputSpacing, SpacingType);
162 virtual void
163 SetOutputSpacing(const double * spacing);
166 itkGetConstReferenceMacro(OutputSpacing, SpacingType);
167
170 itkSetMacro(OutputOrigin, PointType);
171 virtual void
172 SetOutputOrigin(const double * origin);
175 itkGetConstReferenceMacro(OutputOrigin, PointType);
176
179 itkSetMacro(OutputDirection, DirectionType);
180 itkGetConstReferenceMacro(OutputDirection, DirectionType);
183 void
185
188 itkSetMacro(OutputStartIndex, IndexType);
189
191 itkGetConstReferenceMacro(OutputStartIndex, IndexType);
192
194 itkSetMacro(OutputSize, SizeType);
195
197 itkGetConstReferenceMacro(OutputSize, SizeType);
198
200 itkSetMacro(EdgePaddingValue, PixelType);
201
203 itkGetConstMacro(EdgePaddingValue, PixelType);
204
210 void
212
219 void
221
224 void
226
229 void
231
235 itkConceptMacro(DisplacementFieldHasNumericTraitsCheck,
237
238protected:
240 // ~WarpImageFilter() {} default implementation is ok
241
242 void
243 PrintSelf(std::ostream & os, Indent indent) const override;
244
248 void
249 DynamicThreadedGenerateData(const OutputImageRegionType & outputRegionForThread) override;
250
251
258 void
259 VerifyInputInformation() const override;
260
269 void
271
275 void
277 const DisplacementFieldType * fieldPtr,
278 DisplacementType & output);
279
281 // variables for deffield interpolator
283
284private:
289
291 SizeType m_OutputSize{}; // Size of the output image
292 IndexType m_OutputStartIndex{}; // output image start index
293};
294} // end namespace itk
295
296#ifndef ITK_MANUAL_INSTANTIATION
297# include "itkWarpImageFilter.hxx"
298#endif
299
300#endif
Base class for templated image classes.
TOutputImage OutputImageType
typename OutputImageType::Pointer OutputImagePointer
typename InputImageType::ConstPointer InputImageConstPointer
typename InputImageType::Pointer InputImagePointer
Control indentation during Print() invocation.
Definition itkIndent.h:50
Base class for all image interpolators.
Linearly interpolate an image at specified positions.
A templated class holding a geometric point in n-Dimensional space.
Definition itkPoint.h:54
Implements transparent reference counting.
void GenerateInputRequestedRegion() override
typename OutputImageType::SizeType SizeType
void DynamicThreadedGenerateData(const OutputImageRegionType &outputRegionForThread) override
SmartPointer< Self > Pointer
ImageToImageFilter< TInputImage, TOutputImage > Superclass
void GenerateOutputInformation() override
void BeforeThreadedGenerateData() override
TDisplacementField DisplacementFieldType
typename InterpolatorType::Pointer InterpolatorPointer
itkGetInputMacro(DisplacementField, DisplacementFieldType)
typename OutputImageType::SpacingType SpacingType
ImageBase< Self::ImageDimension > ImageBaseType
void EvaluateDisplacementAtPhysicalPoint(const PointType &point, DisplacementType &output)
void VerifyInputInformation() const override
typename OutputImageType::IndexType IndexType
virtual void SetOutputSpacing(const double *spacing)
typename TOutputImage::DirectionType DirectionType
Point< CoordinateType, Self::ImageDimension > PointType
typename DisplacementFieldType::PixelType DisplacementType
virtual void SetOutputOrigin(const double *origin)
InterpolateImageFunction< InputImageType, CoordinateType > InterpolatorType
void EvaluateDisplacementAtPhysicalPoint(const PointType &point, const DisplacementFieldType *fieldPtr, DisplacementType &output)
itkSetInputMacro(DisplacementField, DisplacementFieldType)
typename OutputImageType::InternalPixelType PixelComponentType
LinearInterpolateImageFunction< InputImageType, CoordinateType > DefaultInterpolatorType
typename OutputImageType::IndexValueType IndexValueType
typename OutputImageType::PixelType PixelType
void SetOutputParametersFromImage(const ImageBaseType *image)
SmartPointer< const Self > ConstPointer
void PrintSelf(std::ostream &os, Indent indent) const override
typename DisplacementFieldType::Pointer DisplacementFieldPointer
typename TOutputImage::RegionType OutputImageRegionType
void AfterThreadedGenerateData() override
#define itkConceptMacro(name, concept)
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....