ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkWatershedSegmentTable.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 itkWatershedSegmentTable_h
19#define itkWatershedSegmentTable_h
20
21
22#include "itkDataObject.h"
23#include <list>
25
26namespace itk
27{
28namespace watershed
29{
47template <typename TScalar>
48class ITK_TEMPLATE_EXPORT SegmentTable : public DataObject
49{
50public:
56 using ScalarType = TScalar;
57
58 itkNewMacro(Self);
59 itkOverrideGetNameOfClassMacro(SegmentTable);
60
64 {
65 edge_pair_t() = default;
67 : label(l)
68 , height(s)
69 {}
70
73
75 bool
76 operator<(const edge_pair_t & o) const
77 {
78 if (this->height < o.height)
79 {
80 return true;
81 }
82
83 return false;
84 }
85 };
86
89 using edge_list_t = std::list<edge_pair_t>;
90
97
99 using HashMapType = std::unordered_map<IdentifierType, segment_t>;
100 using Iterator = typename HashMapType::iterator;
101 using ConstIterator = typename HashMapType::const_iterator;
102 using ValueType = typename HashMapType::value_type;
103 using DataType = typename HashMapType::mapped_type;
104
106 bool
107 Add(IdentifierType a, const segment_t & t);
108
113 void
114 PruneEdgeLists(ScalarType maximum_saliency);
115
118 segment_t *
120 {
121 auto result = m_HashMap.find(a);
122
123 if (result == m_HashMap.end())
124 {
125 return nullptr;
126 }
127
128 return &(result->second);
129 }
130
133 const segment_t *
134 Lookup(const IdentifierType a) const
135 {
136 ConstIterator result = m_HashMap.find(a);
137
138 if (result == m_HashMap.end())
139 {
140 return 0;
141 }
142
143 return &(result->second);
144 }
145
148 bool
149 IsEntry(const IdentifierType a) const
150 {
151 if (m_HashMap.find(a) == m_HashMap.end())
152 {
153 return false;
154 }
155
156 return true;
157 }
158
160 void
162 {
163 m_HashMap.erase(a);
164 }
165
167 void
169 {
170 m_HashMap.clear();
171 }
172
175 bool
176 Empty() const
177 {
178 return m_HashMap.empty();
179 }
180
183 void
185
187 typename HashMapType::size_type
188 Size() const
189 {
190 return m_HashMap.size();
191 }
192
194 // void Merge(const IdentifierType from, const IdentifierType to);
195
198 Iterator
200 {
201 return m_HashMap.begin();
202 }
203
206 Iterator
208 {
209 return m_HashMap.end();
210 }
211
214 ConstIterator
215 Begin() const
216 {
217 return m_HashMap.begin();
218 }
219
222 ConstIterator
223 End() const
224 {
225 return m_HashMap.end();
226 }
227
229 unsigned int
231 {
232 return sizeof(segment_t);
233 }
234
235 // void PrintHashTable() const;
236
240 void
242 {
243 m_MaximumDepth = s;
244 this->Modified();
245 }
246
247 ScalarType
249 {
250 return m_MaximumDepth;
251 }
252
253
257 void
258 Copy(const Self & o)
259 {
262 }
263
264protected:
266 : m_MaximumDepth(0)
267 {}
268 ~SegmentTable() override = default;
269
271
273
274private:
275 void
277 {}
278};
279} // end namespace watershed
280} // end namespace itk
281
282#ifndef ITK_MANUAL_INSTANTIATION
283# include "itkWatershedSegmentTable.hxx"
284#endif
285
286#endif
virtual void Modified() const
Implements transparent reference counting.
const segment_t * Lookup(const IdentifierType a) const
void PruneEdgeLists(ScalarType maximum_saliency)
~SegmentTable() override=default
segment_t * Lookup(const IdentifierType a)
void Erase(const IdentifierType a)
std::unordered_map< IdentifierType, segment_t > HashMapType
bool Add(IdentifierType a, const segment_t &t)
typename HashMapType::const_iterator ConstIterator
bool IsEntry(const IdentifierType a) const
HashMapType::size_type Size() const
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....
SizeValueType IdentifierType
Definition itkIntTypes.h:90