ITK  5.1.0
Insight Toolkit
itkIntermodesThresholdCalculator.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  * http://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 itkIntermodesThresholdCalculator_h
20 #define itkIntermodesThresholdCalculator_h
21 
23 
24 namespace itk
25 {
26 
56 template <typename THistogram, typename TOutput = double>
57 class ITK_TEMPLATE_EXPORT IntermodesThresholdCalculator : public HistogramThresholdCalculator<THistogram, TOutput>
58 {
59 public:
60  ITK_DISALLOW_COPY_AND_ASSIGN(IntermodesThresholdCalculator);
61 
67 
69  itkNewMacro(Self);
70 
73 
75  using HistogramType = THistogram;
76  using OutputType = TOutput;
77 
78  using InstanceIdentifier = typename HistogramType::InstanceIdentifier;
79 
80  itkSetMacro(MaximumSmoothingIterations, SizeValueType);
81  itkGetConstMacro(MaximumSmoothingIterations, SizeValueType);
82 
85  itkSetMacro(UseInterMode, bool);
86  itkGetConstMacro(UseInterMode, bool);
87  itkBooleanMacro(UseInterMode);
89 
90 protected:
92  {
93  m_MaximumSmoothingIterations = 10000;
94  m_UseInterMode = true;
95  }
96 
97  ~IntermodesThresholdCalculator() override = default;
98 
99  void
100  GenerateData() override;
101  void
102  PrintSelf(std::ostream & os, Indent indent) const override;
103 
104  using TotalAbsoluteFrequencyType = typename HistogramType::TotalAbsoluteFrequencyType;
105  using AbsoluteFrequencyType = typename HistogramType::AbsoluteFrequencyType;
106 
107 private:
108  bool
109  BimodalTest(const std::vector<double> & h);
110 
113 };
114 
115 } // end namespace itk
116 
117 
118 #ifndef ITK_MANUAL_INSTANTIATION
119 # include "itkIntermodesThresholdCalculator.hxx"
120 #endif
121 
122 #endif
itk::IntermodesThresholdCalculator::m_UseInterMode
bool m_UseInterMode
Definition: itkIntermodesThresholdCalculator.h:112
itk::IntermodesThresholdCalculator::AbsoluteFrequencyType
typename HistogramType::AbsoluteFrequencyType AbsoluteFrequencyType
Definition: itkIntermodesThresholdCalculator.h:105
itk::HistogramThresholdCalculator::HistogramType
THistogram HistogramType
Definition: itkHistogramThresholdCalculator.h:65
itk::IntermodesThresholdCalculator::TotalAbsoluteFrequencyType
typename HistogramType::TotalAbsoluteFrequencyType TotalAbsoluteFrequencyType
Definition: itkIntermodesThresholdCalculator.h:104
itkHistogramThresholdCalculator.h
itk::SmartPointer< Self >
itk::Indent
Control indentation during Print() invocation.
Definition: itkIndent.h:49
itk::LightObject
Light weight base class for most itk classes.
Definition: itkLightObject.h:59
itk::IntermodesThresholdCalculator::m_MaximumSmoothingIterations
SizeValueType m_MaximumSmoothingIterations
Definition: itkIntermodesThresholdCalculator.h:111
itk::IntermodesThresholdCalculator::InstanceIdentifier
typename HistogramType::InstanceIdentifier InstanceIdentifier
Definition: itkIntermodesThresholdCalculator.h:78
itk::HistogramThresholdCalculator::OutputType
TOutput OutputType
Definition: itkHistogramThresholdCalculator.h:68
itk::IntermodesThresholdCalculator::IntermodesThresholdCalculator
IntermodesThresholdCalculator()
Definition: itkIntermodesThresholdCalculator.h:91
itk::HistogramThresholdCalculator
Base class to compute a threshold value based on the histogram of an image.
Definition: itkHistogramThresholdCalculator.h:47
itk
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....
Definition: itkArray.h:26
itk::IntermodesThresholdCalculator
Computes the Intermodes's threshold for an image.
Definition: itkIntermodesThresholdCalculator.h:57
itk::SizeValueType
unsigned long SizeValueType
Definition: itkIntTypes.h:83