ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkChangeInformationImageFilter.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 itkChangeInformationImageFilter_h
19#define itkChangeInformationImageFilter_h
20
22#include "itkFixedArray.h"
23
24namespace itk
25{
48template <typename TInputImage>
49class ITK_TEMPLATE_EXPORT ChangeInformationImageFilter : public ImageToImageFilter<TInputImage, TInputImage>
50{
51public:
52 ITK_DISALLOW_COPY_AND_MOVE(ChangeInformationImageFilter);
53
59
61 itkNewMacro(Self);
62
63 using InputImageType = TInputImage;
64 using OutputImageType = TInputImage;
65
67 using OutputImageRegionType = typename OutputImageType::RegionType;
68 using InputImageRegionType = typename InputImageType::RegionType;
69
71 using InputImagePointer = typename InputImageType::Pointer;
72 using InputImageConstPointer = typename InputImageType::ConstPointer;
73
75 using OutputImagePixelType = typename OutputImageType::PixelType;
76 using InputImagePixelType = typename InputImageType::PixelType;
77
79 using OutputImageIndexType = typename OutputImageType::IndexType;
80 using OutputImageSizeType = typename OutputImageType::SizeType;
81 using OutputImageOffsetType = typename OutputImageType::OffsetType;
82 using OutputImageDirectionType = typename OutputImageType::DirectionType;
83 using OutputImageOffsetValueType = typename OutputImageType::OffsetValueType;
84 using InputImageIndexType = typename InputImageType::IndexType;
85 using InputImageSizeType = typename InputImageType::SizeType;
86 using InputImageOffsetType = typename InputImageType::OffsetType;
87 using InputImageDirectionType = typename InputImageType::DirectionType;
88
90 static constexpr unsigned int ImageDimension = InputImageType::ImageDimension;
91
93 using SpacingType = typename InputImageType::SpacingType;
94 using PointType = typename InputImageType::PointType;
95 using DirectionType = typename InputImageType::DirectionType;
96
98 itkOverrideGetNameOfClassMacro(ChangeInformationImageFilter);
99
102 void
104 {
105 if (image != m_ReferenceImage)
106 {
107 m_ReferenceImage = image;
108 this->ProcessObject::SetNthInput(1, const_cast<InputImageType *>(image));
109 this->Modified();
110 }
111 }
112
113 itkGetModifiableObjectMacro(ReferenceImage, TInputImage);
114
115 itkSetMacro(UseReferenceImage, bool);
116 itkBooleanMacro(UseReferenceImage);
117 itkGetConstMacro(UseReferenceImage, bool);
118
123 itkSetMacro(OutputSpacing, SpacingType);
124 itkGetConstReferenceMacro(OutputSpacing, SpacingType);
126
131 itkSetMacro(OutputOrigin, PointType);
132 itkGetConstReferenceMacro(OutputOrigin, PointType);
134
139 itkSetMacro(OutputDirection, DirectionType);
140 itkGetConstReferenceMacro(OutputDirection, DirectionType);
142
152 itkSetMacro(OutputOffset, OutputImageOffsetType);
153 itkGetConstReferenceMacro(OutputOffset, OutputImageOffsetType);
154 itkSetVectorMacro(OutputOffset, OutputImageOffsetValueType, ImageDimension);
156
158 void
160 {
161 this->ChangeSpacingOn();
162 this->ChangeOriginOn();
163 this->ChangeDirectionOn();
164 this->ChangeRegionOn();
165 }
166
169 void
171 {
172 this->ChangeSpacingOff();
173 this->ChangeOriginOff();
174 this->ChangeDirectionOff();
175 this->ChangeRegionOff();
176 }
177
183
184 itkSetMacro(ChangeSpacing, bool);
185 itkBooleanMacro(ChangeSpacing);
186 itkGetConstMacro(ChangeSpacing, bool);
187
193
194 itkSetMacro(ChangeOrigin, bool);
195 itkBooleanMacro(ChangeOrigin);
196 itkGetConstMacro(ChangeOrigin, bool);
197
203
204 itkSetMacro(ChangeDirection, bool);
205 itkBooleanMacro(ChangeDirection);
206 itkGetConstMacro(ChangeDirection, bool);
207
209
210 itkSetMacro(ChangeRegion, bool);
211 itkBooleanMacro(ChangeRegion);
212 itkGetConstMacro(ChangeRegion, bool);
213
218 itkSetMacro(CenterImage, bool);
219 itkBooleanMacro(CenterImage);
220 itkGetConstMacro(CenterImage, bool);
222
224 void
226
228 void
230
232 void
233 GenerateData() override;
234
235protected:
237 ~ChangeInformationImageFilter() override = default;
238
239 void
240 PrintSelf(std::ostream & os, Indent indent) const override;
241
247 void
248 VerifyInputInformation() const override
249 {}
250
251private:
253
254 bool m_CenterImage{ false };
255 bool m_ChangeSpacing{ false };
256 bool m_ChangeOrigin{ false };
257 bool m_ChangeDirection{ false };
258 bool m_ChangeRegion{ false };
259 bool m_UseReferenceImage{ false };
260
263 DirectionType m_OutputDirection{ DirectionType::GetIdentity() };
264
267};
268} // end namespace itk
269
270#ifndef ITK_MANUAL_INSTANTIATION
271# include "itkChangeInformationImageFilter.hxx"
272#endif
273
274#endif
typename InputImageType::DirectionType InputImageDirectionType
typename OutputImageType::OffsetType OutputImageOffsetType
typename InputImageType::PixelType InputImagePixelType
typename OutputImageType::RegionType OutputImageRegionType
typename OutputImageType::OffsetValueType OutputImageOffsetValueType
void PrintSelf(std::ostream &os, Indent indent) const override
typename InputImageType::SizeType InputImageSizeType
void GenerateInputRequestedRegion() override
typename InputImageType::IndexType InputImageIndexType
void GenerateOutputInformation() override
typename InputImageType::ConstPointer InputImageConstPointer
typename InputImageType::RegionType InputImageRegionType
typename OutputImageType::PixelType OutputImagePixelType
typename OutputImageType::SizeType OutputImageSizeType
typename InputImageType::PointType PointType
typename OutputImageType::IndexType OutputImageIndexType
typename InputImageType::Pointer InputImagePointer
typename InputImageType::OffsetType InputImageOffsetType
typename OutputImageType::DirectionType OutputImageDirectionType
~ChangeInformationImageFilter() override=default
typename InputImageType::DirectionType DirectionType
ImageToImageFilter< TInputImage, TInputImage > Superclass
typename InputImageType::SpacingType SpacingType
Control indentation during Print() invocation.
Definition itkIndent.h:50
virtual void Modified() const
virtual void SetNthInput(DataObjectPointerArraySizeType idx, DataObject *input)
Implements transparent reference counting.
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....
constexpr TContainer MakeFilled(typename TContainer::const_reference value)