ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkPathConstIterator.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 itkPathConstIterator_h
19#define itkPathConstIterator_h
20
21#include "itkImage.h"
22#include "itkPath.h"
23
24namespace itk
25{
74template <typename TImage, typename TPath>
75class ITK_TEMPLATE_EXPORT PathConstIterator
76{
77public:
80
85 static constexpr unsigned int ImageIteratorDimension = TImage::ImageDimension;
86
88 using IndexType = typename TImage::IndexType;
89
91 using OffsetType = typename TImage::OffsetType;
92
94 using SizeType = typename TImage::SizeType;
95
97 using RegionType = typename TImage::RegionType;
98
100 using SpacingType = typename TImage::SpacingType;
101
103 using PointType = typename TImage::PointType;
104
106 using ImageType = TImage;
107
111 using PixelContainer = typename TImage::PixelContainer;
112 using PixelContainerPointer = typename PixelContainer::Pointer;
113
115 using InternalPixelType = typename TImage::InternalPixelType;
116
118 using PixelType = typename TImage::PixelType;
119
122 using AccessorType = typename TImage::AccessorType;
123
125 using PathType = TPath;
126
128 using PathInputType = typename PathType::InputType;
129
131 using PathOutputType = typename PathType::OutputType;
132
134 itkVirtualGetNameOfClassMacro(PathConstIterator);
135
137 static unsigned int
139 {
140 return TImage::ImageDimension;
141 }
142
144 const PathInputType
146 {
148 }
149
151 const IndexType
153 {
154 return m_CurrentImageIndex;
155 }
156
158 const PixelType &
159 Get() const
160 {
161 return m_Image->GetPixel(m_CurrentImageIndex);
162 }
163
167 bool
168 IsAtEnd() const
169 {
170 return m_IsAtEnd;
171 }
172
177 inline virtual void
182
188 void
190
192 void
194
197 Self &
198 operator=(const Self & it);
199
201 PathConstIterator(const ImageType * imagePtr, const PathType * pathPtr);
202
204 virtual ~PathConstIterator() = default;
205
206protected: // made protected so other iterators can access
207 // This "constant" is initialized in the constructor
208 OffsetType m_ZeroOffset{}; // = 0 for all dimensions
209
211 typename ImageType::ConstWeakPointer m_Image{};
212
214 typename PathType::ConstPointer m_Path{};
215
218
221
224
227
233
235 bool m_IsAtEnd{};
236
239
242};
243} // end namespace itk
244
245#ifndef ITK_MANUAL_INSTANTIATION
246# include "itkPathConstIterator.hxx"
247#endif
248
249#endif
const SizeValueType * m_ImageSize
const PixelType & Get() const
PathType::ConstPointer m_Path
typename TImage::PixelContainer PixelContainer
typename TImage::SizeType SizeType
typename TImage::InternalPixelType InternalPixelType
typename TImage::PointType PointType
Self & operator=(const Self &it)
typename PixelContainer::Pointer PixelContainerPointer
typename PathType::InputType PathInputType
const PathInputType GetPathPosition()
typename TImage::PixelType PixelType
static unsigned int GetImageIteratorDimension()
ImageType::ConstWeakPointer m_Image
typename TImage::IndexType IndexType
typename PathType::OutputType PathOutputType
typename TImage::OffsetType OffsetType
typename TImage::RegionType RegionType
virtual ~PathConstIterator()=default
static constexpr unsigned int ImageIteratorDimension
typename TImage::AccessorType AccessorType
typename TImage::SpacingType SpacingType
PathConstIterator(const ImageType *imagePtr, const PathType *pathPtr)
virtual void VisitStartIndexAsLastIndexIfClosed(bool flag)
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....
unsigned long SizeValueType
Definition itkIntTypes.h:86