ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkLevelSetEquationContainer.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
19#ifndef itkLevelSetEquationContainer_h
20#define itkLevelSetEquationContainer_h
21
22#include "itkObject.h"
23#include "itkObjectFactory.h"
24
25namespace itk
26{
57template <typename TTermContainer>
58class ITK_TEMPLATE_EXPORT LevelSetEquationContainer : public Object
59{
60public:
61 ITK_DISALLOW_COPY_AND_MOVE(LevelSetEquationContainer);
62
67
69 itkNewMacro(Self);
70
72 itkOverrideGetNameOfClassMacro(LevelSetEquationContainer);
73
74 using TermContainerType = TTermContainer;
75 using TermContainerPointer = typename TermContainerType::Pointer;
76
77 using InputImageType = typename TermContainerType::InputImageType;
78 using InputImagePointer = typename TermContainerType::InputImagePointer;
79
80 using LevelSetOutputRealType = typename TermContainerType::LevelSetOutputRealType;
81 using LevelSetInputIndexType = typename TermContainerType::LevelSetInputIndexType;
82
83 using LevelSetIdentifierType = typename TermContainerType::LevelSetIdentifierType;
84 using LevelSetContainerType = typename TermContainerType::LevelSetContainerType;
85 using LevelSetContainerPointer = typename TermContainerType::LevelSetContainerPointer;
86
88 void
90
94
96 void
98
100 void
102 const LevelSetOutputRealType & oldValue,
103 const LevelSetOutputRealType & newValue);
104
106 void
108
113
116 itkSetObjectMacro(Input, InputImageType);
117 itkGetModifiableObjectMacro(Input, InputImageType);
120 itkGetModifiableObjectMacro(LevelSetContainer, LevelSetContainerType);
121
122protected:
123 using MapContainerType = std::map<LevelSetIdentifierType, TermContainerPointer>;
124 using MapContainerIterator = typename MapContainerType::iterator;
125 using MapContainerConstIterator = typename MapContainerType::const_iterator;
126
127public:
128 class Iterator;
129 friend class Iterator;
130
132 {
133 public:
134 ConstIterator() = default;
138 ~ConstIterator() = default;
141 {}
144 {
145 return *this;
146 }
149 {
150 return this;
151 }
154 {
155 ++m_Iterator;
156 return *this;
157 }
160 {
161 ConstIterator tmp(*this);
162 ++(*this);
163 return tmp;
164 }
167 {
168 --m_Iterator;
169 return *this;
170 }
173 {
174 ConstIterator tmp(*this);
175 --(*this);
176 return tmp;
177 }
178 bool
179 operator==(const Iterator & it) const
180 {
181 return (m_Iterator == it.m_Iterator);
182 }
183
185
186 bool
187 operator==(const ConstIterator & it) const
188 {
189 return (m_Iterator == it.m_Iterator);
190 }
191
193
196 {
197 return m_Iterator->first;
198 }
199
202 {
203 return m_Iterator->second;
204 }
205
206 private:
208 friend class Iterator;
209 };
210
212 {
213 public:
214 Iterator() = default;
216 : m_Iterator(it)
217 {}
220 {}
221 ~Iterator() = default;
222
223 Iterator &
225 {
226 return *this;
227 }
228 Iterator *
230 {
231 return this;
232 }
233
234 Iterator &
236 {
237 ++m_Iterator;
238 return *this;
239 }
242 {
243 Iterator tmp(*this);
244 ++(*this);
245 return tmp;
246 }
247 Iterator &
249 {
250 --m_Iterator;
251 return *this;
252 }
255 {
256 Iterator tmp(*this);
257 --(*this);
258 return tmp;
259 }
260
261 bool
262 operator==(const Iterator & it) const
263 {
264 return (m_Iterator == it.m_Iterator);
265 }
266
268
269 bool
270 operator==(const ConstIterator & it) const
271 {
272 return (m_Iterator == it.m_Iterator);
273 }
274
276
279 {
280 return m_Iterator->first;
281 }
282
285 {
286 return m_Iterator->second;
287 }
288
289 private:
291 friend class ConstIterator;
292 };
293
298
300 Begin() const;
302 End() const;
303
304protected:
306 ~LevelSetEquationContainer() override = default;
307
311};
312} // namespace itk
313
314#ifndef ITK_MANUAL_INSTANTIATION
315# include "itkLevelSetEquationContainer.hxx"
316#endif
317
318#endif // itkLevelSetEquationContainer_h
Container of Level-Sets.
typename MapContainerType::iterator MapContainerIterator
typename TermContainerType::LevelSetContainerType LevelSetContainerType
typename TermContainerType::Pointer TermContainerPointer
typename TermContainerType::LevelSetContainerPointer LevelSetContainerPointer
void UpdatePixel(const LevelSetInputIndexType &iP, const LevelSetOutputRealType &oldValue, const LevelSetOutputRealType &newValue)
ConstIterator Begin() const
typename TermContainerType::InputImageType InputImageType
typename TermContainerType::LevelSetIdentifierType LevelSetIdentifierType
std::map< LevelSetIdentifierType, TermContainerPointer > MapContainerType
typename MapContainerType::const_iterator MapContainerConstIterator
ConstIterator End() const
typename TermContainerType::LevelSetInputIndexType LevelSetInputIndexType
void AddEquation(const LevelSetIdentifierType &iId, TermContainerType *iEquation)
~LevelSetEquationContainer() override=default
typename TermContainerType::InputImagePointer InputImagePointer
TermContainerType * GetEquation(const LevelSetIdentifierType &iId) const
typename TermContainerType::LevelSetOutputRealType LevelSetOutputRealType
LevelSetOutputRealType ComputeCFLContribution() const
Implements transparent reference counting.
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....