ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkLabelObject.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 itkLabelObject_h
19#define itkLabelObject_h
20
21#include <deque>
22#include "itkLightObject.h"
23#include "itkLabelObjectLine.h"
24#include "itkWeakPointer.h"
25#include "itkObjectFactory.h"
26
27namespace itk
28{
64template <typename TLabel, unsigned int VImageDimension>
65class ITK_TEMPLATE_EXPORT LabelObject : public LightObject
67public:
68 ITK_DISALLOW_COPY_AND_MOVE(LabelObject);
69
77
79 itkNewMacro(Self);
82 itkOverrideGetNameOfClassMacro(LabelObject);
83
84 static constexpr unsigned int ImageDimension = VImageDimension;
85
88 using LabelType = TLabel;
91 using AttributeType = unsigned int;
93
94 static constexpr AttributeType LABEL = 0;
95
97 GetAttributeFromName(const std::string & s);
98
99 static std::string
101
105 const LabelType &
106 GetLabel() const;
107
108 void
109 SetLabel(const LabelType & label);
110
115 bool
116 HasIndex(const IndexType & idx) const;
117
122 void
123 AddIndex(const IndexType & idx);
124
130 bool
131 RemoveIndex(const IndexType & idx);
132
136 void
137 AddLine(const IndexType & idx, const LengthType & length);
138
142 void
143 AddLine(const LineType & line);
144
147
148 const LineType &
150
151 LineType &
153
162 Size() const;
163
168 bool
169 Empty() const;
170
171 void
173
179 GetIndex(SizeValueType offset) const;
180
182 template <typename TSourceLabelObject>
183 void
184 CopyLinesFrom(const TSourceLabelObject * src);
185
187 template <typename TSourceLabelObject>
188 void
189 CopyAttributesFrom(const TSourceLabelObject * src);
190
192 template <typename TSourceLabelObject>
193 void
194 CopyAllFrom(const TSourceLabelObject * src);
195
199 void
201
203 void
205
212 {
213 public:
214 ConstLineIterator() = default;
215
217 {
218 m_Begin = lo->m_LineContainer.begin();
219 m_End = lo->m_LineContainer.end();
221 }
222
224 {
225 m_Iterator = iter.m_Iterator;
226 m_Begin = iter.m_Begin;
227 m_End = iter.m_End;
228 }
229
232 {
233 m_Iterator = iter.m_Iterator;
234 m_Begin = iter.m_Begin;
235 m_End = iter.m_End;
236 return *this;
237 }
238
239 const LineType &
240 GetLine() const
241 {
242 return *m_Iterator;
243 }
244
247 {
248 const ConstLineIterator tmp = *this;
249 ++(*this);
250 return tmp;
251 }
252
255 {
256 ++m_Iterator;
257 return *this;
258 }
259
260 bool
261 operator==(const ConstLineIterator & iter) const
262 {
263 return m_Iterator == iter.m_Iterator && m_Begin == iter.m_Begin && m_End == iter.m_End;
264 }
265
267
268 void
270 {
272 }
273
274 bool
275 IsAtEnd() const
276 {
277 return m_Iterator == m_End;
278 }
279
280 private:
281 using LineContainerType = typename std::deque<LineType>;
282 using InternalIteratorType = typename LineContainerType::const_iterator;
286 };
287
294 {
295 public:
297 : m_Iterator()
298 , m_Begin()
299 , m_End()
300 {
301 m_Index.Fill(0);
302 }
303
305 {
306 m_Begin = lo->m_LineContainer.begin();
307 m_End = lo->m_LineContainer.end();
308 GoToBegin();
309 }
310
312 {
313 m_Iterator = iter.m_Iterator;
314 m_Index = iter.m_Index;
315 m_Begin = iter.m_Begin;
316 m_End = iter.m_End;
317 }
318
321 {
322 m_Iterator = iter.m_Iterator;
323 m_Index = iter.m_Index;
324 m_Begin = iter.m_Begin;
325 m_End = iter.m_End;
326 return *this;
327 }
328
329 const IndexType &
330 GetIndex() const
331 {
332 return m_Index;
333 }
334
337 {
338 m_Index[0]++;
339 if (m_Index[0] >= m_Iterator->GetIndex()[0] + (OffsetValueType)m_Iterator->GetLength())
340 {
341 // we've reached the end of the line - go to the next one
342 ++m_Iterator;
344 }
345 return *this;
346 }
347
350 {
351 ConstIndexIterator tmp = *this;
352 ++(*this);
353 return tmp;
354 }
355
356 bool
357 operator==(const ConstIndexIterator & iter) const
358 {
359 return m_Index == iter.m_Index && m_Iterator == iter.m_Iterator && m_Begin == iter.m_Begin && m_End == iter.m_End;
360 }
361
363
364 void
366 {
368 m_Index.Fill(0);
370 }
371
372 bool
373 IsAtEnd() const
374 {
375 return m_Iterator == m_End;
376 }
377
378 private:
379 using LineContainerType = typename std::deque<LineType>;
380 using InternalIteratorType = typename LineContainerType::const_iterator;
381 void
383 {
384 // search for the next valid position
385 while (m_Iterator != m_End && m_Iterator->GetLength() == 0)
386 {
387 ++m_Iterator;
388 }
389 if (m_Iterator != m_End)
390 {
391 m_Index = m_Iterator->GetIndex();
392 }
393 }
394
399 };
400
401protected:
403 void
404 PrintSelf(std::ostream & os, Indent indent) const override;
405
406private:
407 using LineContainerType = typename std::deque<LineType>;
408
411};
412} // end namespace itk
413
414#ifndef ITK_MANUAL_INSTANTIATION
415# include "itkLabelObject.hxx"
416#endif
417
418#endif
Control indentation during Print() invocation.
Definition itkIndent.h:50
typename LineContainerType::const_iterator InternalIteratorType
typename std::deque< LineType > LineContainerType
const IndexType & GetIndex() const
ConstIndexIterator(const ConstIndexIterator &iter)
bool operator==(const ConstIndexIterator &iter) const
ConstIndexIterator & operator=(const ConstIndexIterator &iter)
ITK_UNEQUAL_OPERATOR_MEMBER_FUNCTION(ConstIndexIterator)
A forward iterator over the lines of a LabelObject.
typename LineContainerType::const_iterator InternalIteratorType
ITK_UNEQUAL_OPERATOR_MEMBER_FUNCTION(ConstLineIterator)
ConstLineIterator(const ConstLineIterator &iter)
const LineType & GetLine() const
ConstLineIterator & operator=(const ConstLineIterator &iter)
bool operator==(const ConstLineIterator &iter) const
typename std::deque< LineType > LineContainerType
The base class for the representation of a labeled binary object in an image.
bool HasIndex(const IndexType &idx) const
static AttributeType GetAttributeFromName(const std::string &s)
itk::SizeValueType SizeValueType
static constexpr AttributeType LABEL
LabelObjectLine< VImageDimension > LineType
WeakPointer< const Self > ConstWeakPointer
typename std::deque< LineType > LineContainerType
void Shift(OffsetType offset)
void CopyAllFrom(const TSourceLabelObject *src)
void SetLabel(const LabelType &label)
void AddIndex(const IndexType &idx)
bool RemoveIndex(const IndexType &idx)
const LineType & GetLine(SizeValueType i) const
IndexType GetIndex(SizeValueType offset) const
void PrintSelf(std::ostream &os, Indent indent) const override
const LabelType & GetLabel() const
LineContainerType m_LineContainer
void AddLine(const LineType &line)
Index< VImageDimension > IndexType
SmartPointer< const Self > ConstPointer
unsigned int AttributeType
SizeValueType Size() const
static constexpr unsigned int ImageDimension
static std::string GetNameFromAttribute(const AttributeType &a)
void CopyLinesFrom(const TSourceLabelObject *src)
void CopyAttributesFrom(const TSourceLabelObject *src)
Offset< VImageDimension > OffsetType
bool Empty() const
typename LineType::LengthType LengthType
SizeValueType GetNumberOfLines() const
void AddLine(const IndexType &idx, const LengthType &length)
LineType & GetLine(SizeValueType i)
Light weight base class for most itk classes.
Implements transparent reference counting.
ShapeLabelObject< TLabel, VImageDimension > Superclass
Implements a weak reference to an object.
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....
unsigned long SizeValueType
Definition itkIntTypes.h:86
long OffsetValueType
Definition itkIntTypes.h:97
Represent a n-dimensional index in a n-dimensional image.
Definition itkIndex.h:69
Represent a n-dimensional offset between two n-dimensional indexes of n-dimensional image.
Definition itkOffset.h:67