ITK  5.1.0
Insight Toolkit
itkAttributeRelabelLabelMapFilter.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  * http://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 itkAttributeRelabelLabelMapFilter_h
19 #define itkAttributeRelabelLabelMapFilter_h
20 
23 
24 namespace itk
25 {
44 template <typename TImage,
45  typename TAttributeAccessor =
46  typename Functor::AttributeLabelObjectAccessor<typename TImage::LabelObjectType>>
47 class ITK_TEMPLATE_EXPORT AttributeRelabelLabelMapFilter : public InPlaceLabelMapFilter<TImage>
48 {
49 public:
50  ITK_DISALLOW_COPY_AND_ASSIGN(AttributeRelabelLabelMapFilter);
51 
57 
59  using ImageType = TImage;
60  using ImagePointer = typename ImageType::Pointer;
61  using ImageConstPointer = typename ImageType::ConstPointer;
62  using PixelType = typename ImageType::PixelType;
63  using IndexType = typename ImageType::IndexType;
64  using LabelObjectType = typename ImageType::LabelObjectType;
65 
66  using AttributeAccessorType = TAttributeAccessor;
68 
70  static constexpr unsigned int ImageDimension = TImage::ImageDimension;
71 
73  itkNewMacro(Self);
74 
77 
78 #ifdef ITK_USE_CONCEPT_CHECKING
79  // Begin concept checking
80  /* itkConceptMacro(InputEqualityComparableCheck,
81  (Concept::EqualityComparable<InputImagePixelType>));
82  itkConceptMacro(IntConvertibleToInputCheck,
83  (Concept::Convertible<int, InputImagePixelType>));
84  itkConceptMacro(InputOStreamWritableCheck,
85  (Concept::OStreamWritable<InputImagePixelType>));*/
86  // End concept checking
87 #endif
88 
94  itkSetMacro(ReverseOrdering, bool);
95  itkGetConstReferenceMacro(ReverseOrdering, bool);
96  itkBooleanMacro(ReverseOrdering);
98 
99 protected:
101  ~AttributeRelabelLabelMapFilter() override = default;
102 
103  void
104  GenerateData() override;
105 
106  void
107  PrintSelf(std::ostream & os, Indent indent) const override;
108 
110  {
111  public:
112  bool
113  operator()(const typename LabelObjectType::Pointer & a, const typename LabelObjectType::Pointer & b)
114  {
115  return m_Accessor(a) < m_Accessor(b);
116  }
118  : m_Accessor()
119  {}
120 
121  private:
123  };
124 
126  {
127  public:
128  bool
129  operator()(const typename LabelObjectType::Pointer & a, const typename LabelObjectType::Pointer & b)
130  {
131  return m_Accessor(a) > m_Accessor(b);
132  }
134  : m_Accessor()
135  {}
136 
137  private:
139  };
140 
141 private:
143 
144 }; // end of class
145 
146 } // end namespace itk
147 
148 #ifndef ITK_MANUAL_INSTANTIATION
149 # include "itkAttributeRelabelLabelMapFilter.hxx"
150 #endif
151 
152 #endif
itk::AttributeRelabelLabelMapFilter< TImage, Functor::LabelLabelObjectAccessor< TImage::LabelObjectType > >::PixelType
typename ImageType::PixelType PixelType
Definition: itkAttributeRelabelLabelMapFilter.h:62
itk::AttributeRelabelLabelMapFilter::ReverseComparator::ReverseComparator
ReverseComparator()
Definition: itkAttributeRelabelLabelMapFilter.h:117
itk::AttributeRelabelLabelMapFilter< TImage, Functor::LabelLabelObjectAccessor< TImage::LabelObjectType > >::ImageConstPointer
typename ImageType::ConstPointer ImageConstPointer
Definition: itkAttributeRelabelLabelMapFilter.h:61
itk::AttributeRelabelLabelMapFilter< TImage, Functor::LabelLabelObjectAccessor< TImage::LabelObjectType > >::IndexType
typename ImageType::IndexType IndexType
Definition: itkAttributeRelabelLabelMapFilter.h:63
itk::InPlaceLabelMapFilter
Base class for filters that takes an image as input and overwrites that image as the output.
Definition: itkInPlaceLabelMapFilter.h:84
itk::AttributeRelabelLabelMapFilter< TImage, Functor::LabelLabelObjectAccessor< TImage::LabelObjectType > >::AttributeValueType
typename AttributeAccessorType::AttributeValueType AttributeValueType
Definition: itkAttributeRelabelLabelMapFilter.h:67
itk::SmartPointer< Self >
itk::Indent
Control indentation during Print() invocation.
Definition: itkIndent.h:49
itk::AttributeRelabelLabelMapFilter::m_ReverseOrdering
bool m_ReverseOrdering
Definition: itkAttributeRelabelLabelMapFilter.h:142
itk::GTest::TypedefsAndConstructors::Dimension2::IndexType
ImageBaseType::IndexType IndexType
Definition: itkGTestTypedefsAndConstructors.h:50
itk::AttributeRelabelLabelMapFilter::ReverseComparator::m_Accessor
AttributeAccessorType m_Accessor
Definition: itkAttributeRelabelLabelMapFilter.h:122
itk::LightObject
Light weight base class for most itk classes.
Definition: itkLightObject.h:59
itkAttributeLabelObject.h
itk::AttributeRelabelLabelMapFilter::Comparator::operator()
bool operator()(const typename LabelObjectType::Pointer &a, const typename LabelObjectType::Pointer &b)
Definition: itkAttributeRelabelLabelMapFilter.h:129
itkInPlaceLabelMapFilter.h
itk::AttributeRelabelLabelMapFilter< TImage, Functor::LabelLabelObjectAccessor< TImage::LabelObjectType > >::ImageType
TImage ImageType
Definition: itkAttributeRelabelLabelMapFilter.h:59
itk::AttributeRelabelLabelMapFilter::Comparator::Comparator
Comparator()
Definition: itkAttributeRelabelLabelMapFilter.h:133
itk::AttributeRelabelLabelMapFilter< TImage, Functor::LabelLabelObjectAccessor< TImage::LabelObjectType > >::LabelObjectType
typename ImageType::LabelObjectType LabelObjectType
Definition: itkAttributeRelabelLabelMapFilter.h:64
itk::AttributeRelabelLabelMapFilter::ReverseComparator
Definition: itkAttributeRelabelLabelMapFilter.h:109
itk
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....
Definition: itkArray.h:26
itk::AttributeRelabelLabelMapFilter< TImage, Functor::LabelLabelObjectAccessor< TImage::LabelObjectType > >::ImagePointer
typename ImageType::Pointer ImagePointer
Definition: itkAttributeRelabelLabelMapFilter.h:60
itk::AttributeRelabelLabelMapFilter::Comparator::m_Accessor
AttributeAccessorType m_Accessor
Definition: itkAttributeRelabelLabelMapFilter.h:138
itk::Functor::LabelLabelObjectAccessor
Definition: itkLabelObjectAccessors.h:38
itk::AttributeRelabelLabelMapFilter
relabel objects according to their shape attributes
Definition: itkAttributeRelabelLabelMapFilter.h:47
itk::AttributeRelabelLabelMapFilter::AttributeAccessorType
TAttributeAccessor AttributeAccessorType
Definition: itkAttributeRelabelLabelMapFilter.h:66
itk::AttributeRelabelLabelMapFilter::Comparator
Definition: itkAttributeRelabelLabelMapFilter.h:125
itk::AttributeRelabelLabelMapFilter::ReverseComparator::operator()
bool operator()(const typename LabelObjectType::Pointer &a, const typename LabelObjectType::Pointer &b)
Definition: itkAttributeRelabelLabelMapFilter.h:113
itk::Functor::LabelLabelObjectAccessor::AttributeValueType
typename LabelObjectType::LabelType AttributeValueType
Definition: itkLabelObjectAccessors.h:42