ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkFloodFilledFunctionConditionalConstIterator.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 itkFloodFilledFunctionConditionalConstIterator_h
19#define itkFloodFilledFunctionConditionalConstIterator_h
20
21#include <queue>
22#include <vector>
23
24#include "itkSize.h"
26#include "itkImage.h"
27
28namespace itk
29{
38template <typename TImage, typename TFunction>
40{
41public:
46 using FunctionType = TFunction;
49 using FunctionInputType = typename TFunction::InputType;
52 using IndexType = typename TImage::IndexType;
55 using SeedsContainerType = typename std::vector<IndexType>;
58 using SizeType = typename TImage::SizeType;
61 using RegionType = typename TImage::RegionType;
64 using ImageType = TImage;
67 using InternalPixelType = typename TImage::InternalPixelType;
70 using PixelType = typename TImage::PixelType;
71
76 static constexpr unsigned int NDimensions = TImage::ImageDimension;
77
82
87 FunctionType * fnPtr,
88 std::vector<IndexType> & startIndex);
89
94
99 void
101
103 void
105
107 void
109
112
114 bool
115 IsPixelIncluded(const IndexType & index) const override = 0;
116
119 Self &
120 operator=(const Self & it)
121 {
122 if (this != &it)
123 {
124 this->m_Image = it.m_Image; // copy the smart pointer
125 this->m_Region = it.m_Region;
126 this->m_Function = it.m_Function;
128 this->m_Seeds = it.m_Seeds;
129 this->m_ImageOrigin = it.m_ImageOrigin;
131 this->m_ImageRegion = it.m_ImageRegion;
132 this->m_IndexStack = it.m_IndexStack;
136 }
137 return *this;
138 }
139
141 static unsigned int
143 {
144 return TImage::ImageDimension;
145 }
146
151 const IndexType
152 GetIndex() override
153 {
154 return m_IndexStack.front();
155 }
156
158 const PixelType
159 Get() const override
160 {
161 return this->m_Image->GetPixel(m_IndexStack.front());
162 }
163
165 bool
166 IsAtEnd() const override
167 {
168 return this->m_IsAtEnd;
169 }
170
172 void
173 AddSeed(const IndexType & seed)
174 {
175 m_Seeds.push_back(seed);
176 }
177
179 virtual const SeedsContainerType &
180 GetSeeds() const
181 {
182 return m_Seeds;
183 }
184
186 void
188 {
189 m_Seeds.clear();
190 }
191
194 void
196 {
197 // Clear the queue
198 while (!m_IndexStack.empty())
199 {
200 m_IndexStack.pop();
201 }
202
203 this->m_IsAtEnd = true;
204 // Initialize the temporary image
205 m_TemporaryPointer->FillBuffer(typename TTempImage::PixelType{});
206
207 for (unsigned int i = 0; i < m_Seeds.size(); ++i)
208 {
209 if (this->m_Image->GetBufferedRegion().IsInside(m_Seeds[i]) && this->IsPixelIncluded(m_Seeds[i]))
210 {
211 // Push the seed onto the queue
212 m_IndexStack.push(m_Seeds[i]);
213
214 // Obviously, we're at the beginning
215 this->m_IsAtEnd = false;
216
217 // Mark the start index in the temp image as inside the
218 // function, neighbor check incomplete
219 m_TemporaryPointer->SetPixel(m_Seeds[i], 2);
220 }
221 }
222 }
223
225 void
226 operator++() override
227 {
228 this->DoFloodStep();
229 }
230
231 void
233
236 {
237 return m_Function;
238 }
239
240protected: // made protected so other iterators can access
243
251
254
256 typename ImageType::PointType m_ImageOrigin{};
257
259 typename ImageType::SpacingType m_ImageSpacing{};
260
263
265 std::queue<IndexType> m_IndexStack{};
266
269
273
276};
277} // end namespace itk
278
279#ifndef ITK_MANUAL_INSTANTIATION
280# include "itkFloodFilledFunctionConditionalConstIterator.hxx"
281#endif
282
283#endif
FloodFilledFunctionConditionalConstIterator(const ImageType *imagePtr, FunctionType *fnPtr, std::vector< IndexType > &startIndex)
FloodFilledFunctionConditionalConstIterator(const ImageType *imagePtr, FunctionType *fnPtr)
FloodFilledFunctionConditionalConstIterator(const ImageType *imagePtr, FunctionType *fnPtr, IndexType startIndex)
~FloodFilledFunctionConditionalConstIterator() override=default
bool IsPixelIncluded(const IndexType &index) const override=0
Templated n-dimensional image class.
Definition itkImage.h:89
Implements transparent reference counting.
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....