ITK  5.4.0
Insight Toolkit
itkRenyiEntropyThresholdImageFilter.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 itkRenyiEntropyThresholdImageFilter_h
20#define itkRenyiEntropyThresholdImageFilter_h
21
24
25namespace itk
26{
27
51template <typename TInputImage, typename TOutputImage, typename TMaskImage = TOutputImage>
52class ITK_TEMPLATE_EXPORT RenyiEntropyThresholdImageFilter
53 : public HistogramThresholdImageFilter<TInputImage, TOutputImage, TMaskImage>
54{
55public:
56 ITK_DISALLOW_COPY_AND_MOVE(RenyiEntropyThresholdImageFilter);
57
63
65 itkNewMacro(Self);
66
68 itkOverrideGetNameOfClassMacro(RenyiEntropyThresholdImageFilter);
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:
103};
104
105} // end namespace itk
106
107#endif
Threshold an image using a HistogramThresholdCalculator.
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...
Computes the RenyiEntropy's threshold for an image.
Threshold an image using the RenyiEntropy Threshold.
typename OutputImageType::PixelType OutputPixelType
typename OutputImageType::IndexType OutputIndexType
~RenyiEntropyThresholdImageFilter() override=default
typename MaskImageType::RegionType MaskImageRegionType
static Pointer New()
SmartPointer< Self > Pointer
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....