ITK  5.0.0
Insight Segmentation and Registration Toolkit
Public Types | Public Member Functions | Protected Member Functions | Private Attributes | List of all members
itk::OtsuMultipleThresholdsCalculator< TInputHistogram > Class Template Reference

#include <itkOtsuMultipleThresholdsCalculator.h>

+ Inheritance diagram for itk::OtsuMultipleThresholdsCalculator< TInputHistogram >:
+ Collaboration diagram for itk::OtsuMultipleThresholdsCalculator< TInputHistogram >:

Detailed Description

template<typename TInputHistogram>
class itk::OtsuMultipleThresholdsCalculator< TInputHistogram >

Computes Otsu's multiple thresholds for a histogram.

You plug in the target histogram using SetInputHistogram method and specify the number of thresholds you want to be computed. Then call the Compute() method to run the algorithm.

The thresholds are computed so that the between-class variance is maximized.

This calculator also includes an option to use the valley emphasis algorithm from H.F. Ng, "Automatic thresholding for defect detection", Pattern Recognition Letters, (27): 1644-1649, 2006. The valley emphasis algorithm is particularly effective when the object to be thresholded is small. See the following tests for examples: itkOtsuMultipleThresholdsImageFilterTest3 and itkOtsuMultipleThresholdsImageFilterTest4 To use this algorithm, simple call the setter: SetValleyEmphasis(true) It is turned off by default.

Examples:
Examples/Filtering/OtsuMultipleThresholdImageFilter.cxx.

Definition at line 49 of file itkOtsuMultipleThresholdsCalculator.h.

Public Types

using ConstPointer = SmartPointer< const Self >
 
using FrequencyType = typename TInputHistogram::AbsoluteFrequencyType
 
using FrequencyVectorType = std::vector< FrequencyType >
 
using InstanceIdentifierType = typename TInputHistogram::InstanceIdentifier
 
using InstanceIdentifierVectorType = std::vector< InstanceIdentifierType >
 
using MeanType = typename NumericTraits< MeasurementType >::RealType
 
using MeanVectorType = std::vector< MeanType >
 
using MeasurementType = typename TInputHistogram::MeasurementType
 
using OutputType = std::vector< MeasurementType >
 
using Pointer = SmartPointer< Self >
 
using Self = OtsuMultipleThresholdsCalculator
 
using Superclass = HistogramAlgorithmBase< TInputHistogram >
 
using VarianceType = typename NumericTraits< MeasurementType >::RealType
 
using WeightType = typename NumericTraits< MeasurementType >::RealType
 
using WeightVectorType = std::vector< WeightType >
 
- Public Types inherited from itk::HistogramAlgorithmBase< TInputHistogram >
using ConstPointer = SmartPointer< const Self >
 
using InputHistogramType = TInputHistogram
 
using Pointer = SmartPointer< Self >
 
using Self = HistogramAlgorithmBase
 
using Superclass = Object
 
- Public Types inherited from itk::Object
using ConstPointer = SmartPointer< const Self >
 
using Pointer = SmartPointer< Self >
 
using Self = Object
 
using Superclass = LightObject
 
- Public Types inherited from itk::LightObject
using ConstPointer = SmartPointer< const Self >
 
using Pointer = SmartPointer< Self >
 
using Self = LightObject
 

Public Member Functions

void Compute () override
 
const OutputTypeGetOutput ()
 
virtual void SetNumberOfThresholds (SizeValueType _arg)
 
virtual SizeValueType GetNumberOfThresholds () const
 
virtual void SetValleyEmphasis (bool _arg)
 
virtual const bool & GetValleyEmphasis () const
 
virtual void ValleyEmphasisOn ()
 
virtual void ValleyEmphasisOff ()
 
virtual void SetReturnBinMidpoint (bool _arg)
 
virtual const bool & GetReturnBinMidpoint () const
 
virtual void ReturnBinMidpointOn ()
 
virtual void ReturnBinMidpointOff ()
 
- Public Member Functions inherited from itk::HistogramAlgorithmBase< TInputHistogram >
const TInputHistogram * GetInputHistogram () const
 
void SetInputHistogram (const TInputHistogram *histogram)
 
- Public Member Functions inherited from itk::Object
unsigned long AddObserver (const EventObject &event, Command *)
 
unsigned long AddObserver (const EventObject &event, Command *) const
 
virtual void DebugOff () const
 
virtual void DebugOn () const
 
CommandGetCommand (unsigned long tag)
 
bool GetDebug () const
 
MetaDataDictionaryGetMetaDataDictionary ()
 
const MetaDataDictionaryGetMetaDataDictionary () const
 
virtual ModifiedTimeType GetMTime () const
 
virtual const TimeStampGetTimeStamp () const
 
bool HasObserver (const EventObject &event) const
 
void InvokeEvent (const EventObject &)
 
void InvokeEvent (const EventObject &) const
 
virtual void Modified () const
 
void Register () const override
 
void RemoveAllObservers ()
 
void RemoveObserver (unsigned long tag)
 
void SetDebug (bool debugFlag) const
 
void SetReferenceCount (int) override
 
void UnRegister () const noexceptoverride
 
void SetMetaDataDictionary (const MetaDataDictionary &rhs)
 
void SetMetaDataDictionary (MetaDataDictionary &&rrhs)
 
virtual void SetObjectName (std::string _arg)
 
virtual const std::string & GetObjectName () const
 
- Public Member Functions inherited from itk::LightObject
virtual void Delete ()
 
virtual int GetReferenceCount () const
 
 itkCloneMacro (Self)
 
void Print (std::ostream &os, Indent indent=0) const
 

Protected Member Functions

bool IncrementThresholds (InstanceIdentifierVectorType &thresholdIds, MeanType totalMean, MeanVectorType &classMean, FrequencyVectorType &classFrequency)
 
 OtsuMultipleThresholdsCalculator ()
 
void PrintSelf (std::ostream &os, Indent indent) const override
 
 ~OtsuMultipleThresholdsCalculator () override=default
 
- Protected Member Functions inherited from itk::HistogramAlgorithmBase< TInputHistogram >
 HistogramAlgorithmBase ()
 
 ~HistogramAlgorithmBase () override=default
 
- Protected Member Functions inherited from itk::Object
 Object ()
 
bool PrintObservers (std::ostream &os, Indent indent) const
 
virtual void SetTimeStamp (const TimeStamp &time)
 
 ~Object () override
 
- Protected Member Functions inherited from itk::LightObject
virtual LightObject::Pointer InternalClone () const
 
 LightObject ()
 
virtual void PrintHeader (std::ostream &os, Indent indent) const
 
virtual void PrintTrailer (std::ostream &os, Indent indent) const
 
virtual ~LightObject ()
 

Private Attributes

SizeValueType m_NumberOfThresholds { 1 }
 
OutputType m_Output
 
bool m_ReturnBinMidpoint { false }
 
bool m_ValleyEmphasis { false }
 
virtual const char * GetNameOfClass () const
 
virtual ::itk::LightObject::Pointer CreateAnother () const
 
static Pointer New ()
 

Additional Inherited Members

- Static Public Member Functions inherited from itk::Object
static bool GetGlobalWarningDisplay ()
 
static void GlobalWarningDisplayOff ()
 
static void GlobalWarningDisplayOn ()
 
static Pointer New ()
 
static void SetGlobalWarningDisplay (bool flag)
 
- Static Public Member Functions inherited from itk::LightObject
static void BreakOnError ()
 
static Pointer New ()
 
- Protected Attributes inherited from itk::LightObject
std::atomic< int > m_ReferenceCount
 

Member Typedef Documentation

template<typename TInputHistogram>
using itk::OtsuMultipleThresholdsCalculator< TInputHistogram >::ConstPointer = SmartPointer< const Self >

Definition at line 57 of file itkOtsuMultipleThresholdsCalculator.h.

template<typename TInputHistogram>
using itk::OtsuMultipleThresholdsCalculator< TInputHistogram >::FrequencyType = typename TInputHistogram::AbsoluteFrequencyType

Definition at line 60 of file itkOtsuMultipleThresholdsCalculator.h.

template<typename TInputHistogram>
using itk::OtsuMultipleThresholdsCalculator< TInputHistogram >::FrequencyVectorType = std::vector< FrequencyType >

Definition at line 67 of file itkOtsuMultipleThresholdsCalculator.h.

template<typename TInputHistogram>
using itk::OtsuMultipleThresholdsCalculator< TInputHistogram >::InstanceIdentifierType = typename TInputHistogram::InstanceIdentifier

Definition at line 70 of file itkOtsuMultipleThresholdsCalculator.h.

template<typename TInputHistogram>
using itk::OtsuMultipleThresholdsCalculator< TInputHistogram >::InstanceIdentifierVectorType = std::vector< InstanceIdentifierType >

Definition at line 71 of file itkOtsuMultipleThresholdsCalculator.h.

template<typename TInputHistogram>
using itk::OtsuMultipleThresholdsCalculator< TInputHistogram >::MeanType = typename NumericTraits< MeasurementType >::RealType

Definition at line 62 of file itkOtsuMultipleThresholdsCalculator.h.

template<typename TInputHistogram>
using itk::OtsuMultipleThresholdsCalculator< TInputHistogram >::MeanVectorType = std::vector< MeanType >

Definition at line 66 of file itkOtsuMultipleThresholdsCalculator.h.

template<typename TInputHistogram>
using itk::OtsuMultipleThresholdsCalculator< TInputHistogram >::MeasurementType = typename TInputHistogram::MeasurementType

Definition at line 59 of file itkOtsuMultipleThresholdsCalculator.h.

template<typename TInputHistogram>
using itk::OtsuMultipleThresholdsCalculator< TInputHistogram >::OutputType = std::vector< MeasurementType >

Typedef for the thresholds output

Definition at line 79 of file itkOtsuMultipleThresholdsCalculator.h.

template<typename TInputHistogram>
using itk::OtsuMultipleThresholdsCalculator< TInputHistogram >::Pointer = SmartPointer< Self >

Definition at line 56 of file itkOtsuMultipleThresholdsCalculator.h.

template<typename TInputHistogram>
using itk::OtsuMultipleThresholdsCalculator< TInputHistogram >::Self = OtsuMultipleThresholdsCalculator

Standard class type aliases.

Definition at line 54 of file itkOtsuMultipleThresholdsCalculator.h.

template<typename TInputHistogram>
using itk::OtsuMultipleThresholdsCalculator< TInputHistogram >::Superclass = HistogramAlgorithmBase< TInputHistogram >

Definition at line 55 of file itkOtsuMultipleThresholdsCalculator.h.

template<typename TInputHistogram>
using itk::OtsuMultipleThresholdsCalculator< TInputHistogram >::VarianceType = typename NumericTraits< MeasurementType >::RealType

Definition at line 63 of file itkOtsuMultipleThresholdsCalculator.h.

template<typename TInputHistogram>
using itk::OtsuMultipleThresholdsCalculator< TInputHistogram >::WeightType = typename NumericTraits< MeasurementType >::RealType

Definition at line 64 of file itkOtsuMultipleThresholdsCalculator.h.

template<typename TInputHistogram>
using itk::OtsuMultipleThresholdsCalculator< TInputHistogram >::WeightVectorType = std::vector< WeightType >

Definition at line 68 of file itkOtsuMultipleThresholdsCalculator.h.

Constructor & Destructor Documentation

template<typename TInputHistogram>
itk::OtsuMultipleThresholdsCalculator< TInputHistogram >::OtsuMultipleThresholdsCalculator ( )
protected
template<typename TInputHistogram>
itk::OtsuMultipleThresholdsCalculator< TInputHistogram >::~OtsuMultipleThresholdsCalculator ( )
overrideprotecteddefault

Member Function Documentation

template<typename TInputHistogram>
void itk::OtsuMultipleThresholdsCalculator< TInputHistogram >::Compute ( )
overridevirtual

Calculates Otsu's thresholds and saves them.

Implements itk::HistogramAlgorithmBase< TInputHistogram >.

template<typename TInputHistogram>
virtual::itk::LightObject::Pointer itk::OtsuMultipleThresholdsCalculator< TInputHistogram >::CreateAnother ( ) const
virtual

Standard Macros

Reimplemented from itk::Object.

template<typename TInputHistogram>
virtual const char* itk::OtsuMultipleThresholdsCalculator< TInputHistogram >::GetNameOfClass ( ) const
virtual

Standard Macros

Reimplemented from itk::HistogramAlgorithmBase< TInputHistogram >.

template<typename TInputHistogram>
virtual SizeValueType itk::OtsuMultipleThresholdsCalculator< TInputHistogram >::GetNumberOfThresholds ( ) const
virtual

Set/Get the number of thresholds.

template<typename TInputHistogram>
const OutputType& itk::OtsuMultipleThresholdsCalculator< TInputHistogram >::GetOutput ( )

Returns the thresholds vector

template<typename TInputHistogram>
virtual const bool& itk::OtsuMultipleThresholdsCalculator< TInputHistogram >::GetReturnBinMidpoint ( ) const
virtual

Should the threshold value be mid-point of the bin or the maximum? Default is to return bin maximum.

template<typename TInputHistogram>
virtual const bool& itk::OtsuMultipleThresholdsCalculator< TInputHistogram >::GetValleyEmphasis ( ) const
virtual

Set/Get the use of valley emphasis. Default is false.

template<typename TInputHistogram>
bool itk::OtsuMultipleThresholdsCalculator< TInputHistogram >::IncrementThresholds ( InstanceIdentifierVectorType thresholdIds,
MeanType  totalMean,
MeanVectorType classMean,
FrequencyVectorType classFrequency 
)
protected

Increment the thresholds of one position along the histogram.

template<typename TInputHistogram>
static Pointer itk::OtsuMultipleThresholdsCalculator< TInputHistogram >::New ( )
static
template<typename TInputHistogram>
void itk::OtsuMultipleThresholdsCalculator< TInputHistogram >::PrintSelf ( std::ostream &  os,
Indent  indent 
) const
overrideprotectedvirtual

Methods invoked by Print() to print information about the object including superclasses. Typically not called by the user (use Print() instead) but used in the hierarchical print process to combine the output of several classes.

Reimplemented from itk::HistogramAlgorithmBase< TInputHistogram >.

template<typename TInputHistogram>
virtual void itk::OtsuMultipleThresholdsCalculator< TInputHistogram >::ReturnBinMidpointOff ( )
virtual

Should the threshold value be mid-point of the bin or the maximum? Default is to return bin maximum.

template<typename TInputHistogram>
virtual void itk::OtsuMultipleThresholdsCalculator< TInputHistogram >::ReturnBinMidpointOn ( )
virtual

Should the threshold value be mid-point of the bin or the maximum? Default is to return bin maximum.

template<typename TInputHistogram>
virtual void itk::OtsuMultipleThresholdsCalculator< TInputHistogram >::SetNumberOfThresholds ( SizeValueType  _arg)
virtual

Set/Get the number of thresholds.

template<typename TInputHistogram>
virtual void itk::OtsuMultipleThresholdsCalculator< TInputHistogram >::SetReturnBinMidpoint ( bool  _arg)
virtual

Should the threshold value be mid-point of the bin or the maximum? Default is to return bin maximum.

template<typename TInputHistogram>
virtual void itk::OtsuMultipleThresholdsCalculator< TInputHistogram >::SetValleyEmphasis ( bool  _arg)
virtual

Set/Get the use of valley emphasis. Default is false.

template<typename TInputHistogram>
virtual void itk::OtsuMultipleThresholdsCalculator< TInputHistogram >::ValleyEmphasisOff ( )
virtual

Set/Get the use of valley emphasis. Default is false.

template<typename TInputHistogram>
virtual void itk::OtsuMultipleThresholdsCalculator< TInputHistogram >::ValleyEmphasisOn ( )
virtual

Set/Get the use of valley emphasis. Default is false.

Member Data Documentation

template<typename TInputHistogram>
SizeValueType itk::OtsuMultipleThresholdsCalculator< TInputHistogram >::m_NumberOfThresholds { 1 }
private

Definition at line 119 of file itkOtsuMultipleThresholdsCalculator.h.

template<typename TInputHistogram>
OutputType itk::OtsuMultipleThresholdsCalculator< TInputHistogram >::m_Output
private

Definition at line 120 of file itkOtsuMultipleThresholdsCalculator.h.

template<typename TInputHistogram>
bool itk::OtsuMultipleThresholdsCalculator< TInputHistogram >::m_ReturnBinMidpoint { false }
private

Definition at line 125 of file itkOtsuMultipleThresholdsCalculator.h.

template<typename TInputHistogram>
bool itk::OtsuMultipleThresholdsCalculator< TInputHistogram >::m_ValleyEmphasis { false }
private

Definition at line 121 of file itkOtsuMultipleThresholdsCalculator.h.


The documentation for this class was generated from the following file: