ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkLabelMap.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 itkLabelMap_h
19#define itkLabelMap_h
20
21#include "itkImageBase.h"
22#include "itkWeakPointer.h"
23#include <map>
24
25namespace itk
26{
69template <typename TLabelObject>
70class ITK_TEMPLATE_EXPORT LabelMap : public ImageBase<TLabelObject::ImageDimension>
71{
72public:
73 ITK_DISALLOW_COPY_AND_MOVE(LabelMap);
74
76 using Self = LabelMap;
81
83 itkNewMacro(Self);
84
86 itkOverrideGetNameOfClassMacro(LabelMap);
87
88 using LabelObjectType = TLabelObject;
89
91
92 using typename Superclass::SizeValueType;
94
99 static constexpr unsigned int ImageDimension = LabelObjectType::ImageDimension;
100
104
106 using LabelVectorType = std::vector<LabelType>;
107 using LabelObjectVectorType = std::vector<LabelObjectPointerType>;
108
110 using typename Superclass::IndexType;
111
113 using typename Superclass::OffsetType;
114
116 using typename Superclass::SizeType;
117
119 using typename Superclass::DirectionType;
120
123 using typename Superclass::RegionType;
124
127 using typename Superclass::SpacingType;
128
131 using typename Superclass::PointType;
132
134 using typename Superclass::OffsetValueType;
135
138 void
139 Initialize() override;
140
142 void
143 Allocate(bool initialize = false) override;
144
145 virtual void
146 Graft(const Self * imgData);
147
155 GetLabelObject(const LabelType & label);
156 const LabelObjectType *
157 GetLabelObject(const LabelType & label) const;
164 bool
165 HasLabel(const LabelType label) const;
166
176 const LabelObjectType *
186 const LabelType &
187 GetPixel(const IndexType & idx) const;
188
198 void
199 SetPixel(const IndexType & idx, const LabelType & iLabel);
200
208 void
209 AddPixel(const IndexType & idx, const LabelType & label);
210
215 void
216 RemovePixel(const IndexType & idx, const LabelType & label);
217
225 void
226 SetLine(const IndexType & idx, const LengthType & length, const LabelType & label);
227
234 GetLabelObject(const IndexType & idx) const;
235
240 void
242
247 void
249
253 void
255
259 void
260 RemoveLabel(const LabelType & label);
261
265 void
267
271 typename Self::SizeValueType
273 {
274 return static_cast<SizeValueType>(m_LabelObjectContainer.size());
275 }
276
280 LabelVectorType
281 GetLabels() const;
282
288
293 itkGetConstMacro(BackgroundValue, LabelType);
294 itkSetMacro(BackgroundValue, LabelType);
300 void
301 PrintLabelObjects(std::ostream & os) const;
302
303 void
305 {
306 this->PrintLabelObjects(std::cerr);
307 }
308
312 void
314
321 {
322 public:
323 ConstIterator() = default;
324
325 ConstIterator(const Self * lm)
326 {
327 m_Begin = lm->m_LabelObjectContainer.begin();
328 m_End = lm->m_LabelObjectContainer.end();
330 }
331
332 const LabelObjectType *
334 {
335 return m_Iterator->second;
336 }
337
338 const LabelType &
339 GetLabel() const
340 {
341 return m_Iterator->first;
342 }
343
346 {
347 ConstIterator tmp = *this;
348 ++(*this);
349 return tmp;
350 }
351
354 {
355 ++m_Iterator;
356 return *this;
357 }
358
359 bool
360 operator==(const ConstIterator & iter) const
361 {
362 return m_Iterator == iter.m_Iterator && m_Begin == iter.m_Begin && m_End == iter.m_End;
363 }
364
366
367 void
369 {
371 }
372
373 bool
374 IsAtEnd() const
375 {
376 return m_Iterator == m_End;
377 }
378
379 private:
380 using InternalIteratorType = typename std::map<LabelType, LabelObjectPointerType>::const_iterator;
384 };
385
392 {
393 public:
394 Iterator() = default;
395
397 {
398 m_Begin = lm->m_LabelObjectContainer.begin();
399 m_End = lm->m_LabelObjectContainer.end();
401 }
402
405 {
406 return m_Iterator->second;
407 }
408
409 const LabelType &
410 GetLabel() const
411 {
412 return m_Iterator->first;
413 }
414
417 {
418 Iterator tmp = *this;
419 ++(*this);
420 return tmp;
421 }
422
423 Iterator &
425 {
426 ++m_Iterator;
427 return *this;
428 }
429
430 bool
431 operator==(const Iterator & iter) const
432 {
433 return m_Iterator == iter.m_Iterator && m_Begin == iter.m_Begin && m_End == iter.m_End;
434 }
435
437
438 void
440 {
442 }
443
444 bool
445 IsAtEnd() const
446 {
447 return m_Iterator == m_End;
448 }
449
450 private:
451 using InternalIteratorType = typename std::map<LabelType, LabelObjectPointerType>::iterator;
455
456 friend class LabelMap;
457 };
458
459protected:
460 LabelMap() = default;
461 ~LabelMap() override = default;
462 void
463 PrintSelf(std::ostream & os, Indent indent) const override;
464 void
465 Graft(const DataObject * data) override;
466 using Superclass::Graft;
467
468private:
470 using LabelObjectContainerType = std::map<LabelType, LabelObjectPointerType>;
471 using LabelObjectContainerIterator = typename LabelObjectContainerType::iterator;
472 using LabelObjectContainerConstIterator = typename LabelObjectContainerType::const_iterator;
473
476
477 void
478 AddPixel(const LabelObjectContainerIterator & it, const IndexType & idx, const LabelType & label);
479
480 void
481 RemovePixel(const LabelObjectContainerIterator & it, const IndexType & idx, bool iEmitModifiedEvent);
482};
483} // end namespace itk
484
485#ifndef ITK_MANUAL_INSTANTIATION
486# include "itkLabelMap.hxx"
487#endif
488
489#endif
Base class for all data objects in ITK.
Vector< SpacingValueType, VImageDimension > SpacingType
ImageRegion< VImageDimension > RegionType
Index< VImageDimension > IndexType
Offset< VImageDimension > OffsetType
typename OffsetType::OffsetValueType OffsetValueType
virtual void Graft(const Self *image)
Matrix< SpacePrecisionType, VImageDimension, VImageDimension > DirectionType
Point< PointValueType, VImageDimension > PointType
typename SizeType::SizeValueType SizeValueType
Control indentation during Print() invocation.
Definition itkIndent.h:50
A forward iterator over the LabelObjects of a LabelMap.
ConstIterator(const Self *lm)
typename std::map< LabelType, LabelObjectPointerType >::const_iterator InternalIteratorType
const LabelType & GetLabel() const
const LabelObjectType * GetLabelObject() const
ConstIterator & operator++()
InternalIteratorType m_Iterator
ITK_UNEQUAL_OPERATOR_MEMBER_FUNCTION(ConstIterator)
InternalIteratorType m_Begin
InternalIteratorType m_End
bool operator==(const ConstIterator &iter) const
ConstIterator operator++(int)
A forward iterator over the LabelObjects of a LabelMap.
const LabelType & GetLabel() const
ITK_UNEQUAL_OPERATOR_MEMBER_FUNCTION(Iterator)
bool operator==(const Iterator &iter) const
InternalIteratorType m_End
Iterator operator++(int)
InternalIteratorType m_Begin
typename std::map< LabelType, LabelObjectPointerType >::iterator InternalIteratorType
InternalIteratorType m_Iterator
LabelObjectType * GetLabelObject()
void SetPixel(const IndexType &idx, const LabelType &iLabel)
Set the pixel value at a given index in the image.
LabelObjectType * GetLabelObject(const LabelType &label)
void Graft(const DataObject *data) override
void RemoveLabel(const LabelType &label)
void RemoveLabelObject(LabelObjectType *labelObject)
void PrintLabelObjects(std::ostream &os) const
void ClearLabels()
typename LabelObjectType::Pointer LabelObjectPointerType
Definition itkLabelMap.h:90
typename LabelObjectType::LabelType LabelType
LabelObjectType * GetNthLabelObject(const SizeValueType &pos)
LabelVectorType GetLabels() const
void RemovePixel(const IndexType &idx, const LabelType &label)
LabelMap()=default
void Initialize() override
static constexpr unsigned int ImageDimension
Definition itkLabelMap.h:99
LabelObjectVectorType GetLabelObjects() const
const LabelType & GetPixel(const IndexType &idx) const
void AddPixel(const LabelObjectContainerIterator &it, const IndexType &idx, const LabelType &label)
std::map< LabelType, LabelObjectPointerType > LabelObjectContainerType
std::vector< LabelObjectPointerType > LabelObjectVectorType
Self::SizeValueType GetNumberOfLabelObjects() const
virtual void Graft(const Self *imgData)
typename LabelObjectContainerType::iterator LabelObjectContainerIterator
void AddLabelObject(LabelObjectType *labelObject)
void AddPixel(const IndexType &idx, const LabelType &label)
SizeValueType LengthType
Definition itkLabelMap.h:93
void Allocate(bool initialize=false) override
typename LabelObjectContainerType::const_iterator LabelObjectContainerConstIterator
void PushLabelObject(LabelObjectType *labelObject)
const LabelObjectType * GetNthLabelObject(const SizeValueType &pos) const
bool HasLabel(const LabelType label) const
void PrintLabelObjects() const
SmartPointer< const Self > ConstPointer
Definition itkLabelMap.h:79
void PrintSelf(std::ostream &os, Indent indent) const override
std::vector< LabelType > LabelVectorType
LabelType m_BackgroundValue
LabelObjectContainerType m_LabelObjectContainer
~LabelMap() override=default
WeakPointer< const Self > ConstWeakPointer
Definition itkLabelMap.h:80
ImageBase< Self::ImageDimension > Superclass
Definition itkLabelMap.h:77
LabelObjectType * GetLabelObject(const IndexType &idx) const
const LabelObjectType * GetLabelObject(const LabelType &label) const
void SetLine(const IndexType &idx, const LengthType &length, const LabelType &label)
void RemovePixel(const LabelObjectContainerIterator &it, const IndexType &idx, bool iEmitModifiedEvent)
SmartPointer< Self > Pointer
Definition itkLabelMap.h:78
Implements transparent reference counting.
Implements a weak reference to an object.
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....