ITK
5.2.0
Insight Toolkit
|
#include <itkHistogramThresholdImageFilter.h>
Static Public Member Functions | |
static Pointer | New () |
Static Public Member Functions inherited from itk::ImageToImageFilter< TInputImage, TOutputImage > | |
static void | SetGlobalDefaultDirectionTolerance (double) |
static double | GetGlobalDefaultDirectionTolerance () |
static void | SetGlobalDefaultCoordinateTolerance (double) |
static double | GetGlobalDefaultCoordinateTolerance () |
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 () |
Static Public Attributes | |
static constexpr unsigned int | InputImageDimension = InputImageType::ImageDimension |
static constexpr unsigned int | MaskImageDimension = MaskImageType::ImageDimension |
static constexpr unsigned int | OutputImageDimension = OutputImageType::ImageDimension |
Static Public Attributes inherited from itk::ImageToImageFilter< TInputImage, TOutputImage > | |
static constexpr unsigned int | InputImageDimension = TInputImage::ImageDimension |
static constexpr unsigned int | OutputImageDimension = TOutputImage::ImageDimension |
Static Public Attributes inherited from itk::ImageSource< TOutputImage > | |
static constexpr unsigned int | OutputImageDimension = TOutputImage::ImageDimension |
OutputPixelType | m_InsideValue |
OutputPixelType | m_OutsideValue |
InputPixelType | m_Threshold |
MaskPixelType | m_MaskValue |
CalculatorPointer | m_Calculator |
unsigned | m_NumberOfHistogramBins { 256 } |
bool | m_AutoMinimumMaximum |
bool | m_MaskOutput { true } |
virtual void | SetMaskImage (const TMaskImage *input) |
virtual const TMaskImage * | GetMaskImage () const |
void | SetInput1 (const TInputImage *input) |
void | SetInput2 (const TMaskImage *input) |
virtual void | SetOutsideValue (OutputPixelType _arg) |
virtual OutputPixelType | GetOutsideValue () const |
virtual void | SetInsideValue (OutputPixelType _arg) |
virtual OutputPixelType | GetInsideValue () const |
virtual void | SetNumberOfHistogramBins (unsigned int _arg) |
virtual unsigned int | GetNumberOfHistogramBins () const |
virtual void | SetAutoMinimumMaximum (bool _arg) |
virtual bool | GetAutoMinimumMaximum () const |
virtual void | AutoMinimumMaximumOn () |
virtual void | AutoMinimumMaximumOff () |
virtual void | SetMaskOutput (bool _arg) |
virtual bool | GetMaskOutput () const |
virtual void | MaskOutputOn () |
virtual void | MaskOutputOff () |
virtual void | SetMaskValue (MaskPixelType _arg) |
virtual MaskPixelType | GetMaskValue () const |
virtual InputPixelType | GetThreshold () const |
virtual void | SetCalculator (CalculatorType *_arg) |
virtual CalculatorType * | GetModifiableCalculator () |
virtual const CalculatorType * | GetCalculator () const |
HistogramThresholdImageFilter () | |
~HistogramThresholdImageFilter () override=default | |
void | PrintSelf (std::ostream &os, Indent indent) const override |
void | GenerateInputRequestedRegion () override |
void | GenerateData () override |
void | VerifyPreconditions () ITKv5_CONST override |
void | SetUpHistogramGenerator (HistogramGeneratorPointer histogramGenerator) |
Threshold an image using a HistogramThresholdCalculator.
This filter creates a binary thresholded image that separates an image into foreground and background components. The filter computes the threshold using a user provided HistogramThresholdCalculator and applies that threshold to the input image using the BinaryThresholdImageFilter.
The filter also has the option of providing a mask, in which case the histogram and therefore the threshold is computed from the parts of the mask with values indicated by MaskValue. The output image is, by default, masked by the same image. This output masking can be disabled using SetMaskOutput(false). Note that there is an inconsistency here. The MaskImageFilter (used internally) masks by non zero values, where as the MaskedImageToHistogramFilter uses explicit values. If this does not match your usage then the output masking will need to be managed by the user.
This implementation was taken from the Insight Journal paper: https://www.insight-journal.org/browse/publication/811
Definition at line 62 of file itkHistogramThresholdImageFilter.h.
using itk::HistogramThresholdImageFilter< TInputImage, TOutputImage, TMaskImage >::CalculatorPointer = typename CalculatorType::Pointer |
Definition at line 112 of file itkHistogramThresholdImageFilter.h.
using itk::HistogramThresholdImageFilter< TInputImage, TOutputImage, TMaskImage >::CalculatorType = HistogramThresholdCalculator<HistogramType, InputPixelType> |
Definition at line 111 of file itkHistogramThresholdImageFilter.h.
using itk::HistogramThresholdImageFilter< TInputImage, TOutputImage, TMaskImage >::ConstPointer = SmartPointer<const Self> |
Definition at line 71 of file itkHistogramThresholdImageFilter.h.
using itk::HistogramThresholdImageFilter< TInputImage, TOutputImage, TMaskImage >::HistogramConstPointer = typename HistogramType::ConstPointer |
Definition at line 107 of file itkHistogramThresholdImageFilter.h.
using itk::HistogramThresholdImageFilter< TInputImage, TOutputImage, TMaskImage >::HistogramGeneratorPointer = typename HistogramGeneratorType::Pointer |
Definition at line 115 of file itkHistogramThresholdImageFilter.h.
using itk::HistogramThresholdImageFilter< TInputImage, TOutputImage, TMaskImage >::HistogramGeneratorType = Statistics::ImageToHistogramFilter<InputImageType> |
Definition at line 114 of file itkHistogramThresholdImageFilter.h.
using itk::HistogramThresholdImageFilter< TInputImage, TOutputImage, TMaskImage >::HistogramMeasurementType = typename HistogramType::MeasurementType |
Definition at line 109 of file itkHistogramThresholdImageFilter.h.
using itk::HistogramThresholdImageFilter< TInputImage, TOutputImage, TMaskImage >::HistogramMeasurementVectorType = typename HistogramType::MeasurementVectorType |
Definition at line 110 of file itkHistogramThresholdImageFilter.h.
using itk::HistogramThresholdImageFilter< TInputImage, TOutputImage, TMaskImage >::HistogramPointer = typename HistogramType::Pointer |
Definition at line 106 of file itkHistogramThresholdImageFilter.h.
using itk::HistogramThresholdImageFilter< TInputImage, TOutputImage, TMaskImage >::HistogramSizeType = typename HistogramType::SizeType |
Definition at line 108 of file itkHistogramThresholdImageFilter.h.
using itk::HistogramThresholdImageFilter< TInputImage, TOutputImage, TMaskImage >::HistogramType = Statistics::Histogram<ValueRealType> |
Definition at line 105 of file itkHistogramThresholdImageFilter.h.
using itk::HistogramThresholdImageFilter< TInputImage, TOutputImage, TMaskImage >::InputImagePointer = typename InputImageType::Pointer |
Image related type alias.
Definition at line 89 of file itkHistogramThresholdImageFilter.h.
using itk::HistogramThresholdImageFilter< TInputImage, TOutputImage, TMaskImage >::InputImageRegionType = typename InputImageType::RegionType |
Definition at line 95 of file itkHistogramThresholdImageFilter.h.
using itk::HistogramThresholdImageFilter< TInputImage, TOutputImage, TMaskImage >::InputImageType = TInputImage |
Definition at line 79 of file itkHistogramThresholdImageFilter.h.
using itk::HistogramThresholdImageFilter< TInputImage, TOutputImage, TMaskImage >::InputIndexType = typename InputImageType::IndexType |
Definition at line 94 of file itkHistogramThresholdImageFilter.h.
using itk::HistogramThresholdImageFilter< TInputImage, TOutputImage, TMaskImage >::InputPixelType = typename InputImageType::PixelType |
Image pixel value type alias.
Definition at line 84 of file itkHistogramThresholdImageFilter.h.
using itk::HistogramThresholdImageFilter< TInputImage, TOutputImage, TMaskImage >::InputSizeType = typename InputImageType::SizeType |
Definition at line 93 of file itkHistogramThresholdImageFilter.h.
using itk::HistogramThresholdImageFilter< TInputImage, TOutputImage, TMaskImage >::MaskImagePointer = typename MaskImageType::Pointer |
Definition at line 91 of file itkHistogramThresholdImageFilter.h.
using itk::HistogramThresholdImageFilter< TInputImage, TOutputImage, TMaskImage >::MaskImageRegionType = typename MaskImageType::RegionType |
Definition at line 101 of file itkHistogramThresholdImageFilter.h.
using itk::HistogramThresholdImageFilter< TInputImage, TOutputImage, TMaskImage >::MaskImageType = TMaskImage |
Definition at line 81 of file itkHistogramThresholdImageFilter.h.
using itk::HistogramThresholdImageFilter< TInputImage, TOutputImage, TMaskImage >::MaskIndexType = typename MaskImageType::IndexType |
Definition at line 100 of file itkHistogramThresholdImageFilter.h.
using itk::HistogramThresholdImageFilter< TInputImage, TOutputImage, TMaskImage >::MaskPixelType = typename MaskImageType::PixelType |
Definition at line 86 of file itkHistogramThresholdImageFilter.h.
using itk::HistogramThresholdImageFilter< TInputImage, TOutputImage, TMaskImage >::MaskSizeType = typename MaskImageType::SizeType |
Definition at line 99 of file itkHistogramThresholdImageFilter.h.
using itk::HistogramThresholdImageFilter< TInputImage, TOutputImage, TMaskImage >::OutputImagePointer = typename OutputImageType::Pointer |
Definition at line 90 of file itkHistogramThresholdImageFilter.h.
using itk::HistogramThresholdImageFilter< TInputImage, TOutputImage, TMaskImage >::OutputImageRegionType = typename OutputImageType::RegionType |
Definition at line 98 of file itkHistogramThresholdImageFilter.h.
using itk::HistogramThresholdImageFilter< TInputImage, TOutputImage, TMaskImage >::OutputImageType = TOutputImage |
Definition at line 80 of file itkHistogramThresholdImageFilter.h.
using itk::HistogramThresholdImageFilter< TInputImage, TOutputImage, TMaskImage >::OutputIndexType = typename OutputImageType::IndexType |
Definition at line 97 of file itkHistogramThresholdImageFilter.h.
using itk::HistogramThresholdImageFilter< TInputImage, TOutputImage, TMaskImage >::OutputPixelType = typename OutputImageType::PixelType |
Definition at line 85 of file itkHistogramThresholdImageFilter.h.
using itk::HistogramThresholdImageFilter< TInputImage, TOutputImage, TMaskImage >::OutputSizeType = typename OutputImageType::SizeType |
Definition at line 96 of file itkHistogramThresholdImageFilter.h.
using itk::HistogramThresholdImageFilter< TInputImage, TOutputImage, TMaskImage >::Pointer = SmartPointer<Self> |
Definition at line 70 of file itkHistogramThresholdImageFilter.h.
using itk::HistogramThresholdImageFilter< TInputImage, TOutputImage, TMaskImage >::Self = HistogramThresholdImageFilter |
Standard Self type alias
Definition at line 68 of file itkHistogramThresholdImageFilter.h.
using itk::HistogramThresholdImageFilter< TInputImage, TOutputImage, TMaskImage >::Superclass = ImageToImageFilter<TInputImage, TOutputImage> |
Definition at line 69 of file itkHistogramThresholdImageFilter.h.
using itk::HistogramThresholdImageFilter< TInputImage, TOutputImage, TMaskImage >::ValueRealType = typename NumericTraits<ValueType>::RealType |
Definition at line 104 of file itkHistogramThresholdImageFilter.h.
using itk::HistogramThresholdImageFilter< TInputImage, TOutputImage, TMaskImage >::ValueType = typename NumericTraits<InputPixelType>::ValueType |
Definition at line 103 of file itkHistogramThresholdImageFilter.h.
|
protected |
Set and Get the mask image
|
overrideprotecteddefault |
Set and Get the mask image
|
virtual |
Set and Get the mask image
|
virtual |
Set and Get the mask image
|
virtual |
Create an object from an instance, potentially deferring to a factory. This method allows you to create an instance of an object that is exactly the same type as the referring object. This is useful in cases where an object has been cast back to a base class.
Reimplemented from itk::Object.
Reimplemented in itk::LiThresholdImageFilter< TInputImage, TOutputImage, TMaskImage >, itk::OtsuThresholdImageFilter< TInputImage, TOutputImage, TMaskImage >, itk::KittlerIllingworthThresholdImageFilter< TInputImage, TOutputImage, TMaskImage >, itk::HuangThresholdImageFilter< TInputImage, TOutputImage, TMaskImage >, itk::IntermodesThresholdImageFilter< TInputImage, TOutputImage, TMaskImage >, itk::IsoDataThresholdImageFilter< TInputImage, TOutputImage, TMaskImage >, itk::MaximumEntropyThresholdImageFilter< TInputImage, TOutputImage, TMaskImage >, itk::MomentsThresholdImageFilter< TInputImage, TOutputImage, TMaskImage >, itk::RenyiEntropyThresholdImageFilter< TInputImage, TOutputImage, TMaskImage >, itk::ShanbhagThresholdImageFilter< TInputImage, TOutputImage, TMaskImage >, itk::TriangleThresholdImageFilter< TInputImage, TOutputImage, TMaskImage >, and itk::YenThresholdImageFilter< TInputImage, TOutputImage, TMaskImage >.
|
overrideprotectedvirtual |
Set and Get the mask image
Reimplemented from itk::ImageSource< TOutputImage >.
Reimplemented in itk::IntermodesThresholdImageFilter< TInputImage, TOutputImage, TMaskImage >, and itk::OtsuThresholdImageFilter< TInputImage, TOutputImage, TMaskImage >.
Referenced by itk::OtsuThresholdImageFilter< TInputImage, TOutputImage, TMaskImage >::GenerateData(), and itk::IntermodesThresholdImageFilter< TInputImage, TOutputImage, TMaskImage >::GenerateData().
|
overrideprotectedvirtual |
Set and Get the mask image
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.
|
virtual |
Set and Get the mask image
|
virtual |
Set and Get the mask image
Referenced by itk::IntermodesThresholdImageFilter< TInputImage, TOutputImage, TMaskImage >::VerifyPreconditions(), and itk::OtsuThresholdImageFilter< TInputImage, TOutputImage, TMaskImage >::VerifyPreconditions().
|
virtual |
Get the "inside" pixel value.
|
virtual |
Set and Get the mask image
|
virtual |
Set and Get the mask image
|
virtual |
Set and Get the mask image
|
virtual |
Set and Get the mask image
Referenced by itk::OtsuThresholdImageFilter< TInputImage, TOutputImage, TMaskImage >::GenerateData(), and itk::IntermodesThresholdImageFilter< TInputImage, TOutputImage, TMaskImage >::GenerateData().
|
virtual |
Runtime information support.
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.
Reimplemented in itk::LiThresholdImageFilter< TInputImage, TOutputImage, TMaskImage >, itk::OtsuThresholdImageFilter< TInputImage, TOutputImage, TMaskImage >, itk::KittlerIllingworthThresholdImageFilter< TInputImage, TOutputImage, TMaskImage >, itk::HuangThresholdImageFilter< TInputImage, TOutputImage, TMaskImage >, itk::IntermodesThresholdImageFilter< TInputImage, TOutputImage, TMaskImage >, itk::IsoDataThresholdImageFilter< TInputImage, TOutputImage, TMaskImage >, itk::MaximumEntropyThresholdImageFilter< TInputImage, TOutputImage, TMaskImage >, itk::MomentsThresholdImageFilter< TInputImage, TOutputImage, TMaskImage >, itk::RenyiEntropyThresholdImageFilter< TInputImage, TOutputImage, TMaskImage >, itk::ShanbhagThresholdImageFilter< TInputImage, TOutputImage, TMaskImage >, itk::TriangleThresholdImageFilter< TInputImage, TOutputImage, TMaskImage >, and itk::YenThresholdImageFilter< TInputImage, TOutputImage, TMaskImage >.
|
virtual |
Set and Get the mask image
|
virtual |
Get the "outside" pixel value.
|
virtual |
Get the computed threshold.
|
virtual |
Set and Get the mask image
|
virtual |
Set and Get the mask image
|
static |
Method for creation through the object factory.
|
overrideprotectedvirtual |
Set and Get the mask image
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.
Reimplemented in itk::IntermodesThresholdImageFilter< TInputImage, TOutputImage, TMaskImage >.
Referenced by itk::IntermodesThresholdImageFilter< TInputImage, TOutputImage, TMaskImage >::PrintSelf().
|
virtual |
Does histogram generator compute min and max from data? Default is true for all but char types
|
virtual |
Set/Get the calculator to use to compute the threshold
Referenced by itk::HuangThresholdImageFilter< TInputImage, TOutputImage, TMaskImage >::HuangThresholdImageFilter(), itk::IntermodesThresholdImageFilter< TInputImage, TOutputImage, TMaskImage >::IntermodesThresholdImageFilter(), itk::IsoDataThresholdImageFilter< TInputImage, TOutputImage, TMaskImage >::IsoDataThresholdImageFilter(), itk::KittlerIllingworthThresholdImageFilter< TInputImage, TOutputImage, TMaskImage >::KittlerIllingworthThresholdImageFilter(), itk::LiThresholdImageFilter< TInputImage, TOutputImage, TMaskImage >::LiThresholdImageFilter(), itk::MaximumEntropyThresholdImageFilter< TInputImage, TOutputImage, TMaskImage >::MaximumEntropyThresholdImageFilter(), itk::MomentsThresholdImageFilter< TInputImage, TOutputImage, TMaskImage >::MomentsThresholdImageFilter(), itk::OtsuThresholdImageFilter< TInputImage, TOutputImage, TMaskImage >::OtsuThresholdImageFilter(), itk::RenyiEntropyThresholdImageFilter< TInputImage, TOutputImage, TMaskImage >::RenyiEntropyThresholdImageFilter(), itk::ShanbhagThresholdImageFilter< TInputImage, TOutputImage, TMaskImage >::ShanbhagThresholdImageFilter(), itk::TriangleThresholdImageFilter< TInputImage, TOutputImage, TMaskImage >::TriangleThresholdImageFilter(), and itk::YenThresholdImageFilter< TInputImage, TOutputImage, TMaskImage >::YenThresholdImageFilter().
|
inline |
Set the input image
Definition at line 129 of file itkHistogramThresholdImageFilter.h.
|
inline |
Set the marker image
Definition at line 136 of file itkHistogramThresholdImageFilter.h.
|
virtual |
Set the "inside" pixel value. The default value NumericTraits<OutputPixelType>::max()
|
virtual |
Set and Get the mask image
|
virtual |
Do you want the output to be masked by the mask used in histogram construction. Only relevant if masking is in use. Default is true.
|
virtual |
The value in the mask image, if used, indicating voxels that should be included. Default is the max of pixel type, as in the MaskedImageToHistogramFilter
|
virtual |
Set the number of histogram bins
|
virtual |
Set the "outside" pixel value. The default value NumericTraits<OutputPixelType>::ZeroValue().
|
private |
Set up the histogram generator.
|
inlineoverrideprotectedvirtual |
Set and Get the mask image
Reimplemented from itk::ProcessObject.
Reimplemented in itk::OtsuThresholdImageFilter< TInputImage, TOutputImage, TMaskImage >, and itk::IntermodesThresholdImageFilter< TInputImage, TOutputImage, TMaskImage >.
Definition at line 210 of file itkHistogramThresholdImageFilter.h.
Referenced by itk::IntermodesThresholdImageFilter< TInputImage, TOutputImage, TMaskImage >::VerifyPreconditions(), and itk::OtsuThresholdImageFilter< TInputImage, TOutputImage, TMaskImage >::VerifyPreconditions().
|
staticconstexpr |
Image related type alias.
Definition at line 118 of file itkHistogramThresholdImageFilter.h.
|
private |
Set and Get the mask image
Definition at line 230 of file itkHistogramThresholdImageFilter.h.
|
private |
Set and Get the mask image
Definition at line 228 of file itkHistogramThresholdImageFilter.h.
|
private |
Set and Get the mask image
Definition at line 224 of file itkHistogramThresholdImageFilter.h.
|
private |
Set and Get the mask image
Definition at line 231 of file itkHistogramThresholdImageFilter.h.
|
private |
Set and Get the mask image
Definition at line 227 of file itkHistogramThresholdImageFilter.h.
|
private |
Set and Get the mask image
Definition at line 229 of file itkHistogramThresholdImageFilter.h.
|
private |
Set and Get the mask image
Definition at line 225 of file itkHistogramThresholdImageFilter.h.
|
private |
Set and Get the mask image
Definition at line 226 of file itkHistogramThresholdImageFilter.h.
|
staticconstexpr |
Definition at line 120 of file itkHistogramThresholdImageFilter.h.
|
staticconstexpr |
Definition at line 119 of file itkHistogramThresholdImageFilter.h.