ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkImageLinearConstIteratorWithIndex.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 itkImageLinearConstIteratorWithIndex_h
19#define itkImageLinearConstIteratorWithIndex_h
20
22
23namespace itk
24{
100template <typename TImage>
101class ITK_TEMPLATE_EXPORT ImageLinearConstIteratorWithIndex : public ImageConstIteratorWithIndex<TImage>
102{
103public:
107
112 using IndexType = typename TImage::IndexType;
113
118 using RegionType = typename TImage::RegionType;
119
124 using ImageType = TImage;
125
129 using PixelContainer = typename TImage::PixelContainer;
130 using PixelContainerPointer = typename PixelContainer::Pointer;
131
137
141
152
155 inline void
157
160 inline void
162
165 void
167
170 void
172
175 void
177
179 inline bool
181 {
182 return this->m_PositionIndex[m_Direction] >= this->m_EndIndex[m_Direction];
183 }
184
186 inline bool
188 {
190 }
191
193 inline void
194 SetDirection(unsigned int direction)
195 {
196 if (direction >= TImage::ImageDimension)
197 {
198 itkGenericExceptionMacro("In image of dimension " << TImage::ImageDimension << " Direction " << direction
199 << " was selected");
200 }
201 m_Direction = direction;
203 }
204
206 unsigned int
208 {
209 return m_Direction;
210 }
211
214 inline Self &
216 {
218 this->m_Position += m_Jump;
219 return *this;
220 }
221
224 inline Self &
226 {
228 this->m_Position -= m_Jump;
229 return *this;
230 }
231
232private:
234 unsigned int m_Direction{ 0 };
235};
236
237//----------------------------------------------------------------------
238// Go to next line
239//----------------------------------------------------------------------
240template <typename TImage>
241inline void
243{
244 this->m_Position -=
246
248
249 for (unsigned int n = 0; n < TImage::ImageDimension; ++n)
250 {
251 this->m_Remaining = false;
252
253 if (n == m_Direction)
254 {
255 continue;
256 }
257
258 this->m_PositionIndex[n]++;
259 if (this->m_PositionIndex[n] < this->m_EndIndex[n])
260 {
261 this->m_Position += this->m_OffsetTable[n];
262 this->m_Remaining = true;
263 break;
264 }
265
266 this->m_Position -= this->m_OffsetTable[n] * (this->m_Region.GetSize()[n] - 1);
267 this->m_PositionIndex[n] = this->m_BeginIndex[n];
268 }
269}
270
271//----------------------------------------------------------------------
272// Pass to the last pixel on the previous line
273//----------------------------------------------------------------------
274template <typename TImage>
275inline void
277{
278 this->m_Position +=
280
282
283 for (unsigned int n = 0; n < TImage::ImageDimension; ++n)
284 {
285 this->m_Remaining = false;
286
287 if (n == m_Direction)
288 {
289 continue;
290 }
291
292 this->m_PositionIndex[n]--;
293 if (this->m_PositionIndex[n] >= this->m_BeginIndex[n])
294 {
295 this->m_Position -= this->m_OffsetTable[n];
296 this->m_Remaining = true;
297 break;
298 }
299
300 this->m_Position += this->m_OffsetTable[n] * (this->m_Region.GetSize()[n] - 1);
301 this->m_PositionIndex[n] = this->m_EndIndex[n] - 1;
302 }
303}
304} // end namespace itk
305
306#ifndef ITK_MANUAL_INSTANTIATION
307# include "itkImageLinearConstIteratorWithIndex.hxx"
308#endif
309
310#endif
typename OffsetType::OffsetValueType OffsetValueType
Self & operator=(const Self &it)
OffsetValueType m_OffsetTable[ImageDimension+1]
ImageLinearConstIteratorWithIndex(const ImageType *ptr, const RegionType &region)
ImageLinearConstIteratorWithIndex(const ImageConstIteratorWithIndex< TImage > &it)
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....