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