ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkShapedFloodFilledFunctionConditionalConstIterator.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 itkShapedFloodFilledFunctionConditionalConstIterator_h
19#define itkShapedFloodFilledFunctionConditionalConstIterator_h
20
21#include <queue>
22#include <vector>
23
24#include "itkSize.h"
27
28namespace itk
29{
42template <typename TImage, typename TFunction>
44{
45public:
48
50 using FunctionType = TFunction;
51
53 using FunctionInputType = typename TFunction::InputType;
54
56 using IndexType = typename TImage::IndexType;
57
59 using SeedsContainerType = typename std::vector<IndexType>;
60
62 using OffsetType = typename TImage::OffsetType;
63
65 using SizeType = typename TImage::SizeType;
66
68 using RegionType = typename TImage::RegionType;
69
71 using ImageType = TImage;
72
74 using InternalPixelType = typename TImage::InternalPixelType;
75
77 using PixelType = typename TImage::PixelType;
78
81
86 static constexpr unsigned int NDimensions = TImage::ImageDimension;
87
92 FunctionType * fnPtr,
93 IndexType startIndex);
94
99 FunctionType * fnPtr,
100 std::vector<IndexType> & startIndex);
101
106
111 void
113
115 void
117
119 void
121
124
126 bool
127 IsPixelIncluded(const IndexType & index) const override = 0;
128
131 Self &
132 operator=(const Self & it)
133 {
134 this->m_Image = it.m_Image; // copy the smart pointer
135 this->m_Region = it.m_Region;
136 return *this;
137 }
138
140 static unsigned int
142 {
143 return TImage::ImageDimension;
144 }
145
150 const IndexType
151 GetIndex() override
152 {
153 return m_IndexStack.front();
154 }
155
157 const PixelType
158 Get() const override
159 {
160 return this->m_Image->GetPixel(m_IndexStack.front());
161 }
162
164 bool
165 IsAtEnd() const override
166 {
167 return this->m_IsAtEnd;
168 }
169
171 void
172 AddSeed(const IndexType seed)
173 {
174 m_Seeds.push_back(seed);
175 }
176
178 void
180 {
181 m_Seeds.clear();
182 }
183
186 void
188 {
189 // Clear the queue
190 while (!m_IndexStack.empty())
191 {
192 m_IndexStack.pop();
193 }
194
195 this->m_IsAtEnd = true;
196 // Initialize the temporary image
197 m_TempPtr->FillBuffer(typename TTempImage::PixelType{});
198
199 for (unsigned int i = 0; i < m_Seeds.size(); ++i)
200 {
201 if (this->m_Image->GetBufferedRegion().IsInside(m_Seeds[i]) && this->IsPixelIncluded(m_Seeds[i]))
202 {
203 // Push the seed onto the queue
204 m_IndexStack.push(m_Seeds[i]);
205
206 // Obviously, we're at the beginning
207 this->m_IsAtEnd = false;
208
209 // Mark the start index in the temp image as inside the
210 // function, neighbor check incomplete
211 m_TempPtr->SetPixel(m_Seeds[i], 2);
212 }
213 }
214 }
215
217 void
218 operator++() override
219 {
220 this->DoFloodStep();
221 }
222
223 void
225
228 {
229 return m_Function;
230 }
231
236 void
237 SetFullyConnected(const bool _arg);
238
239 bool
241
242 itkBooleanMacro(FullyConnected);
243
244 virtual const SeedsContainerType &
245 GetSeeds() const
246 {
247 return m_Seeds;
248 }
249
250protected: // made protected so other iterators can access
253
260
262
265
267 typename ImageType::PointType m_ImageOrigin{};
268
270 typename ImageType::SpacingType m_ImageSpacing{};
271
274
277
279 std::queue<IndexType> m_IndexStack{};
280
283
287
290
297};
298} // end namespace itk
299
300#ifndef ITK_MANUAL_INSTANTIATION
301# include "itkShapedFloodFilledFunctionConditionalConstIterator.hxx"
302#endif
303
304#endif
Templated n-dimensional image class.
Definition itkImage.h:89
Iterates over a flood-filled spatial function with read-only access to pixels.
ShapedFloodFilledFunctionConditionalConstIterator(const ImageType *imagePtr, FunctionType *fnPtr)
ShapedFloodFilledFunctionConditionalConstIterator(const ImageType *imagePtr, FunctionType *fnPtr, std::vector< IndexType > &startIndex)
bool IsPixelIncluded(const IndexType &index) const override=0
ShapedFloodFilledFunctionConditionalConstIterator(const ImageType *imagePtr, FunctionType *fnPtr, IndexType startIndex)
A neighborhood iterator which can take on an arbitrary shape.
Implements transparent reference counting.
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....