ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkImageRegionConstIterator.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 itkImageRegionConstIterator_h
19#define itkImageRegionConstIterator_h
20
21#include "itkImageIterator.h"
22
23namespace itk
24{
108template <typename TImage>
109class ITK_TEMPLATE_EXPORT ImageRegionConstIterator : public ImageConstIterator<TImage>
110{
111public:
115
121
126
128 using typename Superclass::IndexType;
129 using typename Superclass::SizeType;
130 using typename Superclass::OffsetType;
131 using typename Superclass::RegionType;
132 using typename Superclass::ImageType;
133 using typename Superclass::PixelContainer;
135 using typename Superclass::InternalPixelType;
136 using typename Superclass::PixelType;
137 using typename Superclass::AccessorType;
138
140 itkOverrideGetNameOfClassMacro(ImageRegionConstIterator);
141
144 : ImageConstIterator<TImage>()
145 {
147 m_SpanEndOffset = 0;
148 }
149
152 ImageRegionConstIterator(const ImageType * ptr, const RegionType & region)
153 : ImageConstIterator<TImage>(ptr, region)
154 {
156 m_SpanEndOffset = this->m_BeginOffset + static_cast<OffsetValueType>(this->m_Region.GetSize()[0]);
157 }
158
166 {
168
169 IndexType ind = this->GetIndex();
170 m_SpanEndOffset = this->m_Offset + static_cast<OffsetValueType>(this->m_Region.GetSize()[0]) -
171 (ind[0] - this->m_Region.GetIndex()[0]);
172 m_SpanBeginOffset = m_SpanEndOffset - static_cast<OffsetValueType>(this->m_Region.GetSize()[0]);
173 }
174
182 {
184
185 IndexType ind = this->GetIndex();
186 m_SpanEndOffset = this->m_Offset + static_cast<OffsetValueType>(this->m_Region.GetSize()[0]) -
187 (ind[0] - this->m_Region.GetIndex()[0]);
188 m_SpanBeginOffset = m_SpanEndOffset - static_cast<OffsetValueType>(this->m_Region.GetSize()[0]);
189 }
190
193 void
195 {
197
198 // reset the span offsets
200 m_SpanEndOffset = this->m_BeginOffset + static_cast<OffsetValueType>(this->m_Region.GetSize()[0]);
201 }
202
205 void
207 {
209
210 // reset the span offsets
212 m_SpanBeginOffset = m_SpanEndOffset - static_cast<OffsetValueType>(this->m_Region.GetSize()[0]);
213 }
214
218 void
219 SetIndex(const IndexType & ind) override
220 {
222 m_SpanEndOffset = this->m_Offset + static_cast<OffsetValueType>(this->m_Region.GetSize()[0]) -
223 (ind[0] - this->m_Region.GetIndex()[0]);
224 m_SpanBeginOffset = m_SpanEndOffset - static_cast<OffsetValueType>(this->m_Region.GetSize()[0]);
225 }
226
234 Self &
236 {
237 if (++this->m_Offset >= m_SpanEndOffset)
238 {
239 this->Increment();
240 }
241 return *this;
242 }
243
251 Self &
253 {
254 if (--this->m_Offset < m_SpanBeginOffset)
255 {
256 this->Decrement();
257 }
258 return *this;
259 }
260
261protected:
262 OffsetValueType m_SpanBeginOffset{}; // one pixel before the beginning of the span
263 // (row)
264 OffsetValueType m_SpanEndOffset{}; // one pixel past the end of the span (row)
265
266private:
267 void
268 Increment(); // advance in a direction other than the fastest moving
269
270 void
271 Decrement(); // go back in a direction other than the fastest moving
272};
273} // end namespace itk
274
275#ifndef ITK_MANUAL_INSTANTIATION
276# include "itkImageRegionConstIterator.hxx"
277#endif
278
279#endif
typename TImage::IndexType IndexType
typename TImage::PixelContainer PixelContainer
virtual void SetIndex(const IndexType &ind)
typename TImage::SizeType SizeType
typename TImage::OffsetType OffsetType
const IndexType GetIndex() const
typename TImage::InternalPixelType InternalPixelType
typename PixelContainer::Pointer PixelContainerPointer
typename TImage::AccessorType AccessorType
typename TImage::RegionType RegionType
Self & operator=(const Self &it)
typename TImage::PixelType PixelType
static constexpr unsigned int ImageIteratorDimension
A multi-dimensional iterator templated over image type.
ImageRegionConstIterator(const ImageConstIterator< TImage > &it)
typename ImageType::IndexType IndexType
void SetIndex(const IndexType &ind) override
ImageRegionConstIterator(const ImageType *ptr, const RegionType &region)
typename ImageType::RegionType RegionType
ImageRegionConstIterator(const ImageIterator< TImage > &it)
ImageConstIterator< TImage > Superclass
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....
long OffsetValueType
Definition itkIntTypes.h:97