ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkImageConstIterator.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 itkImageConstIterator_h
19#define itkImageConstIterator_h
20
21#include "itkImage.h"
22#include "itkIndex.h"
23#include "itkNumericTraits.h"
24
25namespace itk
26{
83template <typename TImage>
84class ITK_TEMPLATE_EXPORT ImageConstIterator
86public:
94 static constexpr unsigned int ImageIteratorDimension = TImage::ImageDimension;
97 itkVirtualGetNameOfClassMacro(ImageConstIterator);
98
100 using IndexType = typename TImage::IndexType;
101
103 using SizeType = typename TImage::SizeType;
104
106 using OffsetType = typename TImage::OffsetType;
107
109 using RegionType = typename TImage::RegionType;
110
112 using ImageType = TImage;
113
117 using PixelContainer = typename TImage::PixelContainer;
118 using PixelContainerPointer = typename PixelContainer::Pointer;
119
121 using InternalPixelType = typename TImage::InternalPixelType;
122
124 using PixelType = typename TImage::PixelType;
125
128 using AccessorType = typename TImage::AccessorType;
129 using AccessorFunctorType = typename TImage::AccessorFunctorType;
145
147 virtual ~ImageConstIterator() = default;
148
152 {
153 m_Image = it.m_Image; // copy the smart pointer
154
155 m_Region = it.m_Region;
156
157 m_Buffer = it.m_Buffer;
158 m_Offset = it.m_Offset;
164 }
165
168 ImageConstIterator(const ImageType * ptr, const RegionType & region)
169 {
170 m_Image = ptr;
171 m_Buffer = m_Image->GetBufferPointer();
172
173 SetRegion(region);
174
175 m_PixelAccessor = ptr->GetPixelAccessor();
176 m_PixelAccessorFunctor.SetPixelAccessor(m_PixelAccessor);
178 }
179
182 Self &
183 operator=(const Self & it)
184 {
185 if (this != &it)
186 {
187 m_Image = it.m_Image; // copy the smart pointer
188 m_Region = it.m_Region;
189
190 m_Buffer = it.m_Buffer;
191 m_Offset = it.m_Offset;
197 }
198 return *this;
199 }
200
202 virtual void
203 SetRegion(const RegionType & region)
204 {
205 m_Region = region;
206
207 if (region.GetNumberOfPixels() > 0) // If region is non-empty
208 {
209 const RegionType & bufferedRegion = m_Image->GetBufferedRegion();
210 itkAssertOrThrowMacro((bufferedRegion.IsInside(m_Region)),
211 "Region " << m_Region << " is outside of buffered region " << bufferedRegion);
212 }
213
214 // Compute the start offset
215 m_Offset = m_Image->ComputeOffset(m_Region.GetIndex());
217
218 // Compute the end offset. If any component of m_Region.GetSize()
219 // is zero, the region is not valid and we set the EndOffset
220 // to be same as BeginOffset so that iterator end condition is met
221 // immediately.
222 IndexType ind(m_Region.GetIndex());
223 SizeType size(m_Region.GetSize());
224 if (m_Region.GetNumberOfPixels() == 0)
225 {
226 // region is empty, probably has a size of 0 along one dimension
228 }
229 else
230 {
231 for (unsigned int i = 0; i < TImage::ImageDimension; ++i)
232 {
233 ind[i] += (static_cast<IndexValueType>(size[i]) - 1);
234 }
235 m_EndOffset = m_Image->ComputeOffset(ind);
236 ++m_EndOffset;
237 }
238 }
239
241 static unsigned int
243 {
244 return TImage::ImageDimension;
245 }
246
249 bool
250 operator==(const Self & it) const
251 {
252 // two iterators are the same if they "point to" the same memory location
253 return (m_Buffer + m_Offset) == (it.m_Buffer + it.m_Offset);
254 }
255
257
260 bool
261 operator<=(const Self & it) const
262 {
263 // an iterator is "less than" another if it "points to" a lower
264 // memory location
265 return (m_Buffer + m_Offset) <= (it.m_Buffer + it.m_Offset);
266 }
267
270 bool
271 operator<(const Self & it) const
272 {
273 // an iterator is "less than" another if it "points to" a lower
274 // memory location
275 return (m_Buffer + m_Offset) < (it.m_Buffer + it.m_Offset);
276 }
277
280 bool
281 operator>=(const Self & it) const
282 {
283 // an iterator is "greater than" another if it "points to" a higher
284 // memory location
285 return (m_Buffer + m_Offset) >= (it.m_Buffer + it.m_Offset);
286 }
287
290 bool
291 operator>(const Self & it) const
292 {
293 // an iterator is "greater than" another if it "points to" a higher
294 // memory location
295 return (m_Buffer + m_Offset) > (it.m_Buffer + it.m_Offset);
296 }
297
302 const IndexType
303 GetIndex() const
304 {
305 return m_Image->ComputeIndex(static_cast<OffsetValueType>(m_Offset));
306 }
307
310 virtual void
311 SetIndex(const IndexType & ind)
312 {
313 m_Offset = m_Image->ComputeOffset(ind);
314 }
315
318 const RegionType &
319 GetRegion() const
320 {
321 return m_Region;
322 }
323
325 const ImageType *
326 GetImage() const
327 {
328 return m_Image.GetPointer();
329 }
330
332 PixelType
333 Get() const
334 {
336 }
337
341 const PixelType &
342 Value() const
343 {
344 return *(m_Buffer + m_Offset);
345 }
346
349 void
351 {
353 }
354
357 void
359 {
361 }
362
365 bool
366 IsAtBegin() const
367 {
368 return (m_Offset == m_BeginOffset);
369 }
370
373 bool
374 IsAtEnd() const
375 {
376 return (m_Offset == m_EndOffset);
377 }
378
379protected: // made protected so other iterators can access
380 typename TImage::ConstWeakPointer m_Image{};
381
382 RegionType m_Region{}; // region to iterate over
383
385 OffsetValueType m_BeginOffset{}; // offset to first pixel in region
386 OffsetValueType m_EndOffset{}; // offset to one pixel past last pixel in region
387
389
392};
393} // end namespace itk
394
395#endif
A multi-dimensional image iterator templated over image type.
typename TImage::IndexType IndexType
ITK_UNEQUAL_OPERATOR_MEMBER_FUNCTION(Self)
const RegionType & GetRegion() const
TImage::ConstWeakPointer m_Image
const PixelType & Value() const
virtual ~ImageConstIterator()=default
bool operator==(const Self &it) const
typename TImage::PixelContainer PixelContainer
bool operator>(const Self &it) const
virtual void SetIndex(const IndexType &ind)
typename TImage::SizeType SizeType
bool operator<=(const Self &it) const
typename TImage::OffsetType OffsetType
const IndexType GetIndex() const
virtual void SetRegion(const RegionType &region)
typename TImage::InternalPixelType InternalPixelType
typename PixelContainer::Pointer PixelContainerPointer
bool operator<(const Self &it) const
const ImageType * GetImage() const
typename TImage::AccessorType AccessorType
typename TImage::AccessorFunctorType AccessorFunctorType
typename TImage::RegionType RegionType
static unsigned int GetImageIteratorDimension()
AccessorFunctorType m_PixelAccessorFunctor
Self & operator=(const Self &it)
const InternalPixelType * m_Buffer
ImageConstIterator(const ImageType *ptr, const RegionType &region)
typename TImage::PixelType PixelType
bool operator>=(const Self &it) const
static constexpr unsigned int ImageIteratorDimension
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....
long OffsetValueType
Definition itkIntTypes.h:97
long IndexValueType
Definition itkIntTypes.h:93