ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkWatershedSegmentTree.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 itkWatershedSegmentTree_h
19#define itkWatershedSegmentTree_h
20
21#include "itkProcessObject.h"
22#include <deque>
23#include <functional>
24
25namespace itk
26{
27namespace watershed
28{
47template <typename TScalar>
48class ITK_TEMPLATE_EXPORT SegmentTree : public DataObject
49{
50public:
51 ITK_DISALLOW_COPY_AND_MOVE(SegmentTree);
52
59 itkNewMacro(Self);
60 itkOverrideGetNameOfClassMacro(SegmentTree);
61 using ScalarType = TScalar;
62
73
75 using DequeType = std::deque<merge_t>;
76 using Iterator = typename DequeType::iterator;
77 using ConstIterator = typename DequeType::const_iterator;
78 using ValueType = typename DequeType::value_type;
79
82 {
83 merge_comp() = default;
84 bool
85 operator()(const merge_t & a, const merge_t & b)
86 {
87 return b.saliency < a.saliency;
88 }
89 };
90
92 struct sort_comp
93 {
94 bool
95 operator()(const merge_t & a, const merge_t & b)
96 {
97 return a.saliency < b.Saliency;
98 }
99 };
100
102 typename DequeType::size_type
103 Size() const
104 {
105 return m_Deque.size();
106 }
107
110 bool
111 Empty() const
112 {
113 return m_Deque.empty();
114 }
115
118 const merge_t &
119 Front() const
120 {
121 return m_Deque.front();
122 }
123
126 const merge_t &
127 Back() const
128 {
129 return m_Deque.back();
130 }
131
133 merge_t &
135 {
136 return m_Deque.front();
137 }
138
140 merge_t &
142 {
143 return m_Deque.back();
144 }
145
147 void
149 {
150 m_Deque.push_front(t);
151 }
152
154 void
156 {
157 m_Deque.push_back(t);
158 }
159
161 void
163 {
164 m_Deque.pop_front();
165 }
166
168 void
170 {
171 m_Deque.pop_back();
172 }
173
175 Iterator
177 {
178 return m_Deque.begin();
179 }
180
182 ConstIterator
183 Begin() const
184 {
185 return m_Deque.begin();
186 }
187
190 Iterator
192 {
193 return m_Deque.end();
194 }
195
198 ConstIterator
199 End() const
200 {
201 return m_Deque.end();
202 }
203
205 void
207 {
208 m_Deque.clear();
209 }
210
213 void
214 Initialize() override;
215
216protected:
217 SegmentTree() = default;
218 ~SegmentTree() override = default;
219
220 void
221 PrintSelf(std::ostream & os, Indent indent) const override;
222
224};
225} // end namespace watershed
226} // end namespace itk
227
228#ifndef ITK_MANUAL_INSTANTIATION
229# include "itkWatershedSegmentTree.hxx"
230#endif
231
232#endif
Control indentation during Print() invocation.
Definition itkIndent.h:50
Implements transparent reference counting.
void PushFront(const ValueType &t)
void PrintSelf(std::ostream &os, Indent indent) const override
void Initialize() override
~SegmentTree() override=default
void PushBack(const ValueType &t)
DequeType::size_type Size() const
typename DequeType::const_iterator ConstIterator
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....
SizeValueType IdentifierType
Definition itkIntTypes.h:90
bool operator()(const merge_t &a, const merge_t &b)
bool operator()(const merge_t &a, const merge_t &b)