ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkConstSliceIterator.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 itkConstSliceIterator_h
19#define itkConstSliceIterator_h
20
21#include "itkMacro.h"
22#include "itkIntTypes.h"
23#include <valarray>
24
25namespace itk
26{
49template <typename TPixel, typename TContainer>
51{
52public:
54 ConstSliceIterator(const TContainer * n, std::slice s)
56 , m_Slice(s)
57 {}
58
62 {
63 ConstSliceIterator ans = *this;
64
65 ans.m_Pos = 0;
66 return ans;
67 }
68
73 {
74 ConstSliceIterator ans = *this;
75
76 ans.m_Pos = static_cast<SizeValueType>(m_Slice.size());
77 return ans;
78 }
79
83 {
84 ++m_Pos;
85 return *this;
86 }
87
91 {
92 ConstSliceIterator ans = *this;
93
94 ++m_Pos;
95 return ans;
96 }
97
100 const TPixel &
102 {
103 return this->Loc(m_Pos = n);
104 }
105
108 const TPixel &
110 {
111 return Loc(m_Pos);
112 }
113
116 bool
117 operator==(const ConstSliceIterator & orig) const
118 {
119 return orig.m_Pos == this->m_Pos && orig.m_Slice.stride() == this->m_Slice.stride() &&
120 orig.m_Slice.start() == this->m_Slice.start();
121 }
122
124
128 bool
129 operator<(const ConstSliceIterator & orig) const
130 {
131 return this->m_Pos < orig.m_Pos && this->m_Slice.stride() == orig.m_Slice.stride() &&
132 this->m_Slice.start() == orig.m_Slice.start();
133 }
134
135private:
137 const TPixel &
139 {
140 return (*m_ContainerPointer)[static_cast<SizeValueType>(m_Slice.start() + n * m_Slice.stride())];
141 }
142
144 const TContainer * m_ContainerPointer;
145
148
150 std::slice m_Slice;
151};
152} // end namespace itk
153
154#endif
A flexible iterator for ITK containers(i.e. itk::Neighborhood) that support pixel access through oper...
const TPixel & operator[](SizeValueType n)
const TPixel & Loc(SizeValueType n) const
bool operator==(const ConstSliceIterator &orig) const
ConstSliceIterator operator++(int)
bool operator<(const ConstSliceIterator &orig) const
ConstSliceIterator operator++()
const TContainer * m_ContainerPointer
ITK_UNEQUAL_OPERATOR_MEMBER_FUNCTION(ConstSliceIterator)
ConstSliceIterator(const TContainer *n, std::slice s)
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....
unsigned long SizeValueType
Definition itkIntTypes.h:86