ITK
5.0.0
Insight Segmentation and Registration Toolkit
|
#include <itkBinaryStatisticsOpeningImageFilter.h>
Remove objects based on the value of their Statistics attribute.
The BinaryStatisticsOpeningImageFilter removes the objects in a binary image with an attribute value smaller or greater than a threshold called Lambda. The attributes are those of the StatisticsLabelObject.
This implementation was taken from the Insight Journal paper: https://hdl.handle.net/1926/584 or http://www.insight-journal.org/browse/publication/176
Definition at line 46 of file itkBinaryStatisticsOpeningImageFilter.h.
Public Types | |
using | AttributeType = typename LabelObjectType::AttributeType |
using | BinarizerType = LabelMapToBinaryImageFilter< LabelMapType, OutputImageType > |
using | ConstPointer = SmartPointer< const Self > |
using | FeatureImageConstPointer = typename FeatureImageType::ConstPointer |
using | FeatureImagePixelType = typename FeatureImageType::PixelType |
using | FeatureImagePointer = typename FeatureImageType::Pointer |
using | FeatureImageType = TFeatureImage |
using | InputImageConstPointer = typename InputImageType::ConstPointer |
using | InputImagePixelType = typename InputImageType::PixelType |
using | InputImagePointer = typename InputImageType::Pointer |
using | InputImageRegionType = typename InputImageType::RegionType |
using | InputImageType = TInputImage |
using | LabelizerType = BinaryImageToLabelMapFilter< InputImageType, LabelMapType > |
using | LabelMapType = LabelMap< LabelObjectType > |
using | LabelObjectType = StatisticsLabelObject< LabelType, Self::ImageDimension > |
using | LabelObjectValuatorType = StatisticsLabelMapFilter< LabelMapType, FeatureImageType > |
using | LabelType = SizeValueType |
using | OpeningType = StatisticsOpeningLabelMapFilter< LabelMapType > |
using | OutputImageConstPointer = typename OutputImageType::ConstPointer |
using | OutputImagePixelType = typename OutputImageType::PixelType |
using | OutputImagePointer = typename OutputImageType::Pointer |
using | OutputImageRegionType = typename OutputImageType::RegionType |
using | OutputImageType = TInputImage |
using | Pointer = SmartPointer< Self > |
using | Self = BinaryStatisticsOpeningImageFilter |
using | Superclass = ImageToImageFilter< TInputImage, TInputImage > |
Public Types inherited from itk::ImageToImageFilter< TInputImage, TInputImage > | |
using | ConstPointer = SmartPointer< const Self > |
using | InputImageConstPointer = typename InputImageType::ConstPointer |
using | InputImagePixelType = typename InputImageType::PixelType |
using | InputImagePointer = typename InputImageType::Pointer |
using | InputImageRegionType = typename InputImageType::RegionType |
using | InputImageType = TInputImage |
using | OutputImagePixelType = typename Superclass::OutputImagePixelType |
using | OutputImageRegionType = typename Superclass::OutputImageRegionType |
using | Pointer = SmartPointer< Self > |
using | Self = ImageToImageFilter |
using | Superclass = ImageSource< TInputImage > |
Public Types inherited from itk::ImageSource< TInputImage > | |
using | ConstPointer = SmartPointer< const Self > |
using | DataObjectIdentifierType = Superclass::DataObjectIdentifierType |
using | DataObjectPointer = DataObject::Pointer |
using | DataObjectPointerArraySizeType = Superclass::DataObjectPointerArraySizeType |
using | OutputImagePixelType = typename OutputImageType::PixelType |
using | OutputImagePointer = typename OutputImageType::Pointer |
using | OutputImageRegionType = typename OutputImageType::RegionType |
using | OutputImageType = TInputImage |
using | Pointer = SmartPointer< Self > |
using | Self = ImageSource |
using | Superclass = ProcessObject |
Public Types inherited from itk::ProcessObject | |
using | ConstPointer = SmartPointer< const Self > |
using | DataObjectIdentifierType = DataObject::DataObjectIdentifierType |
using | DataObjectPointer = DataObject::Pointer |
using | DataObjectPointerArray = std::vector< DataObjectPointer > |
using | DataObjectPointerArraySizeType = DataObjectPointerArray::size_type |
using | MultiThreaderType = MultiThreaderBase |
using | NameArray = std::vector< DataObjectIdentifierType > |
using | Pointer = SmartPointer< Self > |
using | Self = ProcessObject |
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 |
Static Public Member Functions | |
static Pointer | New () |
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 () |
Static Public Attributes | |
static constexpr unsigned int | ImageDimension = TInputImage::ImageDimension |
static constexpr unsigned int | InputImageDimension = TInputImage::ImageDimension |
static constexpr unsigned int | OutputImageDimension = TInputImage::ImageDimension |
Static Public Attributes inherited from itk::ImageToImageFilter< TInputImage, TInputImage > | |
static constexpr unsigned int | InputImageDimension |
static constexpr unsigned int | OutputImageDimension |
Static Public Attributes inherited from itk::ImageSource< TInputImage > | |
static constexpr unsigned int | OutputImageDimension |
Private Attributes | |
AttributeType | m_Attribute |
OutputImagePixelType | m_BackgroundValue |
OutputImagePixelType | m_ForegroundValue |
bool | m_FullyConnected |
double | m_Lambda |
bool | m_ReverseOrdering |
Additional Inherited Members | |
Protected Types inherited from itk::ImageToImageFilter< TInputImage, TInputImage > | |
using | InputToOutputRegionCopierType = ImageToImageFilterDetail::ImageRegionCopier< Self::OutputImageDimension, Self::InputImageDimension > |
using | OutputToInputRegionCopierType = ImageToImageFilterDetail::ImageRegionCopier< Self::InputImageDimension, Self::OutputImageDimension > |
Static Protected Member Functions inherited from itk::ImageSource< TInputImage > | |
static const ImageRegionSplitterBase * | GetGlobalDefaultSplitter () |
static ITK_THREAD_RETURN_FUNCTION_CALL_CONVENTION | ThreaderCallback (void *arg) |
Protected Attributes inherited from itk::ImageSource< TInputImage > | |
bool | m_DynamicMultiThreading |
Protected Attributes inherited from itk::ProcessObject | |
TimeStamp | m_OutputInformationMTime |
bool | m_Updating |
Protected Attributes inherited from itk::LightObject | |
std::atomic< int > | m_ReferenceCount |
using itk::BinaryStatisticsOpeningImageFilter< TInputImage, TFeatureImage >::AttributeType = typename LabelObjectType::AttributeType |
Definition at line 86 of file itkBinaryStatisticsOpeningImageFilter.h.
using itk::BinaryStatisticsOpeningImageFilter< TInputImage, TFeatureImage >::BinarizerType = LabelMapToBinaryImageFilter< LabelMapType, OutputImageType > |
Definition at line 88 of file itkBinaryStatisticsOpeningImageFilter.h.
using itk::BinaryStatisticsOpeningImageFilter< TInputImage, TFeatureImage >::ConstPointer = SmartPointer< const Self > |
Definition at line 56 of file itkBinaryStatisticsOpeningImageFilter.h.
using itk::BinaryStatisticsOpeningImageFilter< TInputImage, TFeatureImage >::FeatureImageConstPointer = typename FeatureImageType::ConstPointer |
Definition at line 72 of file itkBinaryStatisticsOpeningImageFilter.h.
using itk::BinaryStatisticsOpeningImageFilter< TInputImage, TFeatureImage >::FeatureImagePixelType = typename FeatureImageType::PixelType |
Definition at line 73 of file itkBinaryStatisticsOpeningImageFilter.h.
using itk::BinaryStatisticsOpeningImageFilter< TInputImage, TFeatureImage >::FeatureImagePointer = typename FeatureImageType::Pointer |
Definition at line 71 of file itkBinaryStatisticsOpeningImageFilter.h.
using itk::BinaryStatisticsOpeningImageFilter< TInputImage, TFeatureImage >::FeatureImageType = TFeatureImage |
Definition at line 70 of file itkBinaryStatisticsOpeningImageFilter.h.
using itk::BinaryStatisticsOpeningImageFilter< TInputImage, TFeatureImage >::InputImageConstPointer = typename InputImageType::ConstPointer |
Definition at line 62 of file itkBinaryStatisticsOpeningImageFilter.h.
using itk::BinaryStatisticsOpeningImageFilter< TInputImage, TFeatureImage >::InputImagePixelType = typename InputImageType::PixelType |
Definition at line 64 of file itkBinaryStatisticsOpeningImageFilter.h.
using itk::BinaryStatisticsOpeningImageFilter< TInputImage, TFeatureImage >::InputImagePointer = typename InputImageType::Pointer |
Definition at line 61 of file itkBinaryStatisticsOpeningImageFilter.h.
using itk::BinaryStatisticsOpeningImageFilter< TInputImage, TFeatureImage >::InputImageRegionType = typename InputImageType::RegionType |
Definition at line 63 of file itkBinaryStatisticsOpeningImageFilter.h.
using itk::BinaryStatisticsOpeningImageFilter< TInputImage, TFeatureImage >::InputImageType = TInputImage |
Some convenient type alias.
Definition at line 59 of file itkBinaryStatisticsOpeningImageFilter.h.
using itk::BinaryStatisticsOpeningImageFilter< TInputImage, TFeatureImage >::LabelizerType = BinaryImageToLabelMapFilter< InputImageType, LabelMapType > |
Definition at line 84 of file itkBinaryStatisticsOpeningImageFilter.h.
using itk::BinaryStatisticsOpeningImageFilter< TInputImage, TFeatureImage >::LabelMapType = LabelMap< LabelObjectType > |
Definition at line 83 of file itkBinaryStatisticsOpeningImageFilter.h.
using itk::BinaryStatisticsOpeningImageFilter< TInputImage, TFeatureImage >::LabelObjectType = StatisticsLabelObject< LabelType, Self::ImageDimension > |
Definition at line 82 of file itkBinaryStatisticsOpeningImageFilter.h.
using itk::BinaryStatisticsOpeningImageFilter< TInputImage, TFeatureImage >::LabelObjectValuatorType = StatisticsLabelMapFilter< LabelMapType, FeatureImageType > |
Definition at line 85 of file itkBinaryStatisticsOpeningImageFilter.h.
using itk::BinaryStatisticsOpeningImageFilter< TInputImage, TFeatureImage >::LabelType = SizeValueType |
Definition at line 80 of file itkBinaryStatisticsOpeningImageFilter.h.
using itk::BinaryStatisticsOpeningImageFilter< TInputImage, TFeatureImage >::OpeningType = StatisticsOpeningLabelMapFilter< LabelMapType > |
Definition at line 87 of file itkBinaryStatisticsOpeningImageFilter.h.
using itk::BinaryStatisticsOpeningImageFilter< TInputImage, TFeatureImage >::OutputImageConstPointer = typename OutputImageType::ConstPointer |
Definition at line 66 of file itkBinaryStatisticsOpeningImageFilter.h.
using itk::BinaryStatisticsOpeningImageFilter< TInputImage, TFeatureImage >::OutputImagePixelType = typename OutputImageType::PixelType |
Definition at line 68 of file itkBinaryStatisticsOpeningImageFilter.h.
using itk::BinaryStatisticsOpeningImageFilter< TInputImage, TFeatureImage >::OutputImagePointer = typename OutputImageType::Pointer |
Definition at line 65 of file itkBinaryStatisticsOpeningImageFilter.h.
using itk::BinaryStatisticsOpeningImageFilter< TInputImage, TFeatureImage >::OutputImageRegionType = typename OutputImageType::RegionType |
Definition at line 67 of file itkBinaryStatisticsOpeningImageFilter.h.
using itk::BinaryStatisticsOpeningImageFilter< TInputImage, TFeatureImage >::OutputImageType = TInputImage |
Definition at line 60 of file itkBinaryStatisticsOpeningImageFilter.h.
using itk::BinaryStatisticsOpeningImageFilter< TInputImage, TFeatureImage >::Pointer = SmartPointer< Self > |
Definition at line 55 of file itkBinaryStatisticsOpeningImageFilter.h.
using itk::BinaryStatisticsOpeningImageFilter< TInputImage, TFeatureImage >::Self = BinaryStatisticsOpeningImageFilter |
Standard class type aliases.
Definition at line 53 of file itkBinaryStatisticsOpeningImageFilter.h.
using itk::BinaryStatisticsOpeningImageFilter< TInputImage, TFeatureImage >::Superclass = ImageToImageFilter< TInputImage, TInputImage > |
Definition at line 54 of file itkBinaryStatisticsOpeningImageFilter.h.
|
protected |
|
overrideprotecteddefault |
|
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.
|
overrideprotectedvirtual |
BinaryStatisticsOpeningImageFilter will produce the entire output.
Reimplemented from itk::ProcessObject.
|
virtual |
Set/Get whether the connected components are defined strictly by face connectivity or by face+edge+vertex connectivity. Default is FullyConnectedOff. For objects that are 1 pixel wide, use FullyConnectedOn.
|
virtual |
Set/Get whether the connected components are defined strictly by face connectivity or by face+edge+vertex connectivity. Default is FullyConnectedOff. For objects that are 1 pixel wide, use FullyConnectedOn.
|
overrideprotectedvirtual |
Single-threaded version of GenerateData. This filter delegates to GrayscaleGeodesicErodeImageFilter.
Reimplemented from itk::ProcessObject.
|
overrideprotectedvirtual |
BinaryStatisticsOpeningImageFilter needs the entire input to be available. Thus, it needs to provide an implementation of GenerateInputRequestedRegion().
Reimplemented from itk::ProcessObject.
|
virtual |
Set/Get the attribute to use to select the object to remove. Default is "Size".
|
virtual |
Set/Get the value used as "background" in the output image. Defaults to NumericTraits<PixelType>::NonpositiveMin().
|
inline |
Get the feature image
Definition at line 172 of file itkBinaryStatisticsOpeningImageFilter.h.
References itk::ProcessObject::GetInput().
|
virtual |
Set/Get the value used as "foreground" in the output image. Defaults to NumericTraits<PixelType>::max().
|
virtual |
Set/Get whether the connected components are defined strictly by face connectivity or by face+edge+vertex connectivity. Default is FullyConnectedOff. For objects that are 1 pixel wide, use FullyConnectedOn.
|
virtual |
Set/Get the threshold used to keep or remove the objects.
|
virtual |
Runtime information support.
Reimplemented from itk::ImageToImageFilter< TInputImage, TInputImage >.
|
virtual |
Set/Get the ordering of the objects. By default, the objects with an attribute value smaller than Lamba are removed. Turning ReverseOrdering to true make this filter remove objects with an attribute value greater than Lambda instead.
|
static |
Standard New method.
|
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::ProcessObject.
|
virtual |
Set/Get the ordering of the objects. By default, the objects with an attribute value smaller than Lamba are removed. Turning ReverseOrdering to true make this filter remove objects with an attribute value greater than Lambda instead.
|
virtual |
Set/Get the ordering of the objects. By default, the objects with an attribute value smaller than Lamba are removed. Turning ReverseOrdering to true make this filter remove objects with an attribute value greater than Lambda instead.
|
virtual |
Set/Get the attribute to use to select the object to remove. Default is "Size".
|
inline |
Set/Get the attribute to use to select the object to remove. Default is "Size".
Definition at line 158 of file itkBinaryStatisticsOpeningImageFilter.h.
|
virtual |
Set/Get the value used as "background" in the output image. Defaults to NumericTraits<PixelType>::NonpositiveMin().
|
inline |
Set the feature image
Definition at line 165 of file itkBinaryStatisticsOpeningImageFilter.h.
|
virtual |
Set/Get the value used as "foreground" in the output image. Defaults to NumericTraits<PixelType>::max().
|
virtual |
Set/Get whether the connected components are defined strictly by face connectivity or by face+edge+vertex connectivity. Default is FullyConnectedOff. For objects that are 1 pixel wide, use FullyConnectedOn.
|
inline |
Set the input image
Definition at line 178 of file itkBinaryStatisticsOpeningImageFilter.h.
|
inline |
Set the feature image
Definition at line 184 of file itkBinaryStatisticsOpeningImageFilter.h.
|
virtual |
Set/Get the threshold used to keep or remove the objects.
|
virtual |
Set/Get the ordering of the objects. By default, the objects with an attribute value smaller than Lamba are removed. Turning ReverseOrdering to true make this filter remove objects with an attribute value greater than Lambda instead.
|
static |
Definition at line 78 of file itkBinaryStatisticsOpeningImageFilter.h.
|
static |
ImageDimension constants
Definition at line 76 of file itkBinaryStatisticsOpeningImageFilter.h.
|
private |
Definition at line 211 of file itkBinaryStatisticsOpeningImageFilter.h.
|
private |
Definition at line 207 of file itkBinaryStatisticsOpeningImageFilter.h.
|
private |
Definition at line 208 of file itkBinaryStatisticsOpeningImageFilter.h.
|
private |
Definition at line 206 of file itkBinaryStatisticsOpeningImageFilter.h.
|
private |
Definition at line 209 of file itkBinaryStatisticsOpeningImageFilter.h.
|
private |
Definition at line 210 of file itkBinaryStatisticsOpeningImageFilter.h.
|
static |
Definition at line 77 of file itkBinaryStatisticsOpeningImageFilter.h.