ITK  5.4.0
Insight Toolkit
itkBinaryReconstructionByErosionImageFilter.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 itkBinaryReconstructionByErosionImageFilter_h
19 #define itkBinaryReconstructionByErosionImageFilter_h
20 
21 #include "itkImageToImageFilter.h"
23 #include "itkLabelMap.h"
29 
30 
31 namespace itk
32 {
33 
55 template <typename TInputImage>
56 class ITK_TEMPLATE_EXPORT BinaryReconstructionByErosionImageFilter : public ImageToImageFilter<TInputImage, TInputImage>
57 {
58 public:
59  ITK_DISALLOW_COPY_AND_MOVE(BinaryReconstructionByErosionImageFilter);
60 
66 
68  using InputImageType = TInputImage;
69  using OutputImageType = TInputImage;
73  using InputImagePixelType = typename InputImageType::PixelType;
77  using OutputImagePixelType = typename OutputImageType::PixelType;
78 
80  static constexpr unsigned int InputImageDimension = TInputImage::ImageDimension;
81  static constexpr unsigned int OutputImageDimension = TInputImage::ImageDimension;
82  static constexpr unsigned int ImageDimension = TInputImage::ImageDimension;
83 
91 
93  itkNewMacro(Self);
94 
96  itkOverrideGetNameOfClassMacro(BinaryReconstructionByErosionImageFilter);
97 
104  itkSetMacro(FullyConnected, bool);
105  itkGetConstReferenceMacro(FullyConnected, bool);
106  itkBooleanMacro(FullyConnected);
109 #ifdef ITK_USE_CONCEPT_CHECKING
110  // Begin concept checking
111  itkConceptMacro(InputEqualityComparableCheck, (Concept::EqualityComparable<InputImagePixelType>));
114  // End concept checking
115 #endif
116 
121  itkSetMacro(BackgroundValue, OutputImagePixelType);
122  itkGetConstMacro(BackgroundValue, OutputImagePixelType);
129  itkSetMacro(ForegroundValue, OutputImagePixelType);
130  itkGetConstMacro(ForegroundValue, OutputImagePixelType);
134  itkSetInputMacro(MarkerImage, InputImageType);
135  itkGetInputMacro(MarkerImage, InputImageType);
139  itkSetInputMacro(MaskImage, InputImageType);
140  itkGetInputMacro(MaskImage, InputImageType);
143 protected:
145  ~BinaryReconstructionByErosionImageFilter() override = default;
146  void
147  PrintSelf(std::ostream & os, Indent indent) const override;
148 
152  void
153  GenerateInputRequestedRegion() override;
154 
156  void
157  EnlargeOutputRequestedRegion(DataObject * itkNotUsed(output)) override;
158 
161  void
162  GenerateData() override;
163 
164 private:
165  bool m_FullyConnected{};
166  OutputImagePixelType m_BackgroundValue{};
167  OutputImagePixelType m_ForegroundValue{};
168 }; // end of class
169 
170 } // end namespace itk
171 
172 #ifndef ITK_MANUAL_INSTANTIATION
173 # include "itkBinaryReconstructionByErosionImageFilter.hxx"
174 #endif
175 
176 #endif
Pointer
SmartPointer< Self > Pointer
Definition: itkAddImageFilter.h:93
itk::BinaryReconstructionByErosionImageFilter::OutputImageRegionType
typename OutputImageType::RegionType OutputImageRegionType
Definition: itkBinaryReconstructionByErosionImageFilter.h:76
itk::BinaryNotImageFilter
Implements the BinaryNot logical operator pixel-wise between two images.
Definition: itkBinaryNotImageFilter.h:86
ConstPointer
SmartPointer< const Self > ConstPointer
Definition: itkAddImageFilter.h:94
itk::Concept::OStreamWritable
Definition: itkConceptChecking.h:638
itk::AttributeOpeningLabelMapFilter
remove the objects according to the value of their attribute
Definition: itkAttributeOpeningLabelMapFilter.h:46
itk::AttributeLabelObject
A LabelObject with a generic attribute.
Definition: itkAttributeLabelObject.h:73
itk::BinaryReconstructionByErosionImageFilter
binary reconstruction by erosion of an image
Definition: itkBinaryReconstructionByErosionImageFilter.h:56
itk::BinaryReconstructionByErosionImageFilter::InputImagePixelType
typename InputImageType::PixelType InputImagePixelType
Definition: itkBinaryReconstructionByErosionImageFilter.h:73
itkBinaryReconstructionLabelMapFilter.h
itk::SmartPointer< Self >
itk::Indent
Control indentation during Print() invocation.
Definition: itkIndent.h:49
itk::BinaryReconstructionLabelMapFilter
Mark the objects at least partially at the same position as the objects in a binary image.
Definition: itkBinaryReconstructionLabelMapFilter.h:48
itk::BinaryImageToLabelMapFilter
Label the connected components in a binary image and produce a collection of label objects.
Definition: itkBinaryImageToLabelMapFilter.h:55
itk::BinaryReconstructionByErosionImageFilter::InputImageConstPointer
typename InputImageType::ConstPointer InputImageConstPointer
Definition: itkBinaryReconstructionByErosionImageFilter.h:71
itk::LabelMap
Templated n-dimensional image to store labeled objects.
Definition: itkLabelMap.h:70
itk::LabelMapMaskImageFilter
Mask and image with a LabelMap.
Definition: itkLabelMapMaskImageFilter.h:47
itk::ImageToImageFilter
Base class for filters that take an image as input and produce an image as output.
Definition: itkImageToImageFilter.h:108
itkLabelMap.h
itk::BinaryReconstructionByErosionImageFilter::InputImageRegionType
typename InputImageType::RegionType InputImageRegionType
Definition: itkBinaryReconstructionByErosionImageFilter.h:72
itk::LightObject
Light weight base class for most itk classes.
Definition: itkLightObject.h:55
itkAttributeOpeningLabelMapFilter.h
itkAttributeLabelObject.h
itk::GTest::TypedefsAndConstructors::Dimension2::RegionType
ImageBaseType::RegionType RegionType
Definition: itkGTestTypedefsAndConstructors.h:54
itk::BinaryReconstructionByErosionImageFilter::OutputImagePointer
typename OutputImageType::Pointer OutputImagePointer
Definition: itkBinaryReconstructionByErosionImageFilter.h:74
itkBinaryNotImageFilter.h
itkImageToImageFilter.h
itkBinaryImageToLabelMapFilter.h
itk::BinaryReconstructionByErosionImageFilter::InputImageType
TInputImage InputImageType
Definition: itkBinaryReconstructionByErosionImageFilter.h:68
itk::BinaryReconstructionByErosionImageFilter::OutputImageType
TInputImage OutputImageType
Definition: itkBinaryReconstructionByErosionImageFilter.h:69
itkConceptMacro
#define itkConceptMacro(name, concept)
Definition: itkConceptChecking.h:65
itk
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....
Definition: itkAnnulusOperator.h:24
itk::BinaryReconstructionByErosionImageFilter::OutputImagePixelType
typename OutputImageType::PixelType OutputImagePixelType
Definition: itkBinaryReconstructionByErosionImageFilter.h:77
itk::BinaryReconstructionByErosionImageFilter::OutputImageConstPointer
typename OutputImageType::ConstPointer OutputImageConstPointer
Definition: itkBinaryReconstructionByErosionImageFilter.h:75
itk::Concept::Convertible
Definition: itkConceptChecking.h:216
itk::BinaryReconstructionByErosionImageFilter::InputImagePointer
typename InputImageType::Pointer InputImagePointer
Definition: itkBinaryReconstructionByErosionImageFilter.h:70
itkLabelMapMaskImageFilter.h
itk::Concept::EqualityComparable
Definition: itkConceptChecking.h:306
itk::DataObject
Base class for all data objects in ITK.
Definition: itkDataObject.h:293