ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
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 * 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 itkAttributeRelabelLabelMapFilter_h
19#define itkAttributeRelabelLabelMapFilter_h
20
23
24namespace itk
25{
43template <typename TImage,
44 typename TAttributeAccessor =
46class ITK_TEMPLATE_EXPORT AttributeRelabelLabelMapFilter : public InPlaceLabelMapFilter<TImage>
47{
48public:
49 ITK_DISALLOW_COPY_AND_MOVE(AttributeRelabelLabelMapFilter);
50
56
58 using ImageType = TImage;
59 using ImagePointer = typename ImageType::Pointer;
60 using ImageConstPointer = typename ImageType::ConstPointer;
61 using PixelType = typename ImageType::PixelType;
62 using IndexType = typename ImageType::IndexType;
63 using LabelObjectType = typename ImageType::LabelObjectType;
64
65 using AttributeAccessorType = TAttributeAccessor;
66 using AttributeValueType = typename AttributeAccessorType::AttributeValueType;
67
69 static constexpr unsigned int ImageDimension = TImage::ImageDimension;
70
72 itkNewMacro(Self);
73
75 itkOverrideGetNameOfClassMacro(AttributeRelabelLabelMapFilter);
76
77 /* itkConceptMacro(InputEqualityComparableCheck,
78 (Concept::EqualityComparable<InputImagePixelType>));
79 itkConceptMacro(IntConvertibleToInputCheck,
80 (Concept::Convertible<int, InputImagePixelType>));
81 itkConceptMacro(InputOStreamWritableCheck,
82 (Concept::OStreamWritable<InputImagePixelType>));*/
83
89 itkSetMacro(ReverseOrdering, bool);
90 itkGetConstReferenceMacro(ReverseOrdering, bool);
91 itkBooleanMacro(ReverseOrdering);
93
94protected:
96 ~AttributeRelabelLabelMapFilter() override = default;
97
98 void
99 GenerateData() override;
100
101 void
102 PrintSelf(std::ostream & os, Indent indent) const override;
103
105 {
106 public:
107 bool
108 operator()(const typename LabelObjectType::Pointer & a, const typename LabelObjectType::Pointer & b)
109 {
110 return m_Accessor(a) < m_Accessor(b);
111 }
115
116 private:
118 };
119
121 {
122 public:
123 bool
124 operator()(const typename LabelObjectType::Pointer & a, const typename LabelObjectType::Pointer & b)
125 {
126 return m_Accessor(a) > m_Accessor(b);
127 }
129 : m_Accessor()
130 {}
131
132 private:
134 };
135
136private:
138
139}; // end of class
140
141} // end namespace itk
142
143#ifndef ITK_MANUAL_INSTANTIATION
144# include "itkAttributeRelabelLabelMapFilter.hxx"
145#endif
146
147#endif
bool operator()(const typename LabelObjectType::Pointer &a, const typename LabelObjectType::Pointer &b)
bool operator()(const typename LabelObjectType::Pointer &a, const typename LabelObjectType::Pointer &b)
typename ImageType::LabelObjectType LabelObjectType
~AttributeRelabelLabelMapFilter() override=default
typename AttributeAccessorType::AttributeValueType AttributeValueType
void PrintSelf(std::ostream &os, Indent indent) const override
Control indentation during Print() invocation.
Definition itkIndent.h:50
Implements transparent reference counting.
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....