ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
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
23#include "itkLabelMap.h"
28
29
30namespace itk
31{
32
53template <typename TInputImage>
55 : public ImageToImageFilter<TInputImage, TInputImage>
56{
57public:
58 ITK_DISALLOW_COPY_AND_MOVE(BinaryReconstructionByDilationImageFilter);
59
65
67 using InputImageType = TInputImage;
68 using OutputImageType = TInputImage;
69 using InputImagePointer = typename InputImageType::Pointer;
70 using InputImageConstPointer = typename InputImageType::ConstPointer;
71 using InputImageRegionType = typename InputImageType::RegionType;
72 using InputImagePixelType = typename InputImageType::PixelType;
73 using OutputImagePointer = typename OutputImageType::Pointer;
74 using OutputImageConstPointer = typename OutputImageType::ConstPointer;
75 using OutputImageRegionType = typename OutputImageType::RegionType;
76 using OutputImagePixelType = typename OutputImageType::PixelType;
77
79 static constexpr unsigned int InputImageDimension = TInputImage::ImageDimension;
80 static constexpr unsigned int OutputImageDimension = TInputImage::ImageDimension;
81 static constexpr unsigned int ImageDimension = TInputImage::ImageDimension;
82
89
91 itkNewMacro(Self);
92
94 itkOverrideGetNameOfClassMacro(BinaryReconstructionByDilationImageFilter);
95
103 itkSetMacro(FullyConnected, bool);
104 itkGetConstReferenceMacro(FullyConnected, bool);
105 itkBooleanMacro(FullyConnected);
110
116 itkSetMacro(BackgroundValue, OutputImagePixelType);
117 itkGetConstMacro(BackgroundValue, OutputImagePixelType);
124 itkSetMacro(ForegroundValue, OutputImagePixelType);
125 itkGetConstMacro(ForegroundValue, OutputImagePixelType);
137protected:
140 void
141 PrintSelf(std::ostream & os, Indent indent) const override;
142
146 void
148
150 void
151 EnlargeOutputRequestedRegion(DataObject * itkNotUsed(output)) override;
152
155 void
156 GenerateData() override;
157
158private:
162}; // end of class
163
164} // end namespace itk
165
166#ifndef ITK_MANUAL_INSTANTIATION
167# include "itkBinaryReconstructionByDilationImageFilter.hxx"
168#endif
169
170#endif
A LabelObject with a generic attribute.
remove the objects according to the value of their attribute
Label the connected components in a binary image and produce a collection of label objects.
LabelMapToBinaryImageFilter< LabelMapType, OutputImageType > BinarizerType
void EnlargeOutputRequestedRegion(DataObject *output) override
AttributeLabelObject< SizeValueType, ImageDimension, bool > LabelObjectType
itkGetInputMacro(MarkerImage, InputImageType)
BinaryImageToLabelMapFilter< InputImageType, LabelMapType > LabelizerType
BinaryReconstructionLabelMapFilter< LabelMapType, InputImageType > ReconstructionType
void PrintSelf(std::ostream &os, Indent indent) const override
~BinaryReconstructionByDilationImageFilter() override=default
itkSetInputMacro(MarkerImage, InputImageType)
itkSetInputMacro(MaskImage, InputImageType)
itkGetInputMacro(MaskImage, InputImageType)
Mark the objects at least partially at the same position as the objects in a binary image.
Base class for all data objects in ITK.
Control indentation during Print() invocation.
Definition itkIndent.h:50
Convert a LabelMap to a binary image.
Templated n-dimensional image to store labeled objects.
Definition itkLabelMap.h:71
Implements transparent reference counting.
#define itkConceptMacro(name, concept)
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....