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,
45class ITK_TEMPLATE_EXPORT AttributeOpeningLabelMapFilter : public InPlaceLabelMapFilter<TImage>
46{
47public:
48 ITK_DISALLOW_COPY_AND_MOVE(AttributeOpeningLabelMapFilter);
49
55
57 using ImageType = TImage;
58 using ImagePointer = typename ImageType::Pointer;
59 using ImageConstPointer = typename ImageType::ConstPointer;
60 using PixelType = typename ImageType::PixelType;
61 using IndexType = typename ImageType::IndexType;
62
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(AttributeOpeningLabelMapFilter);
76
77 /* itkConceptMacro(InputEqualityComparableCheck,
78 (Concept::EqualityComparable<InputImagePixelType>));
79 itkConceptMacro(IntConvertibleToInputCheck,
80 (Concept::Convertible<int, InputImagePixelType>));
81 itkConceptMacro(InputOStreamWritableCheck,
82 (Concept::OStreamWritable<InputImagePixelType>));*/
83
88 itkGetConstMacro(Lambda, AttributeValueType);
89 itkSetMacro(Lambda, AttributeValueType);
98 itkGetConstMacro(ReverseOrdering, bool);
99 itkSetMacro(ReverseOrdering, bool);
100 itkBooleanMacro(ReverseOrdering);
102protected:
105
106 void
107 GenerateData() override;
108
109 void
110 PrintSelf(std::ostream & os, Indent indent) const override;
111
112private:
115
116}; // end of class
117
118} // end namespace itk
119
120#ifndef ITK_MANUAL_INSTANTIATION
121# include "itkAttributeOpeningLabelMapFilter.hxx"
122#endif
123
124#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....