ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkOpeningByReconstructionImageFilter.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 itkOpeningByReconstructionImageFilter_h
19#define itkOpeningByReconstructionImageFilter_h
20
22
23namespace itk
24{
52template <typename TInputImage, typename TOutputImage, typename TKernel>
53class ITK_TEMPLATE_EXPORT OpeningByReconstructionImageFilter : public ImageToImageFilter<TInputImage, TOutputImage>
54{
55public:
56 ITK_DISALLOW_COPY_AND_MOVE(OpeningByReconstructionImageFilter);
57
63
65 using InputImageType = TInputImage;
66 using InputImagePointer = typename InputImageType::Pointer;
67 using InputImageConstPointer = typename InputImageType::ConstPointer;
68 using InputImageRegionType = typename InputImageType::RegionType;
69 using InputImagePixelType = typename InputImageType::PixelType;
70 using OutputImageType = TOutputImage;
71 using OutputImagePointer = typename OutputImageType::Pointer;
72 using OutputImageConstPointer = typename OutputImageType::ConstPointer;
73 using OutputImageRegionType = typename OutputImageType::RegionType;
74 using OutputImagePixelType = typename OutputImageType::PixelType;
75
77 using KernelType = TKernel;
78
80 static constexpr unsigned int InputImageDimension = TInputImage::ImageDimension;
81 static constexpr unsigned int OutputImageDimension = TOutputImage::ImageDimension;
82
84 itkNewMacro(Self);
85
87 itkOverrideGetNameOfClassMacro(OpeningByReconstructionImageFilter);
88
90 itkSetMacro(Kernel, KernelType);
91
93 itkGetConstReferenceMacro(Kernel, KernelType);
94
102 itkSetMacro(FullyConnected, bool);
103 itkGetConstReferenceMacro(FullyConnected, bool);
104 itkBooleanMacro(FullyConnected);
111 itkSetMacro(PreserveIntensities, bool);
112 itkGetConstReferenceMacro(PreserveIntensities, bool);
113 itkBooleanMacro(PreserveIntensities);
116
117protected:
120 void
121 PrintSelf(std::ostream & os, Indent indent) const override;
122
126 void
128
130 void
131 EnlargeOutputRequestedRegion(DataObject * itkNotUsed(output)) override;
132
133 void
134 GenerateData() override;
135
136private:
141}; // end of class
142} // end namespace itk
143
144#ifndef ITK_MANUAL_INSTANTIATION
145# include "itkOpeningByReconstructionImageFilter.hxx"
146#endif
147
148#endif
Base class for all data objects in ITK.
Control indentation during Print() invocation.
Definition itkIndent.h:50
typename InputImageType::ConstPointer InputImageConstPointer
void PrintSelf(std::ostream &os, Indent indent) const override
typename OutputImageType::ConstPointer OutputImageConstPointer
ImageToImageFilter< TInputImage, TOutputImage > Superclass
~OpeningByReconstructionImageFilter() override=default
void EnlargeOutputRequestedRegion(DataObject *output) override
Implements transparent reference counting.
#define itkConceptMacro(name, concept)
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....