ITK  4.13.0
Insight Segmentation and Registration Toolkit
itkConditionalConstIterator.h
Go to the documentation of this file.
1 /*=========================================================================
2  *
3  * Copyright Insight Software Consortium
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  * http://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 itkConditionalConstIterator_h
19 #define itkConditionalConstIterator_h
20 
21 #include "itkIndex.h"
22 
23 namespace itk
24 {
37 template< typename TImage >
38 class ITK_TEMPLATE_EXPORT ConditionalConstIterator
39 {
40 public:
43 
48  itkStaticConstMacro(NDimension, unsigned int, TImage::ImageDimension);
49 
51  typedef typename TImage::IndexType IndexType;
52 
54  typedef typename TImage::SizeType SizeType;
55 
57  typedef typename TImage::RegionType RegionType;
58 
60  typedef TImage ImageType;
61 
63  typedef typename TImage::InternalPixelType InternalPixelType;
64 
66  typedef typename TImage::PixelType PixelType;
67 
69  virtual bool IsPixelIncluded(const IndexType & index) const = 0;
70 
73  Self & operator=(const Self & it)
74  {
75  m_IsAtEnd = it.m_IsAtEnd; // copy the end flag
76  m_Image = it.m_Image; // copy the smart pointer
77  m_Region = it.m_Region; // copy the region
78  return *this;
79  }
80 
82  static unsigned int GetIteratorDimension(void)
83  {
84  return Self::NDimension;
85  }
86 
88  virtual const IndexType GetIndex() = 0;
89 
91  virtual const PixelType Get(void) const = 0;
92 
94  virtual bool IsAtEnd() = 0;
95 
97  virtual void operator++() = 0;
98 
101 
103  virtual ~ConditionalConstIterator();
104 
105 protected: //made protected so other iterators can access
107  //SmartPointer<const ImageType> m_Image;
108  typename ImageType::ConstWeakPointer m_Image;
109 
112 
114  bool m_IsAtEnd;
115 };
116 } // end namespace itk
117 
118 #ifndef ITK_MANUAL_INSTANTIATION
119 #include "itkConditionalConstIterator.hxx"
120 #endif
121 
122 #endif
static unsigned int GetIteratorDimension(void)
TImage::InternalPixelType InternalPixelType
A base class for other iterators where membership in the set of output pixels is conditional upon som...