ITK  5.1.0
Insight Toolkit
itkLabelShapeOpeningImageFilter.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  * http://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 itkLabelShapeOpeningImageFilter_h
19 #define itkLabelShapeOpeningImageFilter_h
20 
21 #include "itkShapeLabelObject.h"
23 #include "itkShapeLabelMapFilter.h"
26 
27 namespace itk
28 {
47 template <typename TInputImage>
48 class ITK_TEMPLATE_EXPORT LabelShapeOpeningImageFilter : public ImageToImageFilter<TInputImage, TInputImage>
49 {
50 public:
51  ITK_DISALLOW_COPY_AND_ASSIGN(LabelShapeOpeningImageFilter);
52 
58 
60  using InputImageType = TInputImage;
61  using OutputImageType = TInputImage;
62  using InputImagePointer = typename InputImageType::Pointer;
63  using InputImageConstPointer = typename InputImageType::ConstPointer;
65  using InputImagePixelType = typename InputImageType::PixelType;
66  using OutputImagePointer = typename OutputImageType::Pointer;
67  using OutputImageConstPointer = typename OutputImageType::ConstPointer;
69  using OutputImagePixelType = typename OutputImageType::PixelType;
70 
72  static constexpr unsigned int InputImageDimension = TInputImage::ImageDimension;
73  static constexpr unsigned int OutputImageDimension = TInputImage::ImageDimension;
74  static constexpr unsigned int ImageDimension = TInputImage::ImageDimension;
75 
84 
86  itkNewMacro(Self);
87 
90 
91 #ifdef ITK_USE_CONCEPT_CHECKING
92  // Begin concept checking
96  // End concept checking
97 #endif
98 
103  itkSetMacro(BackgroundValue, OutputImagePixelType);
104  itkGetConstMacro(BackgroundValue, OutputImagePixelType);
106 
110  itkGetConstMacro(Lambda, double);
111  itkSetMacro(Lambda, double);
113 
120  itkGetConstMacro(ReverseOrdering, bool);
121  itkSetMacro(ReverseOrdering, bool);
122  itkBooleanMacro(ReverseOrdering);
124 
129  itkGetConstMacro(Attribute, AttributeType);
130  itkSetMacro(Attribute, AttributeType);
131  void
132  SetAttribute(const std::string & s)
133  {
134  this->SetAttribute(LabelObjectType::GetAttributeFromName(s));
135  }
137 
138 protected:
140  ~LabelShapeOpeningImageFilter() override = default;
141  void
142  PrintSelf(std::ostream & os, Indent indent) const override;
143 
147  void
148  GenerateInputRequestedRegion() override;
149 
151  void
152  EnlargeOutputRequestedRegion(DataObject * itkNotUsed(output)) override;
153 
156  void
157  GenerateData() override;
158 
159 private:
161  double m_Lambda;
164 }; // end of class
165 } // end namespace itk
166 
167 #ifndef ITK_MANUAL_INSTANTIATION
168 # include "itkLabelShapeOpeningImageFilter.hxx"
169 #endif
170 
171 #endif
itkLabelImageToLabelMapFilter.h
itk::LabelShapeOpeningImageFilter::OutputImagePointer
typename OutputImageType::Pointer OutputImagePointer
Definition: itkLabelShapeOpeningImageFilter.h:66
itk::Concept::OStreamWritable
Definition: itkConceptChecking.h:634
itk::LabelShapeOpeningImageFilter::InputImageConstPointer
typename InputImageType::ConstPointer InputImageConstPointer
Definition: itkLabelShapeOpeningImageFilter.h:63
itk::LabelShapeOpeningImageFilter::OutputImageConstPointer
typename OutputImageType::ConstPointer OutputImageConstPointer
Definition: itkLabelShapeOpeningImageFilter.h:67
itk::LabelImageToLabelMapFilter
convert a labeled image to a label collection image
Definition: itkLabelImageToLabelMapFilter.h:50
itk::LabelShapeOpeningImageFilter::SetAttribute
void SetAttribute(const std::string &s)
Definition: itkLabelShapeOpeningImageFilter.h:132
itk::SmartPointer< Self >
itk::Indent
Control indentation during Print() invocation.
Definition: itkIndent.h:49
itk::LabelShapeOpeningImageFilter::InputImagePixelType
typename InputImageType::PixelType InputImagePixelType
Definition: itkLabelShapeOpeningImageFilter.h:65
itk::LabelShapeOpeningImageFilter::m_ReverseOrdering
bool m_ReverseOrdering
Definition: itkLabelShapeOpeningImageFilter.h:162
itk::ShapeLabelMapFilter
The valuator class for the ShapeLabelObject.
Definition: itkShapeLabelMapFilter.h:54
itk::LabelShapeOpeningImageFilter::InputImageRegionType
typename InputImageType::RegionType InputImageRegionType
Definition: itkLabelShapeOpeningImageFilter.h:64
itkShapeOpeningLabelMapFilter.h
itk::LabelShapeOpeningImageFilter::m_BackgroundValue
OutputImagePixelType m_BackgroundValue
Definition: itkLabelShapeOpeningImageFilter.h:160
itk::LabelMap
Templated n-dimensional image to store labeled objects.
Definition: itkLabelMap.h:71
itkShapeLabelMapFilter.h
itk::LabelShapeOpeningImageFilter::OutputImagePixelType
typename OutputImageType::PixelType OutputImagePixelType
Definition: itkLabelShapeOpeningImageFilter.h:69
itkShapeLabelObject.h
itk::ImageToImageFilter
Base class for filters that take an image as input and produce an image as output.
Definition: itkImageToImageFilter.h:108
itk::LabelShapeOpeningImageFilter::m_Attribute
AttributeType m_Attribute
Definition: itkLabelShapeOpeningImageFilter.h:163
itk::LightObject
Light weight base class for most itk classes.
Definition: itkLightObject.h:59
itk::LabelShapeOpeningImageFilter::InputImageType
TInputImage InputImageType
Definition: itkLabelShapeOpeningImageFilter.h:60
itk::GTest::TypedefsAndConstructors::Dimension2::RegionType
ImageBaseType::RegionType RegionType
Definition: itkGTestTypedefsAndConstructors.h:54
itk::LabelShapeOpeningImageFilter
remove the objects according to the value of their shape attribute
Definition: itkLabelShapeOpeningImageFilter.h:48
itk::ShapeOpeningLabelMapFilter
Remove objects according to the value of their shape attribute.
Definition: itkShapeOpeningLabelMapFilter.h:50
itk::LabelShapeOpeningImageFilter::OutputImageRegionType
typename OutputImageType::RegionType OutputImageRegionType
Definition: itkLabelShapeOpeningImageFilter.h:68
itkConceptMacro
#define itkConceptMacro(name, concept)
Definition: itkConceptChecking.h:64
itk
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....
Definition: itkArray.h:26
itk::ShapeLabelObject
A Label object to store the common attributes related to the shape of the object.
Definition: itkShapeLabelObject.h:44
itk::Concept::Convertible
Definition: itkConceptChecking.h:214
itk::LabelMapToLabelImageFilter
Converts a LabelMap to a labeled image.
Definition: itkLabelMapToLabelImageFilter.h:47
itk::LabelShapeOpeningImageFilter::AttributeType
typename LabelObjectType::AttributeType AttributeType
Definition: itkLabelShapeOpeningImageFilter.h:81
itk::LabelShapeOpeningImageFilter::InputImagePointer
typename InputImageType::Pointer InputImagePointer
Definition: itkLabelShapeOpeningImageFilter.h:62
itk::Image
Templated n-dimensional image class.
Definition: itkImage.h:86
itk::ShapeLabelObject::AttributeType
typename Superclass::AttributeType AttributeType
Definition: itkShapeLabelObject.h:75
itkLabelMapToLabelImageFilter.h
itk::LabelShapeOpeningImageFilter::m_Lambda
double m_Lambda
Definition: itkLabelShapeOpeningImageFilter.h:161
itk::Concept::EqualityComparable
Definition: itkConceptChecking.h:304
itk::LabelShapeOpeningImageFilter::OutputImageType
TInputImage OutputImageType
Definition: itkLabelShapeOpeningImageFilter.h:61
itk::DataObject
Base class for all data objects in ITK.
Definition: itkDataObject.h:293