ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkAttributeOpeningLabelMapFilter.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 itkAttributeOpeningLabelMapFilter_h
19#define itkAttributeOpeningLabelMapFilter_h
20
23
24namespace itk
25{
43template <typename TImage,
44 typename TAttributeAccessor =
46class ITK_TEMPLATE_EXPORT AttributeOpeningLabelMapFilter : public InPlaceLabelMapFilter<TImage>
47{
48public:
49 ITK_DISALLOW_COPY_AND_MOVE(AttributeOpeningLabelMapFilter);
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
65
66 using AttributeAccessorType = TAttributeAccessor;
67 using AttributeValueType = typename AttributeAccessorType::AttributeValueType;
68
70 static constexpr unsigned int ImageDimension = TImage::ImageDimension;
71
73 itkNewMacro(Self);
74
76 itkOverrideGetNameOfClassMacro(AttributeOpeningLabelMapFilter);
77
78 /* itkConceptMacro(InputEqualityComparableCheck,
79 (Concept::EqualityComparable<InputImagePixelType>));
80 itkConceptMacro(IntConvertibleToInputCheck,
81 (Concept::Convertible<int, InputImagePixelType>));
82 itkConceptMacro(InputOStreamWritableCheck,
83 (Concept::OStreamWritable<InputImagePixelType>));*/
84
88 itkGetConstMacro(Lambda, AttributeValueType);
89 itkSetMacro(Lambda, AttributeValueType);
91
98 itkGetConstMacro(ReverseOrdering, bool);
99 itkSetMacro(ReverseOrdering, bool);
100 itkBooleanMacro(ReverseOrdering);
102
103protected:
106
107 void
108 GenerateData() override;
109
110 void
111 PrintSelf(std::ostream & os, Indent indent) const override;
112
113private:
116
117}; // end of class
118
119} // end namespace itk
120
121#ifndef ITK_MANUAL_INSTANTIATION
122# include "itkAttributeOpeningLabelMapFilter.hxx"
123#endif
124
125#endif
void PrintSelf(std::ostream &os, Indent indent) const override
typename AttributeAccessorType::AttributeValueType AttributeValueType
typename Superclass::LabelObjectType LabelObjectType
~AttributeOpeningLabelMapFilter() override=default
typename InputImageType::LabelObjectType LabelObjectType
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....