ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkFrequencyImageRegionConstIteratorWithIndex.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 itkFrequencyImageRegionConstIteratorWithIndex_h
19#define itkFrequencyImageRegionConstIteratorWithIndex_h
20
22
23namespace itk
24{
77template <typename TImage>
79{
80public:
84
86 using typename Superclass::IndexType;
87 using typename Superclass::SizeType;
88 using typename Superclass::OffsetType;
89 using typename Superclass::RegionType;
90 using typename Superclass::ImageType;
91 using typename Superclass::PixelContainer;
93 using typename Superclass::InternalPixelType;
94 using typename Superclass::PixelType;
95 using typename Superclass::AccessorType;
96
97 using FrequencyType = typename ImageType::SpacingType;
98 using FrequencyValueType = typename ImageType::SpacingValueType;
105
108 FrequencyImageRegionConstIteratorWithIndex(const TImage * ptr, const RegionType & region)
109 : ImageRegionConstIteratorWithIndex<TImage>(ptr, region)
110 {
111 this->Init();
112 }
113
122 {
123 this->Init();
124 }
125
126 /*
127 * The image is in the frequency domain already, return the index.
128 */
129 IndexType
131 {
132 return this->GetIndex();
133 }
134
135 /* Similar to TransformIndexToPhysicalPoint on GetIndex(),
136 * but the result is cast to FrequencyType. And direction is not taken into account.
137 */
138 FrequencyType
140 {
141 FrequencyType freq;
142 IndexType freqInd = this->GetFrequencyBin();
143 // FrequencyType freq;
144 for (unsigned int dim = 0; dim < TImage::ImageDimension; ++dim)
145 {
146 freq[dim] = this->m_FrequencyOrigin[dim] + this->m_FrequencySpacing[dim] * freqInd[dim];
147 }
148 return freq;
149 }
150
151 FrequencyValueType
153 {
154 FrequencyValueType w2(0);
155 FrequencyType w(this->GetFrequency());
156
157 for (unsigned int dim = 0; dim < TImage::ImageDimension; ++dim)
158 {
159 w2 += w[dim] * w[dim];
160 }
161 return w2;
162 }
163
165 itkGetConstReferenceMacro(FrequencyOrigin, FrequencyType);
166
169 itkGetConstReferenceMacro(FrequencySpacing, FrequencyType);
170
171private:
174 void
176 {
177 for (unsigned int dim = 0; dim < ImageType::ImageDimension; ++dim)
178 {
179 this->m_FrequencyOrigin[dim] = this->m_Image->GetOrigin()[dim];
180 this->m_FrequencySpacing[dim] = this->m_Image->GetSpacing()[dim];
181 }
182 }
183
186};
187} // end namespace itk
188#endif
FrequencyImageRegionConstIteratorWithIndex(const TImage *ptr, const RegionType &region)
typename PixelContainer::Pointer PixelContainerPointer
typename TImage::InternalPixelType InternalPixelType
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....