ITK  5.4.0
Insight Toolkit
itkConstNeighborhoodIterator.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 itkConstNeighborhoodIterator_h
19 #define itkConstNeighborhoodIterator_h
20 
21 #include <vector>
22 #include <cstring>
23 #include <iostream>
24 #include "itkImage.h"
25 #include "itkNeighborhood.h"
26 #include "itkMacro.h"
28 
29 namespace itk
30 {
50 template <typename TImage, typename TBoundaryCondition = ZeroFluxNeumannBoundaryCondition<TImage>>
51 class ITK_TEMPLATE_EXPORT ConstNeighborhoodIterator
52  : public Neighborhood<typename TImage::InternalPixelType *, TImage::ImageDimension>
53 {
54 public:
56  using InternalPixelType = typename TImage::InternalPixelType;
57  using PixelType = typename TImage::PixelType;
58 
60  using DimensionValueType = unsigned int;
61 
63  static constexpr DimensionValueType Dimension = TImage::ImageDimension;
64 
68 
70  using typename Superclass::OffsetType;
71  using typename Superclass::RadiusType;
72  using typename Superclass::SizeType;
73  using typename Superclass::Iterator;
74  using typename Superclass::ConstIterator;
75 
77  using ImageType = TImage;
78  using RegionType = typename TImage::RegionType;
81 
82 
84  using BoundaryConditionType = TBoundaryCondition;
85 
87 
90 
94  using NeighborhoodAccessorFunctorType = typename ImageType::NeighborhoodAccessorFunctorType;
95 
99 
101  ConstNeighborhoodIterator() = default;
102 
104  ~ConstNeighborhoodIterator() override = default;
105 
108 
111  ConstNeighborhoodIterator(const SizeType & radius, const ImageType * ptr, const RegionType & region)
112  {
113  this->Initialize(radius, ptr, region);
114  for (DimensionValueType i = 0; i < Dimension; ++i)
115  {
116  m_InBounds[i] = false;
117  }
118  this->ResetBoundaryCondition();
119  m_NeighborhoodAccessorFunctor = ptr->GetNeighborhoodAccessor();
120  m_NeighborhoodAccessorFunctor.SetBegin(ptr->GetBufferPointer());
121  }
125  Self &
126  operator=(const Self & orig);
127 
129  void
130  PrintSelf(std::ostream &, Indent) const override;
131 
134  OffsetType
135  ComputeInternalIndex(const NeighborIndexType n) const;
136 
138  IndexType
139  GetBound() const
140  {
141  return m_Bound;
142  }
143 
148  {
149  return m_Bound[n];
150  }
151 
153  const InternalPixelType *
155  {
156  return (this->operator[]((this->Size()) >> 1));
157  }
158 
161  PixelType
163  {
164  return m_NeighborhoodAccessorFunctor.Get(this->GetCenterPointer());
165  }
166 
168  const ImageType *
170  {
171  return m_ConstImage;
172  }
173 
176  ITK_ITERATOR_VIRTUAL IndexType
177  GetIndex() const ITK_ITERATOR_FINAL
178  {
179  return m_Loop;
180  }
181 
182  inline IndexType
183  GetFastIndexPlusOffset(const OffsetType & o) const
184  {
185  return m_Loop + o;
186  }
187 
190  ITK_ITERATOR_VIRTUAL NeighborhoodType
191  GetNeighborhood() const ITK_ITERATOR_FINAL;
192 
194  ITK_ITERATOR_VIRTUAL PixelType
195  GetPixel(const NeighborIndexType i) const ITK_ITERATOR_FINAL
196  {
197  if (!m_NeedToUseBoundaryCondition || this->InBounds())
198  {
199  return (m_NeighborhoodAccessorFunctor.Get(this->operator[](i)));
200  }
201 
202  OffsetType internalIndex;
203  OffsetType offset;
204 
205  return this->IndexInBounds(i, internalIndex, offset)
206  ? m_NeighborhoodAccessorFunctor.Get(this->operator[](i))
207  : m_NeighborhoodAccessorFunctor.BoundaryCondition(internalIndex, offset, this, m_BoundaryCondition);
208  }
209 
215  ITK_ITERATOR_VIRTUAL PixelType
216  GetPixel(NeighborIndexType i, bool & IsInBounds) const ITK_ITERATOR_FINAL;
217 
220  ITK_ITERATOR_VIRTUAL PixelType
221  GetPixel(const OffsetType & o) const ITK_ITERATOR_FINAL
222  {
223  bool inbounds;
224 
225  return (this->GetPixel(this->GetNeighborhoodIndex(o), inbounds));
226  }
227 
233  ITK_ITERATOR_VIRTUAL PixelType
234  GetPixel(const OffsetType & o, bool & IsInBounds) const ITK_ITERATOR_FINAL
235  {
236  return (this->GetPixel(this->GetNeighborhoodIndex(o), IsInBounds));
237  }
238 
242  ITK_ITERATOR_VIRTUAL PixelType
243  GetNext(const unsigned int axis, NeighborIndexType i) const ITK_ITERATOR_FINAL
244  {
245  return (this->GetPixel(this->GetCenterNeighborhoodIndex() + (i * this->GetStride(axis))));
246  }
247 
251  ITK_ITERATOR_VIRTUAL PixelType
252  GetNext(const unsigned int axis) const ITK_ITERATOR_FINAL
253  {
254  return (this->GetPixel(this->GetCenterNeighborhoodIndex() + this->GetStride(axis)));
255  }
256 
260  ITK_ITERATOR_VIRTUAL PixelType
261  GetPrevious(const unsigned int axis, NeighborIndexType i) const ITK_ITERATOR_FINAL
262  {
263  return (this->GetPixel(this->GetCenterNeighborhoodIndex() - (i * this->GetStride(axis))));
264  }
265 
269  ITK_ITERATOR_VIRTUAL PixelType
270  GetPrevious(const unsigned int axis) const ITK_ITERATOR_FINAL
271  {
272  return (this->GetPixel(this->GetCenterNeighborhoodIndex() - this->GetStride(axis)));
273  }
274 
277  ITK_ITERATOR_VIRTUAL IndexType
278  GetIndex(const OffsetType & o) const ITK_ITERATOR_FINAL
279  {
280  return (this->GetIndex() + o);
281  }
282 
285  ITK_ITERATOR_VIRTUAL IndexType
286  GetIndex(NeighborIndexType i) const ITK_ITERATOR_FINAL
287  {
288  return (this->GetIndex() + this->GetOffset(i));
289  }
290 
292  RegionType
293  GetRegion() const
294  {
295  return m_Region;
296  }
297 
300  IndexType
302  {
303  return m_BeginIndex;
304  }
305 
308  RegionType
309  GetBoundingBoxAsImageRegion() const;
310 
312  OffsetType
314  {
315  return m_WrapOffset;
316  }
317 
325  {
326  return m_WrapOffset[n];
327  }
328 
330  ITK_ITERATOR_VIRTUAL void
331  GoToBegin() ITK_ITERATOR_FINAL;
332 
335  ITK_ITERATOR_VIRTUAL void
336  GoToEnd() ITK_ITERATOR_FINAL;
337 
340  ITK_ITERATOR_VIRTUAL void
341  Initialize(const SizeType & radius, const ImageType * ptr, const RegionType & region) ITK_ITERATOR_FINAL;
342 
345  ITK_ITERATOR_VIRTUAL bool
346  IsAtBegin() const ITK_ITERATOR_FINAL
347  {
348  return (this->GetCenterPointer() == m_Begin);
349  }
350 
353  ITK_ITERATOR_VIRTUAL bool
354  IsAtEnd() const ITK_ITERATOR_FINAL
355  {
356  if (this->GetCenterPointer() > m_End)
357  {
358  ExceptionObject e(__FILE__, __LINE__);
359  std::ostringstream msg;
360  msg << "In method IsAtEnd, CenterPointer = " << this->GetCenterPointer() << " is greater than End = " << m_End
361  << std::endl
362  << " " << *this;
363  e.SetDescription(msg.str().c_str());
364  throw e;
365  }
366  return (this->GetCenterPointer() == m_End);
367  }
374  Self &
375  operator++();
376 
381  Self &
382  operator--();
383 
387  bool
388  operator==(const Self & it) const
389  {
390  return it.GetCenterPointer() == this->GetCenterPointer();
391  }
392 
393  ITK_UNEQUAL_OPERATOR_MEMBER_FUNCTION(Self);
394 
398  bool
399  operator<(const Self & it) const
400  {
401  return this->GetCenterPointer() < it.GetCenterPointer();
402  }
403 
407  bool
408  operator<=(const Self & it) const
409  {
410  return this->GetCenterPointer() <= it.GetCenterPointer();
411  }
412 
416  bool
417  operator>(const Self & it) const
418  {
419  return this->GetCenterPointer() > it.GetCenterPointer();
420  }
421 
425  bool
426  operator>=(const Self & it) const
427  {
428  return this->GetCenterPointer() >= it.GetCenterPointer();
429  }
430 
435  void
436  SetLocation(const IndexType & position)
437  {
438  this->SetLoop(position);
439  this->SetPixelPointers(position);
440  }
446  Self &
447  operator+=(const OffsetType &);
448 
452  Self &
453  operator-=(const OffsetType &);
454 
456  OffsetType
457  operator-(const Self & b) const
458  {
459  return m_Loop - b.m_Loop;
460  }
461 
465  bool
466  InBounds() const;
467 
479  bool
480  IndexInBounds(const NeighborIndexType n, OffsetType & internalIndex, OffsetType & offset) const;
481 
484  bool
485  IndexInBounds(const NeighborIndexType n) const;
486 
492  ITK_ITERATOR_VIRTUAL void
494  {
495  m_BoundaryCondition = i;
496  }
497 
500  ITK_ITERATOR_VIRTUAL void
501  ResetBoundaryCondition() ITK_ITERATOR_FINAL
502  {
503  m_BoundaryCondition = &m_InternalBoundaryCondition;
504  }
505 
507  void
508  SetBoundaryCondition(const TBoundaryCondition & c)
509  {
510  m_InternalBoundaryCondition = c;
511  }
512 
514  ImageBoundaryConditionPointerType
516  {
517  return m_BoundaryCondition;
518  }
519 
521  void
523  {
524  this->SetNeedToUseBoundaryCondition(true);
525  }
526 
527  void
529  {
530  this->SetNeedToUseBoundaryCondition(false);
531  }
532 
533  void
535  {
536  m_NeedToUseBoundaryCondition = b;
537  }
538 
539  bool
541  {
542  return m_NeedToUseBoundaryCondition;
543  }
544 
546  ITK_ITERATOR_VIRTUAL void
547  SetRegion(const RegionType & region) ITK_ITERATOR_FINAL;
548 
549 protected:
552  ITK_ITERATOR_VIRTUAL void
553  SetLoop(const IndexType & p) ITK_ITERATOR_FINAL
554  {
555  m_Loop = p;
556  m_IsInBoundsValid = false;
557  }
558 
562  ITK_ITERATOR_VIRTUAL void
563  SetBound(const SizeType &) ITK_ITERATOR_FINAL;
564 
569  ITK_ITERATOR_VIRTUAL void
570  SetPixelPointers(const IndexType &) ITK_ITERATOR_FINAL;
571 
574  ITK_ITERATOR_VIRTUAL void
575  SetBeginIndex(const IndexType & start) ITK_ITERATOR_FINAL
576  {
577  m_BeginIndex = start;
578  }
579 
582  ITK_ITERATOR_VIRTUAL void
583  SetEndIndex() ITK_ITERATOR_FINAL;
584 
587  IndexType m_BeginIndex{ { 0 } };
588 
590  IndexType m_Bound{ { 0 } };
591 
593  const InternalPixelType * m_Begin{ nullptr };
594 
596  typename ImageType::ConstWeakPointer m_ConstImage{};
597 
599  const InternalPixelType * m_End{ nullptr };
600 
603  IndexType m_EndIndex{ { 0 } };
604 
606  IndexType m_Loop{ { 0 } };
607 
609  RegionType m_Region{};
610 
616  OffsetType m_WrapOffset{ { 0 } };
617 
619  TBoundaryCondition m_InternalBoundaryCondition{};
620 
625  ImageBoundaryConditionPointerType m_BoundaryCondition{ &m_InternalBoundaryCondition };
626 
629  mutable bool m_InBounds[Dimension]{ false };
630 
632  mutable bool m_IsInBounds{ false };
633 
637  mutable bool m_IsInBoundsValid{ false };
638 
640  IndexType m_InnerBoundsLow{};
641 
643  IndexType m_InnerBoundsHigh{};
644 
646  bool m_NeedToUseBoundaryCondition{ false };
647 
649  NeighborhoodAccessorFunctorType m_NeighborhoodAccessorFunctor{};
650 };
651 
652 template <typename TImage>
653 inline ConstNeighborhoodIterator<TImage>
656 {
658  ret += ind;
659  return ret;
660 }
661 
662 template <typename TImage>
663 inline ConstNeighborhoodIterator<TImage>
666 {
667  return (it + ind);
668 }
669 
670 template <typename TImage>
671 inline ConstNeighborhoodIterator<TImage>
674 {
676  ret -= ind;
677  return ret;
678 }
679 } // namespace itk
680 
681 #ifndef ITK_MANUAL_INSTANTIATION
682 # include "itkConstNeighborhoodIterator.hxx"
683 #endif
684 
685 #endif
itk::ConstNeighborhoodIterator::GetIndex
ITK_ITERATOR_VIRTUAL IndexType GetIndex(const OffsetType &o) const ITK_ITERATOR_FINAL
Definition: itkConstNeighborhoodIterator.h:278
itk::ConstNeighborhoodIterator::GetImagePointer
const ImageType * GetImagePointer() const
Definition: itkConstNeighborhoodIterator.h:169
itk::ConstNeighborhoodIterator::operator==
bool operator==(const Self &it) const
Definition: itkConstNeighborhoodIterator.h:388
itk::ConstNeighborhoodIterator::GetNeedToUseBoundaryCondition
bool GetNeedToUseBoundaryCondition() const
Definition: itkConstNeighborhoodIterator.h:540
itk::Index< Self::Dimension >
itk::ConstNeighborhoodIterator::IsAtEnd
ITK_ITERATOR_VIRTUAL bool IsAtEnd() const ITK_ITERATOR_FINAL
Definition: itkConstNeighborhoodIterator.h:354
itk::operator<
bool operator<(const Index< VDimension > &one, const Index< VDimension > &two)
Definition: itkIndex.h:559
itk::ConstNeighborhoodIterator::GetPixel
ITK_ITERATOR_VIRTUAL PixelType GetPixel(const OffsetType &o) const ITK_ITERATOR_FINAL
Definition: itkConstNeighborhoodIterator.h:221
itk::operator<=
bool operator<=(const Index< VDimension > &one, const Index< VDimension > &two)
Definition: itkIndex.h:573
itk::ConstNeighborhoodIterator< TSparseImageType >::NeighborIndexType
typename NeighborhoodType::NeighborIndexType NeighborIndexType
Definition: itkConstNeighborhoodIterator.h:89
itk::Size
Represent a n-dimensional size (bounds) of a n-dimensional image.
Definition: itkSize.h:71
itk::ConstNeighborhoodIterator< TSparseImageType >::PixelType
typename TSparseImageType ::PixelType PixelType
Definition: itkConstNeighborhoodIterator.h:57
itk::ConstNeighborhoodIterator::GetCenterPixel
PixelType GetCenterPixel() const
Definition: itkConstNeighborhoodIterator.h:162
itk::ConstNeighborhoodIterator::GetBound
IndexType GetBound() const
Definition: itkConstNeighborhoodIterator.h:139
itk::ConstNeighborhoodIterator::GetPixel
ITK_ITERATOR_VIRTUAL PixelType GetPixel(const OffsetType &o, bool &IsInBounds) const ITK_ITERATOR_FINAL
Definition: itkConstNeighborhoodIterator.h:234
itk::ConstNeighborhoodIterator::operator>=
bool operator>=(const Self &it) const
Definition: itkConstNeighborhoodIterator.h:426
itk::operator-
ConstNeighborhoodIterator< TImage > operator-(const ConstNeighborhoodIterator< TImage > &it, const typename ConstNeighborhoodIterator< TImage >::OffsetType &ind)
Definition: itkConstNeighborhoodIterator.h:672
itk::Neighborhood
A light-weight container object for storing an N-dimensional neighborhood of values.
Definition: itkNeighborhood.h:54
itk::GTest::TypedefsAndConstructors::Dimension2::SizeType
ImageBaseType::SizeType SizeType
Definition: itkGTestTypedefsAndConstructors.h:49
itk::ConstNeighborhoodIterator::operator-
OffsetType operator-(const Self &b) const
Definition: itkConstNeighborhoodIterator.h:457
itkImage.h
itk::ConstNeighborhoodIterator::GetFastIndexPlusOffset
IndexType GetFastIndexPlusOffset(const OffsetType &o) const
Definition: itkConstNeighborhoodIterator.h:183
itk::Indent
Control indentation during Print() invocation.
Definition: itkIndent.h:49
itkNeighborhood.h
itk::ConstNeighborhoodIterator::NeedToUseBoundaryConditionOn
void NeedToUseBoundaryConditionOn()
Definition: itkConstNeighborhoodIterator.h:522
itk::IndexValueType
long IndexValueType
Definition: itkIntTypes.h:90
itk::ConstNeighborhoodIterator::GetRegion
RegionType GetRegion() const
Definition: itkConstNeighborhoodIterator.h:293
itk::ConstNeighborhoodIterator< TSparseImageType >::ImageType
TSparseImageType ImageType
Definition: itkConstNeighborhoodIterator.h:77
itk::ConstNeighborhoodIterator::SetLocation
void SetLocation(const IndexType &position)
Definition: itkConstNeighborhoodIterator.h:436
itk::ImageBoundaryCondition< ImageType, OutputImageType >
itk::ConstNeighborhoodIterator::SetLoop
ITK_ITERATOR_VIRTUAL void SetLoop(const IndexType &p) ITK_ITERATOR_FINAL
Definition: itkConstNeighborhoodIterator.h:553
itk::ConstNeighborhoodIterator::GetBeginIndex
IndexType GetBeginIndex() const
Definition: itkConstNeighborhoodIterator.h:301
itk::GTest::TypedefsAndConstructors::Dimension2::IndexType
ImageBaseType::IndexType IndexType
Definition: itkGTestTypedefsAndConstructors.h:50
itk::ConstNeighborhoodIterator::SetBoundaryCondition
void SetBoundaryCondition(const TBoundaryCondition &c)
Definition: itkConstNeighborhoodIterator.h:508
itkMacro.h
itk::ImageBoundaryCondition< TSparseImageType, TSparseImageType >::OutputImageType
TSparseImageType OutputImageType
Definition: itkImageBoundaryCondition.h:64
itk::ConstNeighborhoodIterator::GetIndex
ITK_ITERATOR_VIRTUAL IndexType GetIndex(NeighborIndexType i) const ITK_ITERATOR_FINAL
Definition: itkConstNeighborhoodIterator.h:286
itk::ConstNeighborhoodIterator::ResetBoundaryCondition
ITK_ITERATOR_VIRTUAL void ResetBoundaryCondition() ITK_ITERATOR_FINAL
Definition: itkConstNeighborhoodIterator.h:501
itk::GTest::TypedefsAndConstructors::Dimension2::RegionType
ImageBaseType::RegionType RegionType
Definition: itkGTestTypedefsAndConstructors.h:54
itk::ConstNeighborhoodIterator::OverrideBoundaryCondition
ITK_ITERATOR_VIRTUAL void OverrideBoundaryCondition(const ImageBoundaryConditionPointerType i) ITK_ITERATOR_FINAL
Definition: itkConstNeighborhoodIterator.h:493
itk::Neighborhood::Iterator
typename AllocatorType::iterator Iterator
Definition: itkNeighborhood.h:75
itk::ConstNeighborhoodIterator::SetBeginIndex
ITK_ITERATOR_VIRTUAL void SetBeginIndex(const IndexType &start) ITK_ITERATOR_FINAL
Definition: itkConstNeighborhoodIterator.h:575
itk::ConstNeighborhoodIterator::GetIndex
ITK_ITERATOR_VIRTUAL IndexType GetIndex() const ITK_ITERATOR_FINAL
Definition: itkConstNeighborhoodIterator.h:177
itk::ConstNeighborhoodIterator::GetBoundaryCondition
ImageBoundaryConditionPointerType GetBoundaryCondition() const
Definition: itkConstNeighborhoodIterator.h:515
itk::OffsetValueType
long OffsetValueType
Definition: itkIntTypes.h:94
itk::ConstNeighborhoodIterator::ConstNeighborhoodIterator
ConstNeighborhoodIterator(const SizeType &radius, const ImageType *ptr, const RegionType &region)
Definition: itkConstNeighborhoodIterator.h:111
itk::Neighborhood::ConstIterator
typename AllocatorType::const_iterator ConstIterator
Definition: itkNeighborhood.h:76
itk::Offset
Represent a n-dimensional offset between two n-dimensional indexes of n-dimensional image.
Definition: itkOffset.h:69
itk::ConstNeighborhoodIterator::GetNext
ITK_ITERATOR_VIRTUAL PixelType GetNext(const unsigned int axis) const ITK_ITERATOR_FINAL
Definition: itkConstNeighborhoodIterator.h:252
itk
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....
Definition: itkAnnulusOperator.h:24
itk::ConstNeighborhoodIterator::GetBound
IndexValueType GetBound(NeighborIndexType n) const
Definition: itkConstNeighborhoodIterator.h:147
itk::ConstNeighborhoodIterator
Const version of NeighborhoodIterator, defining iteration of a local N-dimensional neighborhood of pi...
Definition: itkConstNeighborhoodIterator.h:51
itk::ConstNeighborhoodIterator::GetWrapOffset
OffsetType GetWrapOffset() const
Definition: itkConstNeighborhoodIterator.h:313
itk::ConstNeighborhoodIterator::NeedToUseBoundaryConditionOff
void NeedToUseBoundaryConditionOff()
Definition: itkConstNeighborhoodIterator.h:528
itk::ConstNeighborhoodIterator::m_Loop
IndexType m_Loop
Definition: itkConstNeighborhoodIterator.h:606
itk::operator+
ConstNeighborhoodIterator< TImage > operator+(const ConstNeighborhoodIterator< TImage > &it, const typename ConstNeighborhoodIterator< TImage >::OffsetType &ind)
Definition: itkConstNeighborhoodIterator.h:654
itk::ConstNeighborhoodIterator::GetCenterPointer
const InternalPixelType * GetCenterPointer() const
Definition: itkConstNeighborhoodIterator.h:154
itk::ConstNeighborhoodIterator::operator>
bool operator>(const Self &it) const
Definition: itkConstNeighborhoodIterator.h:417
itk::Math::e
static constexpr double e
Definition: itkMath.h:56
itk::ConstNeighborhoodIterator::GetWrapOffset
OffsetValueType GetWrapOffset(NeighborIndexType n) const
Definition: itkConstNeighborhoodIterator.h:324
itk::ConstNeighborhoodIterator< TSparseImageType >::NeighborhoodAccessorFunctorType
typename ImageType::NeighborhoodAccessorFunctorType NeighborhoodAccessorFunctorType
Definition: itkConstNeighborhoodIterator.h:94
itk::ZeroFluxNeumannBoundaryCondition< TSparseImageType >
itk::ConstNeighborhoodIterator::GetPrevious
ITK_ITERATOR_VIRTUAL PixelType GetPrevious(const unsigned int axis) const ITK_ITERATOR_FINAL
Definition: itkConstNeighborhoodIterator.h:270
AddImageFilter
Definition: itkAddImageFilter.h:81
itk::Neighborhood::NeighborIndexType
SizeValueType NeighborIndexType
Definition: itkNeighborhood.h:96
itk::ConstNeighborhoodIterator::GetNext
ITK_ITERATOR_VIRTUAL PixelType GetNext(const unsigned int axis, NeighborIndexType i) const ITK_ITERATOR_FINAL
Definition: itkConstNeighborhoodIterator.h:243
itk::GTest::TypedefsAndConstructors::Dimension2::Dimension
constexpr unsigned int Dimension
Definition: itkGTestTypedefsAndConstructors.h:44
itkZeroFluxNeumannBoundaryCondition.h
itk::ConstNeighborhoodIterator::GetPrevious
ITK_ITERATOR_VIRTUAL PixelType GetPrevious(const unsigned int axis, NeighborIndexType i) const ITK_ITERATOR_FINAL
Definition: itkConstNeighborhoodIterator.h:261
itk::ConstNeighborhoodIterator< TSparseImageType >::OutputImageType
typename BoundaryConditionType::OutputImageType OutputImageType
Definition: itkConstNeighborhoodIterator.h:86
itk::ConstNeighborhoodIterator::SetNeedToUseBoundaryCondition
void SetNeedToUseBoundaryCondition(bool b)
Definition: itkConstNeighborhoodIterator.h:534