ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkLevelSetContainerBase.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 itkLevelSetContainerBase_h
20#define itkLevelSetContainerBase_h
21
22#include <map>
23#include "itkObject.h"
24#include "itkObjectFactory.h"
27
28
29namespace itk
30{
41template <typename TIdentifier, typename TLevelSet>
42class ITK_TEMPLATE_EXPORT LevelSetContainerBase : public Object
43{
44public:
45 ITK_DISALLOW_COPY_AND_MOVE(LevelSetContainerBase);
46
51
53 itkOverrideGetNameOfClassMacro(LevelSetContainerBase);
56 using LevelSetType = TLevelSet;
57 using LevelSetPointer = typename LevelSetType::Pointer;
58 using InputIndexType = typename LevelSetType::InputType;
59 using OutputType = typename LevelSetType::OutputType;
60 using OutputRealType = typename LevelSetType::OutputRealType;
61 using GradientType = typename LevelSetType::GradientType;
62 using HessianType = typename LevelSetType::HessianType;
63 using LevelSetDataType = typename LevelSetType::LevelSetDataType;
66 using LevelSetIdentifierType = TIdentifier;
67
68 using LevelSetContainerType = std::map<LevelSetIdentifierType, LevelSetPointer>;
69 using LevelSetContainerConstIteratorType = typename LevelSetContainerType::const_iterator;
70 using LevelSetContainerIteratorType = typename LevelSetContainerType::iterator;
71
75 static constexpr unsigned int Dimension = LevelSetType::Dimension;
77 using IdListType = std::list<LevelSetIdentifierType>;
78 using IdListIterator = typename IdListType::iterator;
79 using IdListConstIterator = typename IdListType::const_iterator;
82
84
85 using LevelSetPairType = std::pair<LevelSetIdentifierType, LevelSetPointer>;
86
88 using LevelSetDomainType = typename DomainMapImageFilterType::LevelSetDomain;
89
90 using DomainContainerType = std::map<LevelSetIdentifierType, LevelSetDomainType>;
91 using DomainIteratorType = typename DomainContainerType::iterator;
92
94 class Iterator;
95 friend class Iterator;
96
102 {
103 public:
104 ConstIterator() = default;
108 ~ConstIterator() = default;
111 {}
112
115 {
116 return *this;
117 }
120 {
121 return this;
122 }
125 {
126 ++m_Iterator;
127 return *this;
128 }
131 {
132 ConstIterator tmp(*this);
133 ++(*this);
134 return tmp;
135 }
138 {
139 --m_Iterator;
140 return *this;
141 }
144 {
145 ConstIterator tmp(*this);
146 --(*this);
147 return tmp;
148 }
149 bool
150 operator==(const Iterator & it) const
151 {
152 return (m_Iterator == it.m_Iterator);
153 }
154
156
157 bool
158 operator==(const ConstIterator & it) const
159 {
160 return (m_Iterator == it.m_Iterator);
161 }
162
164
167 {
168 return m_Iterator->first;
169 }
170
173 {
174 return m_Iterator->second;
175 }
176
177 private:
179 friend class Iterator;
180 };
181
186 {
187 public:
188 Iterator() = default;
194 {}
195 ~Iterator() = default;
196
197 Iterator &
199 {
200 return *this;
201 }
202 Iterator *
204 {
205 return this;
206 }
207 Iterator &
209 {
210 ++m_Iterator;
211 return *this;
212 }
215 {
216 Iterator tmp(*this);
217 ++(*this);
218 return tmp;
219 }
220 Iterator &
222 {
223 --m_Iterator;
224 return *this;
225 }
228 {
229 Iterator tmp(*this);
230 --(*this);
231 return tmp;
232 }
233 bool
234 operator==(const Iterator & it) const
235 {
236 return (m_Iterator == it.m_Iterator);
237 }
238
240
241 bool
242 operator==(const ConstIterator & it) const
243 {
244 return (m_Iterator == it.m_Iterator);
245 }
246
248
251 {
252 return m_Iterator->first;
253 }
254
257 {
258 return m_Iterator->second;
259 }
260
261 private:
263 friend class ConstIterator;
264 };
265
268 Iterator
270
271 ConstIterator
272 Begin() const;
273 ConstIterator
274 End() const;
275
278 Size() const;
279
286
296 bool
297 AddLevelSet(const LevelSetIdentifierType & iId, LevelSetType * iLevelSet, const bool iForce = true);
298
304 bool
306
309 itkSetConstObjectMacro(Heaviside, HeavisideType);
310 itkGetConstObjectMacro(Heaviside, HeavisideType);
314 itkSetObjectMacro(DomainMapFilter, DomainMapImageFilterType);
315 itkGetModifiableObjectMacro(DomainMapFilter, DomainMapImageFilterType);
318 bool
320
321protected:
324
326 ~LevelSetContainerBase() override = default;
327
330 void
332
333private:
337};
338} // namespace itk
339
340#ifndef ITK_MANUAL_INSTANTIATION
341# include "itkLevelSetContainerBase.hxx"
342#endif
343
344#endif // itkLevelSetContainerBase_h
Base class of the Heaviside function.
Templated n-dimensional image class.
Definition itkImage.h:89
ConstIterator(const LevelSetContainerConstIteratorType &it)
bool operator==(const ConstIterator &it) const
LevelSetContainerConstIteratorType m_Iterator
bool operator==(const Iterator &it) const
Iterator(const LevelSetContainerIteratorType &it)
ITK_UNEQUAL_OPERATOR_MEMBER_FUNCTION(ConstIterator)
bool operator==(const ConstIterator &it) const
LevelSetIdentifierType GetIdentifier() const
LevelSetPointer GetLevelSet(const LevelSetIdentifierType &iId) const
Get the level set function given its id.
typename DomainMapImageFilterType::LevelSetDomain LevelSetDomainType
void SetContainer(const LevelSetContainerType &iContainer)
LevelSetContainerBase()=default
Default Constructor.
typename LevelSetContainerType::const_iterator LevelSetContainerConstIteratorType
HeavisideStepFunctionBase< OutputRealType, OutputRealType > HeavisideType
std::map< LevelSetIdentifierType, LevelSetPointer > LevelSetContainerType
LevelSetIdentifierType Size() const
bool AddLevelSet(const LevelSetIdentifierType &iId, LevelSetType *iLevelSet, const bool iForce=true)
Add one level set function given its id.
bool RemoveLevelSet(const LevelSetIdentifierType &iId)
Remove one level set function given its id.
std::map< LevelSetIdentifierType, LevelSetDomainType > DomainContainerType
const LevelSetContainerType & GetContainer() const
std::pair< LevelSetIdentifierType, LevelSetPointer > LevelSetPairType
typename DomainMapImageFilterType::Pointer DomainMapImageFilterPointer
typename LevelSetContainerType::iterator LevelSetContainerIteratorType
LevelSetDomainMapImageFilter< IdListImageType, CacheImageType > DomainMapImageFilterType
ConstIterator Begin() const
~LevelSetContainerBase() override=default
Default Destructor.
ConstIterator End() const
typename LevelSetContainerType::const_iterator LevelSetContainerConstIteratorType
std::map< LevelSetIdentifierType, LevelSetPointer > LevelSetContainerType
Implements transparent reference counting.
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....