ITK
5.2.0
Insight Toolkit
|
#include <itkOtsuMultipleThresholdsCalculator.h>
Additional Inherited Members | |
Public Member Functions inherited from itk::HistogramAlgorithmBase< TInputHistogram > | |
void | SetInputHistogram (const TInputHistogram *histogram) |
const TInputHistogram * | GetInputHistogram () const |
Public Member Functions inherited from itk::Object | |
unsigned long | AddObserver (const EventObject &event, Command *) |
unsigned long | AddObserver (const EventObject &event, Command *) const |
unsigned long | AddObserver (const EventObject &event, std::function< void(const EventObject &)> function) const |
virtual void | DebugOff () const |
virtual void | DebugOn () const |
Command * | GetCommand (unsigned long tag) |
bool | GetDebug () const |
MetaDataDictionary & | GetMetaDataDictionary () |
const MetaDataDictionary & | GetMetaDataDictionary () const |
virtual ModifiedTimeType | GetMTime () const |
virtual const TimeStamp & | GetTimeStamp () 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 noexcept override |
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 | |
Pointer | Clone () const |
virtual void | Delete () |
virtual int | GetReferenceCount () const |
void | Print (std::ostream &os, Indent indent=0) const |
Static Public Member Functions inherited from itk::Object | |
static bool | GetGlobalWarningDisplay () |
static void | GlobalWarningDisplayOff () |
static void | GlobalWarningDisplayOn () |
static Pointer | New () |
static void | SetGlobalWarningDisplay (bool val) |
Static Public Member Functions inherited from itk::LightObject | |
static void | BreakOnError () |
static Pointer | New () |
Protected Member Functions inherited from itk::HistogramAlgorithmBase< TInputHistogram > | |
HistogramAlgorithmBase () | |
~HistogramAlgorithmBase () override=default | |
Protected Member Functions inherited from itk::Object | |
Object () | |
~Object () override | |
bool | PrintObservers (std::ostream &os, Indent indent) const |
virtual void | SetTimeStamp (const TimeStamp &timeStamp) |
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 () |
Protected Attributes inherited from itk::LightObject | |
std::atomic< int > | m_ReferenceCount |
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.
Definition at line 50 of file itkOtsuMultipleThresholdsCalculator.h.
using itk::OtsuMultipleThresholdsCalculator< TInputHistogram >::ConstPointer = SmartPointer<const Self> |
Definition at line 57 of file itkOtsuMultipleThresholdsCalculator.h.
using itk::OtsuMultipleThresholdsCalculator< TInputHistogram >::FrequencyType = typename TInputHistogram::AbsoluteFrequencyType |
Definition at line 60 of file itkOtsuMultipleThresholdsCalculator.h.
using itk::OtsuMultipleThresholdsCalculator< TInputHistogram >::FrequencyVectorType = std::vector<FrequencyType> |
Definition at line 67 of file itkOtsuMultipleThresholdsCalculator.h.
using itk::OtsuMultipleThresholdsCalculator< TInputHistogram >::InstanceIdentifierType = typename TInputHistogram::InstanceIdentifier |
Definition at line 70 of file itkOtsuMultipleThresholdsCalculator.h.
using itk::OtsuMultipleThresholdsCalculator< TInputHistogram >::InstanceIdentifierVectorType = std::vector<InstanceIdentifierType> |
Definition at line 71 of file itkOtsuMultipleThresholdsCalculator.h.
using itk::OtsuMultipleThresholdsCalculator< TInputHistogram >::MeanType = typename NumericTraits<MeasurementType>::RealType |
Definition at line 62 of file itkOtsuMultipleThresholdsCalculator.h.
using itk::OtsuMultipleThresholdsCalculator< TInputHistogram >::MeanVectorType = std::vector<MeanType> |
Definition at line 66 of file itkOtsuMultipleThresholdsCalculator.h.
using itk::OtsuMultipleThresholdsCalculator< TInputHistogram >::MeasurementType = typename TInputHistogram::MeasurementType |
Definition at line 59 of file itkOtsuMultipleThresholdsCalculator.h.
using itk::OtsuMultipleThresholdsCalculator< TInputHistogram >::OutputType = std::vector<MeasurementType> |
Typedef for the thresholds output
Definition at line 79 of file itkOtsuMultipleThresholdsCalculator.h.
using itk::OtsuMultipleThresholdsCalculator< TInputHistogram >::Pointer = SmartPointer<Self> |
Definition at line 56 of file itkOtsuMultipleThresholdsCalculator.h.
using itk::OtsuMultipleThresholdsCalculator< TInputHistogram >::Self = OtsuMultipleThresholdsCalculator |
Standard class type aliases.
Definition at line 54 of file itkOtsuMultipleThresholdsCalculator.h.
using itk::OtsuMultipleThresholdsCalculator< TInputHistogram >::Superclass = HistogramAlgorithmBase<TInputHistogram> |
Definition at line 55 of file itkOtsuMultipleThresholdsCalculator.h.
using itk::OtsuMultipleThresholdsCalculator< TInputHistogram >::VarianceType = typename NumericTraits<MeasurementType>::RealType |
Definition at line 63 of file itkOtsuMultipleThresholdsCalculator.h.
using itk::OtsuMultipleThresholdsCalculator< TInputHistogram >::WeightType = typename NumericTraits<MeasurementType>::RealType |
Definition at line 64 of file itkOtsuMultipleThresholdsCalculator.h.
using itk::OtsuMultipleThresholdsCalculator< TInputHistogram >::WeightVectorType = std::vector<WeightType> |
Definition at line 68 of file itkOtsuMultipleThresholdsCalculator.h.
|
protected |
Typedef for the thresholds output
|
overrideprotecteddefault |
Typedef for the thresholds output
|
overridevirtual |
Calculates Otsu's thresholds and saves them.
Implements itk::HistogramAlgorithmBase< TInputHistogram >.
|
virtual |
Typedef for the thresholds output
Reimplemented from itk::Object.
|
virtual |
Standard Macros
Reimplemented from itk::HistogramAlgorithmBase< TInputHistogram >.
|
virtual |
Typedef for the thresholds output
const OutputType& itk::OtsuMultipleThresholdsCalculator< TInputHistogram >::GetOutput | ( | ) |
Returns the thresholds vector
|
virtual |
Typedef for the thresholds output
|
virtual |
Typedef for the thresholds output
|
protected |
Increment the thresholds of one position along the histogram.
|
static |
Typedef for the thresholds output
Referenced by itk::OtsuThresholdCalculator< THistogram, TOutput >::OtsuThresholdCalculator().
|
overrideprotectedvirtual |
Typedef for the thresholds output
Reimplemented from itk::HistogramAlgorithmBase< TInputHistogram >.
|
virtual |
Typedef for the thresholds output
|
virtual |
Typedef for the thresholds output
|
virtual |
Set/Get the number of thresholds.
|
virtual |
Should the threshold value be mid-point of the bin or the maximum? Default is to return bin maximum.
|
virtual |
Set/Get the use of valley emphasis. Default is false.
|
virtual |
Typedef for the thresholds output
|
virtual |
Typedef for the thresholds output
|
private |
Typedef for the thresholds output
Definition at line 122 of file itkOtsuMultipleThresholdsCalculator.h.
|
private |
Typedef for the thresholds output
Definition at line 123 of file itkOtsuMultipleThresholdsCalculator.h.
|
private |
Typedef for the thresholds output
Definition at line 128 of file itkOtsuMultipleThresholdsCalculator.h.
|
private |
Typedef for the thresholds output
Definition at line 124 of file itkOtsuMultipleThresholdsCalculator.h.