ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkConstShapedNeighborhoodIterator.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 itkConstShapedNeighborhoodIterator_h
19#define itkConstShapedNeighborhoodIterator_h
20
21#include <vector>
22#include <list>
24
25namespace itk
26{
71template <typename TImage, typename TBoundaryCondition = ZeroFluxNeumannBoundaryCondition<TImage>>
72class ITK_TEMPLATE_EXPORT ConstShapedNeighborhoodIterator : private NeighborhoodIterator<TImage, TBoundaryCondition>
73{
74public:
76 using InternalPixelType = typename TImage::InternalPixelType;
77 using PixelType = typename TImage::PixelType;
78
80 static constexpr unsigned int Dimension = TImage::ImageDimension;
81
85
87 using typename Superclass::OffsetType;
89 using typename Superclass::RadiusType;
90 using typename Superclass::SizeType;
92
94 using ImageType = TImage;
95 using RegionType = typename TImage::RegionType;
99
101
104 using IndexListType = std::list<NeighborIndexType>;
105
106 using IndexListIterator = typename IndexListType::iterator;
107 using IndexListConstIterator = typename IndexListType::const_iterator;
108
110 using BoundaryConditionType = TBoundaryCondition;
111
114
117 {
120 {
122 this->GoToBegin();
123 }
124
125 ~ConstIterator() = default;
126
129 {
132 return *this;
133 }
134
140
141 void
143 {
145 }
146
147 void
149 {
151 }
152
153 const ConstIterator &
155 {
157 return *this;
158 }
159
160 const ConstIterator &
162 {
164 return *this;
165 }
166
167 bool
168 operator==(const ConstIterator & o) const
169 {
170 return m_ListIterator == o.m_ListIterator;
171 }
172
174
175 bool
176 IsAtEnd() const
177 {
178 if (m_ListIterator == m_NeighborhoodIterator->GetActiveIndexList().end())
179 {
180 return true;
181 }
182
183 return false;
184 }
185
186 void
188 {
189 m_ListIterator = m_NeighborhoodIterator->GetActiveIndexList().begin();
190 }
191
192 void
194 {
195 m_ListIterator = m_NeighborhoodIterator->GetActiveIndexList().end();
196 }
197
199 Get() const
200 {
201 return m_NeighborhoodIterator->GetPixel(*m_ListIterator);
202 }
203
206 {
207 return m_NeighborhoodIterator->GetOffset(*m_ListIterator);
208 }
209
210 typename IndexListType::value_type
212 {
213 return *m_ListIterator;
214 }
215
216 protected:
217 friend Self;
218
219 ConstIterator(const Self * s, const typename IndexListType::const_iterator & li)
220 : m_NeighborhoodIterator(const_cast<Self *>(s))
221 , m_ListIterator(li)
222 {}
223
225
226 typename IndexListType::const_iterator m_ListIterator;
227
228 void
229 ProtectedSet(const PixelType & v) const
230 {
232 }
233 };
234
237 ConstIterator
238 Begin() const
239 {
240 return ConstIterator(this, this->m_ActiveIndexList.begin());
241 }
242
245 ConstIterator
246 End() const
247 {
248 return ConstIterator(this, this->m_ActiveIndexList.end());
249 }
250
253
259 ConstShapedNeighborhoodIterator(const SizeType & radius, const ImageType * ptr, const RegionType & region)
260 : Superclass(radius, const_cast<ImageType *>(ptr), region)
261 {}
262
265
266 // Expose the following methods from the superclass. This is a
267 // restricted subset of the methods available for
268 // ConstNeighborhoodIterator.
281 using Superclass::operator==;
282#ifndef ITK_EXPERIMENTAL_CXX20_REWRITTEN_UNEQUAL_OPERATOR
283 using Superclass::operator!=;
284#endif
285 using Superclass::operator<;
286 using Superclass::operator>;
287 using Superclass::operator>=;
288 using Superclass::operator<=;
289 using Superclass::operator[];
302 using Superclass::Print;
303 using Superclass::operator-;
306
308 Self &
309 operator=(const Self & orig)
310 {
311 if (this != &orig)
312 {
316 }
317 return *this;
318 }
319
321 void
322 PrintSelf(std::ostream &, Indent) const override;
323
328 void
333 void
338
341 template <typename TOffsets>
342 void
343 ActivateOffsets(const TOffsets & offsets)
344 {
345 for (const auto & offset : offsets)
346 {
347 this->ActivateOffset(offset);
348 }
349 }
350
352 void
354 {
355 m_ActiveIndexList.clear();
356 m_CenterIsActive = false;
357 }
358
360 const IndexListType &
362 {
363 return m_ActiveIndexList;
364 }
365
367 typename IndexListType::size_type
369 {
370 return m_ActiveIndexList.size();
371 }
372
377 template <typename TNeighborPixel>
378 void
380 void
382 {
383 // just delegate to the templated version
385 }
386
389 Self &
391
394 Self &
396
400 Self &
402
406 Self &
408
409protected:
412
413 friend struct ConstIterator;
414
417 // Superclass::SetPixel;
418 // Superclass::SetCenterPixel;
419
426
428
429
430 bool m_CenterIsActive{ false };
432};
433} // namespace itk
434
435#ifndef ITK_MANUAL_INSTANTIATION
436# include "itkConstShapedNeighborhoodIterator.hxx"
437#endif
438
439#endif
void OverrideBoundaryCondition(const ImageBoundaryConditionPointerType i)
void PrintSelf(std::ostream &, Indent) const override
typename OffsetType::OffsetValueType OffsetValueType
ImageBoundaryCondition< ImageType > * ImageBoundaryConditionPointerType
ConstShapedNeighborhoodIterator(const SizeType &radius, const ImageType *ptr, const RegionType &region)
void CreateActiveListFromNeighborhood(const NeighborhoodType &neighborhood)
typename IndexListType::const_iterator IndexListConstIterator
Self & operator-=(const OffsetType &)
typename TImage::InternalPixelType InternalPixelType
Neighborhood< PixelType, Self::Dimension > NeighborhoodType
void CreateActiveListFromNeighborhood(const Neighborhood< TNeighborPixel, Self::Dimension > &)
ConstShapedNeighborhoodIterator(const ConstShapedNeighborhoodIterator &)=delete
Self & operator+=(const OffsetType &)
typename NeighborhoodType::NeighborIndexType NeighborIndexType
NeighborhoodIterator< TImage, TBoundaryCondition > Superclass
A virtual base object that defines an interface to a class of boundary condition objects for use by n...
Control indentation during Print() invocation.
Definition itkIndent.h:50
void SetPixel(const unsigned int n, const PixelType &v, bool &status)
A light-weight container object for storing an N-dimensional neighborhood of values.
TImage::InternalPixelType *& GetElement(NeighborIndexType i)
virtual NeighborIndexType GetNeighborhoodIndex(const OffsetType &) const
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....
ConstIterator(const Self *s, const typename IndexListType::const_iterator &li)
Represent a n-dimensional index in a n-dimensional image.
Definition itkIndex.h:69
itk::IndexValueType IndexValueType
Definition itkIndex.h:79
itk::OffsetValueType OffsetValueType
Definition itkOffset.h:77
itk::SizeValueType SizeValueType
Definition itkSize.h:80