ITK  5.4.0
Insight Toolkit
itkLabelStatisticsOpeningImageFilter.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 itkLabelStatisticsOpeningImageFilter_h
19#define itkLabelStatisticsOpeningImageFilter_h
20
25
26namespace itk
27{
45template <typename TInputImage, typename TFeatureImage>
46class ITK_TEMPLATE_EXPORT LabelStatisticsOpeningImageFilter : public ImageToImageFilter<TInputImage, TInputImage>
47{
48public:
49 ITK_DISALLOW_COPY_AND_MOVE(LabelStatisticsOpeningImageFilter);
50
56
58 using InputImageType = TInputImage;
59 using OutputImageType = TInputImage;
63 using InputImagePixelType = typename InputImageType::PixelType;
67 using OutputImagePixelType = typename OutputImageType::PixelType;
68
69 using FeatureImageType = TFeatureImage;
72 using FeatureImagePixelType = typename FeatureImageType::PixelType;
73
75 static constexpr unsigned int InputImageDimension = TInputImage::ImageDimension;
76 static constexpr unsigned int OutputImageDimension = TInputImage::ImageDimension;
77 static constexpr unsigned int ImageDimension = TInputImage::ImageDimension;
78
86
88 itkNewMacro(Self);
89
91 itkOverrideGetNameOfClassMacro(LabelStatisticsOpeningImageFilter);
92
93#ifdef ITK_USE_CONCEPT_CHECKING
94 // Begin concept checking
98 // End concept checking
99#endif
100
105 itkSetMacro(BackgroundValue, OutputImagePixelType);
106 itkGetConstMacro(BackgroundValue, OutputImagePixelType);
112 itkGetConstMacro(Lambda, double);
113 itkSetMacro(Lambda, double);
122 itkGetConstMacro(ReverseOrdering, bool);
123 itkSetMacro(ReverseOrdering, bool);
124 itkBooleanMacro(ReverseOrdering);
131 itkGetConstMacro(Attribute, AttributeType);
132 itkSetMacro(Attribute, AttributeType);
133 void
134 SetAttribute(const std::string & s)
135 {
136 this->SetAttribute(LabelObjectType::GetAttributeFromName(s));
137 }
141 void
142 SetFeatureImage(const TFeatureImage * input)
143 {
144 // Process object is not const-correct so the const casting is required.
145 this->SetNthInput(1, const_cast<TFeatureImage *>(input));
146 }
147
149 const FeatureImageType *
151 {
152 return static_cast<const FeatureImageType *>(this->ProcessObject::GetInput(1));
153 }
154
156 void
158 {
159 this->SetInput(input);
160 }
161
163 void
165 {
166 this->SetFeatureImage(input);
167 }
168
169protected:
172 void
173 PrintSelf(std::ostream & os, Indent indent) const override;
174
178 void
180
182 void
183 EnlargeOutputRequestedRegion(DataObject * itkNotUsed(output)) override;
184
187 void
188 GenerateData() override;
189
190private:
191 OutputImagePixelType m_BackgroundValue{};
192 double m_Lambda{};
193 bool m_ReverseOrdering{};
194 AttributeType m_Attribute{};
195}; // end of class
196} // end namespace itk
197
198#ifndef ITK_MANUAL_INSTANTIATION
199# include "itkLabelStatisticsOpeningImageFilter.hxx"
200#endif
201
202#endif
Base class for all data objects in ITK.
Base class for filters that take an image as input and produce an image as output.
Control indentation during Print() invocation.
Definition: itkIndent.h:50
convert a labeled image to a label collection image
Converts a LabelMap to a labeled image.
Templated n-dimensional image to store labeled objects.
Definition: itkLabelMap.h:71
unsigned int AttributeType
remove the objects according to the value of their statistics attribute
void EnlargeOutputRequestedRegion(DataObject *) override
typename OutputImageType::RegionType OutputImageRegionType
typename InputImageType::RegionType InputImageRegionType
typename OutputImageType::PixelType OutputImagePixelType
void PrintSelf(std::ostream &os, Indent indent) const override
typename LabelObjectType::AttributeType AttributeType
typename FeatureImageType::PixelType FeatureImagePixelType
~LabelStatisticsOpeningImageFilter() override=default
typename InputImageType::ConstPointer InputImageConstPointer
typename FeatureImageType::ConstPointer FeatureImageConstPointer
typename OutputImageType::ConstPointer OutputImageConstPointer
Light weight base class for most itk classes.
DataObject * GetInput(const DataObjectIdentifierType &key)
Return an input.
The valuator class for the StatisticsLabelObject.
A Label object to store the common attributes related to the statistics of the object.
remove the objects according to the value of their statistics attribute
SmartPointer< const Self > ConstPointer
SmartPointer< Self > Pointer
#define itkConceptMacro(name, concept)
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....