ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkFrequencyFFTLayoutImageRegionConstIteratorWithIndex.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 itkFrequencyFFTLayoutImageRegionConstIteratorWithIndex_h
19#define itkFrequencyFFTLayoutImageRegionConstIteratorWithIndex_h
20
22
23namespace itk
24{
114template <typename TImage>
116 : public ImageRegionConstIteratorWithIndex<TImage>
117{
118public:
122
124 using typename Superclass::IndexType;
125 using typename Superclass::SizeType;
126 using typename Superclass::OffsetType;
127 using typename Superclass::RegionType;
128 using typename Superclass::ImageType;
129 using typename Superclass::PixelContainer;
131 using typename Superclass::InternalPixelType;
132 using typename Superclass::PixelType;
133 using typename Superclass::AccessorType;
134
135 using FrequencyType = typename ImageType::SpacingType;
136 using FrequencyValueType = typename ImageType::SpacingValueType;
143
147 : ImageRegionConstIteratorWithIndex<TImage>(ptr, region)
148 {
149 this->Init();
150 }
151
160 {
161 this->Init();
162 }
163
164 /*
165 * Image Index [0, N - 1] returns [0 to N/2] (positive) union [-N/2 + 1, -1] (negative). So index N/2 + 1 returns the
166 * bin -N/2 + 1. If first index of the image is not zero, it stills returns values in the same range. f = [0, 1, ...,
167 * N/2-1, -N/2, ..., -1] if N is even f = [0, 1, ..., (N-1)/2, -(N-1)/2, ..., -1] if N is odd
168 */
169 IndexType
171 {
172 IndexType freqInd{};
173 for (unsigned int dim = 0; dim < TImage::ImageDimension; ++dim)
174 {
176 {
177 freqInd[dim] = this->m_PositionIndex[dim] - this->m_MinIndex[dim];
178 }
179 else // -. From -N/2 + 1 (Nyquist if even) to -1 (-df in frequency)
180 {
181 freqInd[dim] = this->m_PositionIndex[dim] - (this->m_MaxIndex[dim] + 1);
182 }
183 }
184 return freqInd;
185 }
186
206 FrequencyType
208 {
209 FrequencyType freq;
210 IndexType freqInd = this->GetFrequencyBin();
211
212 for (unsigned int dim = 0; dim < TImage::ImageDimension; ++dim)
213 {
214 freq[dim] = this->m_FrequencyOrigin[dim] + this->m_FrequencySpacing[dim] * freqInd[dim];
215 }
216 return freq;
217 }
218
219 FrequencyValueType
221 {
222 FrequencyValueType w2(0);
223 FrequencyType w(this->GetFrequency());
224
225 for (unsigned int dim = 0; dim < TImage::ImageDimension; ++dim)
226 {
227 w2 += w[dim] * w[dim];
228 }
229 return w2;
230 }
231
241 itkGetConstReferenceMacro(LargestPositiveFrequencyIndex, IndexType);
242
244 itkGetConstReferenceMacro(MinIndex, IndexType);
245
247 itkGetConstReferenceMacro(MaxIndex, IndexType);
248
250 itkGetConstReferenceMacro(FrequencyOrigin, FrequencyType);
251
258 itkGetConstReferenceMacro(FrequencySpacing, FrequencyType);
259
263 void
265 {
266 this->m_ActualXDimensionIsOdd = value;
267 }
268 itkGetMacro(ActualXDimensionIsOdd, bool);
269 itkBooleanMacro(ActualXDimensionIsOdd);
271private:
275 void
277 {
278 SizeType sizeImage = this->m_Image->GetLargestPossibleRegion().GetSize();
279 this->m_MinIndex = this->m_Image->GetLargestPossibleRegion().GetIndex();
280 this->m_MaxIndex = this->m_Image->GetLargestPossibleRegion().GetUpperIndex();
281 for (unsigned int dim = 0; dim < ImageType::ImageDimension; ++dim)
282 {
284 static_cast<FrequencyValueType>(this->m_MinIndex[dim] + std::floor(sizeImage[dim] / 2.0));
285 // Set frequency metadata.
286 // Origin of frequencies is zero after a FFT.
287 this->m_FrequencyOrigin[dim] = 0.0;
288 // SamplingFrequency = 1.0 / SpatialImageSpacing
289 // Freq_BinSize = SamplingFrequency / Size
290 this->m_FrequencySpacing[dim] = 1.0 / (this->m_Image->GetSpacing()[dim] * sizeImage[dim]);
291 }
292 }
293
300};
301} // end namespace itk
302#endif
typename PixelContainer::Pointer PixelContainerPointer
typename TImage::InternalPixelType InternalPixelType
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....