ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkReflectiveImageRegionConstIterator.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 itkReflectiveImageRegionConstIterator_h
19#define itkReflectiveImageRegionConstIterator_h
20
22
23namespace itk
24{
53template <typename TImage>
54class ITK_TEMPLATE_EXPORT ReflectiveImageRegionConstIterator : public ImageConstIteratorWithIndex<TImage>
55{
56public:
60
65 using IndexType = typename TImage::IndexType;
66
71 using ImageType = TImage;
72
77 using PixelContainer = typename TImage::PixelContainer;
78 using PixelContainerPointer = typename PixelContainer::Pointer;
79
85 using RegionType = typename TImage::RegionType;
86 using SizeType = typename TImage::SizeType;
87 using SizeValueType = typename TImage::SizeValueType;
88
91 using OffsetType = typename TImage::OffsetType;
92 using OffsetValueType = typename OffsetType::OffsetValueType;
93
96
99
102 ReflectiveImageRegionConstIterator(TImage * ptr, const RegionType & region);
103
107
116
119 Self &
120 operator=(const Self & it);
121
122 bool
123 IsReflected(unsigned int) const;
124
132 Self &
134
136 void
138
140 bool
141 IsAtBegin() const
142 {
143 return !this->m_Remaining;
144 }
145
148 void
150 {
151 m_BeginOffset = offset;
152 }
153
156 void
157 SetEndOffset(const OffsetType & offset)
158 {
159 m_EndOffset = offset;
160 }
161
164 OffsetType
166 {
167 return m_BeginOffset;
168 }
169
172 OffsetType
174 {
175 return m_EndOffset;
176 }
177
179 void
181
182private:
183 bool m_IsFirstPass[TImage::ImageDimension]{};
186};
187} // end namespace itk
188
189#ifndef ITK_MANUAL_INSTANTIATION
190# include "itkReflectiveImageRegionConstIterator.hxx"
191#endif
192
193#endif
~ReflectiveImageRegionConstIterator() override=default
ReflectiveImageRegionConstIterator(const Self &it)
ReflectiveImageRegionConstIterator(const ImageConstIteratorWithIndex< TImage > &it)
void FillOffsets(const OffsetValueType &value)
ReflectiveImageRegionConstIterator(TImage *ptr, const RegionType &region)
bool IsReflected(unsigned int) const
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....