ITK  5.4.0
Insight Toolkit
itkHuangThresholdImageFilter.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
19#ifndef itkHuangThresholdImageFilter_h
20#define itkHuangThresholdImageFilter_h
21
24
25namespace itk
26{
27
51template <typename TInputImage, typename TOutputImage, typename TMaskImage = TOutputImage>
52class ITK_TEMPLATE_EXPORT HuangThresholdImageFilter
53 : public HistogramThresholdImageFilter<TInputImage, TOutputImage, TMaskImage>
54{
55public:
56 ITK_DISALLOW_COPY_AND_MOVE(HuangThresholdImageFilter);
57
63
65 itkNewMacro(Self);
66
68 itkOverrideGetNameOfClassMacro(HuangThresholdImageFilter);
69
70 using InputImageType = TInputImage;
71 using OutputImageType = TOutputImage;
72 using MaskImageType = TMaskImage;
73
75 using InputPixelType = typename InputImageType::PixelType;
76 using OutputPixelType = typename OutputImageType::PixelType;
77 using MaskPixelType = typename MaskImageType::PixelType;
78
82
92
93 using typename Superclass::HistogramType;
95
97 static constexpr unsigned int InputImageDimension = InputImageType::ImageDimension;
98 static constexpr unsigned int OutputImageDimension = OutputImageType::ImageDimension;
99
100protected:
101 HuangThresholdImageFilter() { this->SetCalculator(CalculatorType::New()); }
102 ~HuangThresholdImageFilter() override = default;
103};
104
105} // end namespace itk
106
107#endif
Threshold an image using a HistogramThresholdCalculator.
Computes the Huang's threshold for an image.
Threshold an image using the Huang Threshold.
typename InputImageType::IndexType InputIndexType
typename MaskImageType::RegionType MaskImageRegionType
typename MaskImageType::SizeType MaskSizeType
typename InputImageType::SizeType InputSizeType
typename OutputImageType::PixelType OutputPixelType
typename OutputImageType::IndexType OutputIndexType
typename OutputImageType::SizeType OutputSizeType
~HuangThresholdImageFilter() override=default
typename InputImageType::PixelType InputPixelType
typename MaskImageType::PixelType MaskPixelType
typename MaskImageType::IndexType MaskIndexType
Base class for all process objects that output image data.
typename OutputImageType::RegionType OutputImageRegionType
TOutputImage OutputImageType
typename OutputImageType::Pointer OutputImagePointer
typename InputImageType::Pointer InputImagePointer
typename InputImageType::RegionType InputImageRegionType
The base class for all process objects (source, filters, mappers) in the Insight data processing pipe...
static Pointer New()
SmartPointer< Self > Pointer
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....