ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkImageScanlineConstIterator.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 itkImageScanlineConstIterator_h
19#define itkImageScanlineConstIterator_h
20
21#include "itkImageIterator.h"
22#include <type_traits> // For remove_const_t.
23
24namespace itk
25{
63template <typename TImage>
64class ITK_TEMPLATE_EXPORT ImageScanlineConstIterator : public ImageConstIterator<TImage>
65{
66public:
70
76
81
83 using typename Superclass::IndexType;
84 using typename Superclass::SizeType;
85 using typename Superclass::OffsetType;
86 using typename Superclass::RegionType;
87 using typename Superclass::ImageType;
88 using typename Superclass::PixelContainer;
90 using typename Superclass::InternalPixelType;
91 using typename Superclass::PixelType;
92 using typename Superclass::AccessorType;
93
95 itkOverrideGetNameOfClassMacro(ImageScanlineConstIterator);
96
104
107 ImageScanlineConstIterator(const TImage * ptr, const RegionType & region)
108 : ImageConstIterator<TImage>(ptr, region)
109 {
111 m_SpanEndOffset = this->m_BeginOffset + static_cast<OffsetValueType>(this->m_Region.GetSize()[0]);
112 }
113
121 {
123
124 IndexType ind = this->GetIndex();
125 m_SpanEndOffset = this->m_Offset + static_cast<OffsetValueType>(this->m_Region.GetSize()[0]) -
126 (ind[0] - this->m_Region.GetIndex()[0]);
127 m_SpanBeginOffset = m_SpanEndOffset - static_cast<OffsetValueType>(this->m_Region.GetSize()[0]);
128 }
129
137 {
139
140 IndexType ind = this->GetIndex();
141 m_SpanEndOffset = this->m_Offset + static_cast<OffsetValueType>(this->m_Region.GetSize()[0]) -
142 (ind[0] - this->m_Region.GetIndex()[0]);
143 m_SpanBeginOffset = m_SpanEndOffset - static_cast<OffsetValueType>(this->m_Region.GetSize()[0]);
144 }
145
148 void
150 {
152
153 // reset the span offsets
155 m_SpanEndOffset = this->m_BeginOffset + static_cast<OffsetValueType>(this->m_Region.GetSize()[0]);
156 }
157
163 void
165 {
167
168 // reset the span offsets
170 m_SpanBeginOffset = m_SpanEndOffset - static_cast<OffsetValueType>(this->m_Region.GetSize()[0]);
171 }
172
180 void
182 {
184 }
185
194 void
196 {
198 }
199
202 inline bool
204 {
205 return this->m_Offset >= m_SpanEndOffset;
206 }
207
208
214 void
215 SetIndex(const IndexType & ind) override
216 {
218 m_SpanEndOffset = this->m_Offset + static_cast<OffsetValueType>(this->m_Region.GetSize()[0]) -
219 (ind[0] - this->m_Region.GetIndex()[0]);
220 m_SpanBeginOffset = m_SpanEndOffset - static_cast<OffsetValueType>(this->m_Region.GetSize()[0]);
221 }
222
231 void
233
241 Self &
243 {
244 itkAssertInDebugAndIgnoreInReleaseMacro(!this->IsAtEndOfLine());
245 ++this->m_Offset;
246 return *this;
247 }
248
252 Self &
254 {
255 itkAssertInDebugAndIgnoreInReleaseMacro(!this->IsAtEndOfLine());
256 --this->m_Offset;
257 return *this;
258 }
259
260protected:
261 OffsetValueType m_SpanBeginOffset{}; // one pixel the beginning of the scanline
262 OffsetValueType m_SpanEndOffset{}; // one pixel past the end of the scanline
263};
264
265// Deduction guide for class template argument deduction (CTAD).
266template <typename TImage>
267ImageScanlineConstIterator(SmartPointer<TImage>, const typename TImage::RegionType &)
269
270} // end namespace itk
271
272#ifndef ITK_MANUAL_INSTANTIATION
273# include "itkImageScanlineConstIterator.hxx"
274#endif
275
276#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.
A multi-dimensional iterator templated over image type that walks a region of pixels,...
typename InputImageType::IndexType IndexType
ImageScanlineConstIterator(const ImageConstIterator< TImage > &it)
typename InputImageType::RegionType RegionType
ImageScanlineConstIterator(const ImageIterator< TImage > &it)
ImageScanlineConstIterator(const TImage *ptr, const RegionType &region)
void SetIndex(const IndexType &ind) override
Implements transparent reference counting.
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....
ImageScanlineConstIterator(SmartPointer< TImage >, const typename TImage::RegionType &) -> ImageScanlineConstIterator< std::remove_const_t< TImage > >
long OffsetValueType
Definition itkIntTypes.h:97