ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkLabelSelectionLabelMapFilter.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 itkLabelSelectionLabelMapFilter_h
19#define itkLabelSelectionLabelMapFilter_h
20
22#include "itkLabelObject.h"
24#include <set>
25
26
27namespace itk
28{
53template <typename TImage>
56 TImage,
57 typename Functor::LabelLabelObjectAccessor<typename TImage::LabelObjectType>>
58{
59public:
60 ITK_DISALLOW_COPY_AND_MOVE(LabelSelectionLabelMapFilter);
61
64 using Superclass =
69
71 using ImageType = TImage;
72 using ImagePointer = typename ImageType::Pointer;
73 using ImageConstPointer = typename ImageType::ConstPointer;
74 using PixelType = typename ImageType::PixelType;
75 using IndexType = typename ImageType::IndexType;
76
78 using typename Superclass::AttributeValueType;
79
80 using typename Superclass::AttributeSetType;
81
83 static constexpr unsigned int ImageDimension = TImage::ImageDimension;
84
86 itkNewMacro(Self);
87
89 itkOverrideGetNameOfClassMacro(LabelSelectionLabelMapFilter);
90
91 /* itkConceptMacro(InputEqualityComparableCheck,
92 (Concept::EqualityComparable<InputImagePixelType>));
93 itkConceptMacro(IntConvertibleToInputCheck,
94 (Concept::Convertible<int, InputImagePixelType>));
95 itkConceptMacro(InputOStreamWritableCheck,
96 (Concept::OStreamWritable<InputImagePixelType>));*/
97
98 const AttributeSetType &
100 {
101 return this->GetAttributeSet();
102 }
103
104 void
106 {
107 this->SetAttributeSet(set);
108 }
109
111 void
113 {
114 this->SetAttribute(attr);
115 }
116
117 void
119 {
120 this->ClearAttributeSet();
121 }
122
123 void
125 {
126 this->AddAttribute(attr);
127 }
128
129protected:
131 ~LabelSelectionLabelMapFilter() override = default;
132}; // end of class
133
134} // end namespace itk
135
136#endif
~LabelSelectionLabelMapFilter() override=default
void AddLabel(const AttributeValueType &attr)
void SetLabel(const AttributeValueType &attr)
void SetLabelSet(const AttributeSetType &set)
const AttributeSetType & GetLabelSet() const
AttributeSelectionLabelMapFilter< TImage, typename Functor::LabelLabelObjectAccessor< typename TImage::LabelObjectType > > Superclass
typename ImageType::ConstPointer ImageConstPointer
Implements transparent reference counting.
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....