ITK  5.4.0
Insight Toolkit
itkBinaryReconstructionByDilationImageFilter.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 itkBinaryReconstructionByDilationImageFilter_h
19 #define itkBinaryReconstructionByDilationImageFilter_h
20 
21 #include "itkImageToImageFilter.h"
23 #include "itkLabelMap.h"
28 
29 
30 namespace itk
31 {
32 
55 template <typename TInputImage>
57  : public ImageToImageFilter<TInputImage, TInputImage>
58 {
59 public:
60  ITK_DISALLOW_COPY_AND_MOVE(BinaryReconstructionByDilationImageFilter);
61 
67 
69  using InputImageType = TInputImage;
70  using OutputImageType = TInputImage;
74  using InputImagePixelType = typename InputImageType::PixelType;
78  using OutputImagePixelType = typename OutputImageType::PixelType;
79 
81  static constexpr unsigned int InputImageDimension = TInputImage::ImageDimension;
82  static constexpr unsigned int OutputImageDimension = TInputImage::ImageDimension;
83  static constexpr unsigned int ImageDimension = TInputImage::ImageDimension;
84 
91 
93  itkNewMacro(Self);
94 
96  itkOverrideGetNameOfClassMacro(BinaryReconstructionByDilationImageFilter);
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  ~BinaryReconstructionByDilationImageFilter() 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 "itkBinaryReconstructionByDilationImageFilter.hxx"
174 #endif
175 
176 #endif
itk::BinaryReconstructionByDilationImageFilter::OutputImagePixelType
typename OutputImageType::PixelType OutputImagePixelType
Definition: itkBinaryReconstructionByDilationImageFilter.h:78
Pointer
SmartPointer< Self > Pointer
Definition: itkAddImageFilter.h:93
itk::BinaryReconstructionByDilationImageFilter::OutputImageRegionType
typename OutputImageType::RegionType OutputImageRegionType
Definition: itkBinaryReconstructionByDilationImageFilter.h:77
ConstPointer
SmartPointer< const Self > ConstPointer
Definition: itkAddImageFilter.h:94
itk::Concept::OStreamWritable
Definition: itkConceptChecking.h:636
itk::AttributeOpeningLabelMapFilter
remove the objects according to the value of their attribute
Definition: itkAttributeOpeningLabelMapFilter.h:46
itk::BinaryReconstructionByDilationImageFilter::InputImagePixelType
typename InputImageType::PixelType InputImagePixelType
Definition: itkBinaryReconstructionByDilationImageFilter.h:74
itk::BinaryReconstructionByDilationImageFilter::OutputImagePointer
typename OutputImageType::Pointer OutputImagePointer
Definition: itkBinaryReconstructionByDilationImageFilter.h:75
itk::BinaryReconstructionByDilationImageFilter::OutputImageType
TInputImage OutputImageType
Definition: itkBinaryReconstructionByDilationImageFilter.h:70
itk::BinaryReconstructionByDilationImageFilter::OutputImageConstPointer
typename OutputImageType::ConstPointer OutputImageConstPointer
Definition: itkBinaryReconstructionByDilationImageFilter.h:76
itk::AttributeLabelObject
A LabelObject with a generic attribute.
Definition: itkAttributeLabelObject.h:73
itk::LabelMapToBinaryImageFilter
Convert a LabelMap to a binary image.
Definition: itkLabelMapToBinaryImageFilter.h:45
itkBinaryReconstructionLabelMapFilter.h
itk::BinaryReconstructionByDilationImageFilter::InputImageType
TInputImage InputImageType
Definition: itkBinaryReconstructionByDilationImageFilter.h:69
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::BinaryReconstructionByDilationImageFilter
binary reconstruction by dilation of an image
Definition: itkBinaryReconstructionByDilationImageFilter.h:56
itk::BinaryReconstructionByDilationImageFilter::InputImagePointer
typename InputImageType::Pointer InputImagePointer
Definition: itkBinaryReconstructionByDilationImageFilter.h:71
itk::LabelMap
Templated n-dimensional image to store labeled objects.
Definition: itkLabelMap.h:70
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::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
itkLabelMapToBinaryImageFilter.h
itkImageToImageFilter.h
itkBinaryImageToLabelMapFilter.h
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::BinaryReconstructionByDilationImageFilter::InputImageRegionType
typename InputImageType::RegionType InputImageRegionType
Definition: itkBinaryReconstructionByDilationImageFilter.h:73
itk::Concept::Convertible
Definition: itkConceptChecking.h:216
itk::Concept::EqualityComparable
Definition: itkConceptChecking.h:306
itk::DataObject
Base class for all data objects in ITK.
Definition: itkDataObject.h:293
itk::BinaryReconstructionByDilationImageFilter::InputImageConstPointer
typename InputImageType::ConstPointer InputImageConstPointer
Definition: itkBinaryReconstructionByDilationImageFilter.h:72