ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkLineConstIterator.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 itkLineConstIterator_h
19#define itkLineConstIterator_h
20
21#include "itkIndex.h"
22#include "itkImage.h"
23
24namespace itk
25{
55template <typename TImage>
56class ITK_TEMPLATE_EXPORT LineConstIterator
57{
58public:
61
66 static constexpr unsigned int ImageIteratorDimension = TImage::ImageDimension;
67
69 using IndexType = typename TImage::IndexType;
70
72 using OffsetType = typename TImage::OffsetType;
73
75 using SizeType = typename TImage::SizeType;
76
78 using RegionType = typename TImage::RegionType;
79
81 using SpacingType = typename TImage::SpacingType;
82
84 using PointType = typename TImage::PointType;
85
87 using ImageType = TImage;
88
92 using PixelContainer = typename TImage::PixelContainer;
93 using PixelContainerPointer = typename PixelContainer::Pointer;
94
96 using InternalPixelType = typename TImage::InternalPixelType;
97
99 using PixelType = typename TImage::PixelType;
100
103 using AccessorType = typename TImage::AccessorType;
104
106 itkVirtualGetNameOfClassMacro(LineConstIterator);
107
109 static unsigned int
111 {
112 return TImage::ImageDimension;
113 }
114
116 const IndexType
118 {
119 return m_CurrentImageIndex;
120 }
121
123 const PixelType
124 Get() const
125 {
126 return m_Image->GetPixel(m_CurrentImageIndex);
127 }
128
130 bool
131 IsAtEnd() const
132 {
133 return m_IsAtEnd;
134 }
135
137 void
139
141 void
143
146 Self &
147 operator=(const Self & it);
148
150 LineConstIterator(const ImageType * imagePtr, const IndexType & firstIndex, const IndexType & lastIndex);
151
153 virtual ~LineConstIterator() = default;
154
155protected: // made protected so other iterators can access
157 typename ImageType::ConstWeakPointer m_Image{};
158
161
163 bool m_IsAtEnd{};
164
169 IndexType m_EndIndex{}; // one past the end of the line in the m_MainDirection
170
172 // The dimension with the largest difference between start and end
173 unsigned int m_MainDirection{};
174
175 // Accumulated error for the other dimensions
177
178 // Increment for the error for each step. Two times the difference between
179 // start and end
181
182 // If enough is accumulated for a dimension, the index has to be
183 // incremented. Will be the number of pixels in the line
185
186 // Direction of increment. -1 or 1
188
189 // After an overflow, the accumulated error is reduced again. Will be
190 // two times the number of pixels in the line
192};
193} // end namespace itk
194
195#ifndef ITK_MANUAL_INSTANTIATION
196# include "itkLineConstIterator.hxx"
197#endif
198
199#endif
typename TImage::PixelType PixelType
typename TImage::SpacingType SpacingType
static constexpr unsigned int ImageIteratorDimension
virtual ~LineConstIterator()=default
typename TImage::IndexType IndexType
typename PixelContainer::Pointer PixelContainerPointer
Self & operator=(const Self &it)
typename TImage::InternalPixelType InternalPixelType
LineConstIterator(const ImageType *imagePtr, const IndexType &firstIndex, const IndexType &lastIndex)
ImageType::ConstWeakPointer m_Image
typename TImage::OffsetType OffsetType
typename TImage::SizeType SizeType
typename TImage::RegionType RegionType
typename TImage::PixelContainer PixelContainer
static unsigned int GetImageIteratorDimension()
typename TImage::PointType PointType
const PixelType Get() const
typename TImage::AccessorType AccessorType
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....