ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkWhiteTopHatImageFilter.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 itkWhiteTopHatImageFilter_h
19#define itkWhiteTopHatImageFilter_h
20
23
24
25namespace itk
26{
27
38template <typename TInputImage, typename TOutputImage, typename TKernel>
39class ITK_TEMPLATE_EXPORT WhiteTopHatImageFilter : public KernelImageFilter<TInputImage, TOutputImage, TKernel>
40{
41public:
42 ITK_DISALLOW_COPY_AND_MOVE(WhiteTopHatImageFilter);
43
49
51 using InputImageType = TInputImage;
52 using OutputImageType = TOutputImage;
53 using InputImagePointer = typename InputImageType::Pointer;
54 using InputImageConstPointer = typename InputImageType::ConstPointer;
55 using InputImageRegionType = typename InputImageType::RegionType;
56 using InputImagePixelType = typename InputImageType::PixelType;
57 using OutputImagePointer = typename OutputImageType::Pointer;
58 using OutputImageConstPointer = typename OutputImageType::ConstPointer;
59 using OutputImageRegionType = typename OutputImageType::RegionType;
60 using OutputImagePixelType = typename OutputImageType::PixelType;
61
63 using KernelType = TKernel;
64
66 static constexpr unsigned int InputImageDimension = TInputImage::ImageDimension;
67 static constexpr unsigned int OutputImageDimension = TOutputImage::ImageDimension;
68
70
71#if !defined(ITK_LEGACY_REMOVE)
73 using AlgorithmType = AlgorithmEnum;
74 // We need to expose the enum values at the class level
75 // for backwards compatibility
76 static constexpr AlgorithmType BASIC = AlgorithmEnum::BASIC;
77 static constexpr AlgorithmType HISTO = AlgorithmEnum::HISTO;
78 static constexpr AlgorithmType ANCHOR = AlgorithmEnum::ANCHOR;
79 static constexpr AlgorithmType VHGW = AlgorithmEnum::VHGW;
80#endif
81
83 itkNewMacro(Self);
84
86 itkOverrideGetNameOfClassMacro(WhiteTopHatImageFilter);
87
91 itkSetMacro(SafeBorder, bool);
92 itkGetConstReferenceMacro(SafeBorder, bool);
93 itkBooleanMacro(SafeBorder);
97 itkSetMacro(Algorithm, AlgorithmEnum);
98 itkGetConstMacro(Algorithm, AlgorithmEnum);
100 itkSetMacro(ForceAlgorithm, bool);
101 itkGetConstReferenceMacro(ForceAlgorithm, bool);
102 itkBooleanMacro(ForceAlgorithm);
103
104protected:
106 ~WhiteTopHatImageFilter() override = default;
107 void
108 PrintSelf(std::ostream & os, Indent indent) const override;
109
110 void
111 GenerateData() override;
112
113private:
115
117
119}; // end of class
120} // end namespace itk
121
122#ifndef ITK_MANUAL_INSTANTIATION
123# include "itkWhiteTopHatImageFilter.hxx"
124#endif
125
126#endif
Algorithm or implementation used in the dilation/erosion operations.
Control indentation during Print() invocation.
Definition itkIndent.h:50
Implements transparent reference counting.
KernelImageFilter< TInputImage, TOutputImage, TKernel > Superclass
static constexpr unsigned int OutputImageDimension
void GenerateData() override
typename InputImageType::PixelType InputImagePixelType
~WhiteTopHatImageFilter() override=default
typename OutputImageType::PixelType OutputImagePixelType
typename OutputImageType::Pointer OutputImagePointer
SmartPointer< const Self > ConstPointer
typename OutputImageType::RegionType OutputImageRegionType
typename InputImageType::RegionType InputImageRegionType
void PrintSelf(std::ostream &os, Indent indent) const override
typename OutputImageType::ConstPointer OutputImageConstPointer
static constexpr unsigned int InputImageDimension
MathematicalMorphologyEnums::Algorithm AlgorithmEnum
typename InputImageType::Pointer InputImagePointer
typename InputImageType::ConstPointer InputImageConstPointer
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....