ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkFrequencyHalfHermitianFFTLayoutImageRegionConstIteratorWithIndex.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 itkFrequencyHalfHermitianFFTLayoutImageRegionConstIteratorWithIndex_h
19#define itkFrequencyHalfHermitianFFTLayoutImageRegionConstIteratorWithIndex_h
20
22
23namespace itk
24{
119template <typename TImage>
121 : public ImageRegionConstIteratorWithIndex<TImage>
122{
123public:
127
129 using typename Superclass::IndexType;
130 using typename Superclass::SizeType;
131 using typename Superclass::OffsetType;
132 using typename Superclass::RegionType;
133 using typename Superclass::ImageType;
134 using typename Superclass::PixelContainer;
136 using typename Superclass::InternalPixelType;
137 using typename Superclass::PixelType;
138 using typename Superclass::AccessorType;
139
140 using FrequencyType = typename ImageType::SpacingType;
141 using FrequencyValueType = typename ImageType::SpacingValueType;
149
153 : ImageRegionConstIteratorWithIndex<TImage>(ptr, region)
154 {
155 this->Init();
156 }
157
169
170 /*
171 * Image Index [0, N - 1] returns [0 to N/2] (positive) union [-N/2 + 1, -1] (negative).
172 * So index N/2 + 1 returns the bin -N/2 + 1.
173 * If first index of the image is not zero, it stills returns values in the same range.
174 * f = [0, 1, ..., N/2-1, -N/2, ..., -1] if N is even
175 * f = [0, 1, ..., (N-1)/2, -(N-1)/2, ..., -1] if N is odd
176 */
179 {
180 IndexType freqInd{};
181 for (unsigned int dim = 0; dim < TImage::ImageDimension; ++dim)
182 {
184 {
185 freqInd[dim] = this->m_PositionIndex[dim] - this->m_MinIndex[dim];
186 }
187 else // -. From -N/2 + 1 (Nyquist if even) to -1 (-df in frequency)
188 {
189 freqInd[dim] = this->m_PositionIndex[dim] - (this->m_MaxIndex[dim] + 1);
190 }
191 }
192 return freqInd;
193 }
194
216 {
217 FrequencyType freq;
218 IndexType freqInd = this->GetFrequencyBin();
219
220 for (unsigned int dim = 0; dim < TImage::ImageDimension; ++dim)
221 {
222 freq[dim] = this->m_FrequencyOrigin[dim] + this->m_FrequencySpacing[dim] * freqInd[dim];
223 }
224 return freq;
225 }
226
229 {
230 FrequencyValueType w2(0);
231 FrequencyType w(this->GetFrequency());
232
233 for (unsigned int dim = 0; dim < TImage::ImageDimension; ++dim)
234 {
235 w2 += w[dim] * w[dim];
236 }
237 return w2;
238 }
239
249 itkGetConstReferenceMacro(LargestPositiveFrequencyIndex, IndexType);
250
252 itkGetConstReferenceMacro(MinIndex, IndexType);
253
255 itkGetConstReferenceMacro(MaxIndex, IndexType);
256
258 itkGetConstReferenceMacro(FrequencyOrigin, FrequencyType);
259
266 itkGetConstReferenceMacro(FrequencySpacing, FrequencyType);
267
274 void
276 {
277 this->m_ActualXDimensionIsOdd = value;
278 SizeType sizeImage = this->m_Image->GetLargestPossibleRegion().GetSize();
279 auto size_estimated = 2 * (sizeImage[0] - 1);
280 size_estimated += this->GetActualXDimensionIsOdd() ? 1 : 0;
281 this->m_FrequencySpacing[0] = 1.0 / (this->m_Image->GetSpacing()[0] * size_estimated);
282 }
283 itkGetMacro(ActualXDimensionIsOdd, bool);
284 itkBooleanMacro(ActualXDimensionIsOdd);
286private:
290 void
292 {
293 SizeType sizeImage = this->m_Image->GetLargestPossibleRegion().GetSize();
294 this->m_MinIndex = this->m_Image->GetLargestPossibleRegion().GetIndex();
295 this->m_MaxIndex = this->m_Image->GetLargestPossibleRegion().GetUpperIndex();
296 for (unsigned int dim = 0; dim < ImageType::ImageDimension; ++dim)
297 {
299 static_cast<FrequencyValueType>(this->m_MinIndex[dim] + sizeImage[dim] / 2);
300 // Set frequency metadata.
301 // Origin of frequencies is zero after a FFT.
302 this->m_FrequencyOrigin[dim] = 0.0;
303 // SamplingFrequency = 1.0 / SpatialImageSpacing
304 // Freq_BinSize = SamplingFrequency / Size
305 this->m_FrequencySpacing[dim] = 1.0 / (this->m_Image->GetSpacing()[dim] * sizeImage[dim]);
306 }
307 // Corrections for Hermitian
308 // The fastest index has no negative frequencies.
309 this->m_LargestPositiveFrequencyIndex[0] = static_cast<FrequencyValueType>(this->m_MaxIndex[0]);
310 // In fastest dimension only:
311 // Size_estimated_original = 2 * (Size_current - 1 )
312 // Where size_current is the size of the output of RealToHalfHermitianFFT
313 // Ex: Size Original = 10, Current = 6, Estimated = 10.
314 // Size Original = 11, Current = 6, Estimated = 10.
315 auto size_estimated = 2 * (sizeImage[0] - 1);
316 size_estimated += this->GetActualXDimensionIsOdd() ? 1 : 0;
317 this->m_FrequencySpacing[0] = 1.0 / (this->m_Image->GetSpacing()[0] * size_estimated);
318 }
319
326};
327} // end namespace itk
328#endif
typename PixelContainer::Pointer PixelContainerPointer
typename TImage::InternalPixelType InternalPixelType
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....