ITK
5.0.0
Insight Segmentation and Registration Toolkit
|
#include <itkRelabelComponentImageFilter.h>
Relabel the components in an image such that consecutive labels are used.
RelabelComponentImageFilter remaps the labels associated with the objects in an image (as from the output of ConnectedComponentImageFilter) such that the label numbers are consecutive with no gaps between the label numbers used. By default, the relabeling will also sort the labels based on the size of the object: the largest object will have label #1, the second largest will have label #2, etc. If two labels have the same size their initial order is kept. The sorting by size can be disabled using SetSortByObjectSize.
Label #0 is assumed to be the background and is left unaltered by the relabeling.
RelabelComponentImageFilter is typically used on the output of the ConnectedComponentImageFilter for those applications that want to extract the largest object or the "k" largest objects. Any particular object can be extracted from the relabeled output using a BinaryThresholdImageFilter. A group of objects can be extracted from the relabled output using a ThresholdImageFilter.
Once all the objects are relabeled, the application can query the number of objects and the size of each object. Object sizes are returned in a vector. The size of the background is not calculated. So the size of object #1 is GetSizeOfObjectsInPixels()[0], the size of object #2 is GetSizeOfObjectsInPixels()[1], etc.
If user sets a minimum object size, all objects with fewer pixels than the minimum will be discarded, so that the number of objects reported will be only those remaining. The GetOriginalNumberOfObjects method can be called to find out how many objects were present before the small ones were discarded.
RelabelComponentImageFilter can be run as an "in place" filter, where it will overwrite its output. The default is run out of place (or generate a separate output). "In place" operation can be controlled via methods in the superclass, InPlaceImageFilter::InPlaceOn() and InPlaceImageFilter::InPlaceOff().
Definition at line 81 of file itkRelabelComponentImageFilter.h.
Classes | |
struct | RelabelComponentObjectType |
class | RelabelComponentSizeInPixelsComparator |
Public Types | |
using | ConstPointer = SmartPointer< const Self > |
using | IndexType = typename TInputImage::IndexType |
using | InputImagePointer = typename Superclass::InputImagePointer |
using | InputImageType = TInputImage |
using | InputInternalPixelType = typename TInputImage::InternalPixelType |
using | InputPixelType = typename TInputImage::PixelType |
using | LabelType = IdentifierType |
using | ObjectSizeInPhysicalUnitsContainerType = std::vector< float > |
using | ObjectSizeInPixelsContainerType = std::vector< ObjectSizeType > |
using | ObjectSizeType = SizeValueType |
using | OutputImageType = TOutputImage |
using | OutputInternalPixelType = typename TOutputImage::InternalPixelType |
using | OutputPixelType = typename TOutputImage::PixelType |
using | Pointer = SmartPointer< Self > |
using | RegionType = typename TOutputImage::RegionType |
using | Self = RelabelComponentImageFilter |
using | SizeType = typename TInputImage::SizeType |
using | Superclass = InPlaceImageFilter< TInputImage, TOutputImage > |
Public Types inherited from itk::InPlaceImageFilter< TInputImage, TOutputImage > | |
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 | OutputImagePointer = typename Superclass::OutputImagePointer |
using | OutputImageRegionType = typename Superclass::OutputImageRegionType |
using | OutputImageType = typename Superclass::OutputImageType |
using | Pointer = SmartPointer< Self > |
using | Self = InPlaceImageFilter |
using | Superclass = ImageToImageFilter< TInputImage, TOutputImage > |
Public Types inherited from itk::ImageToImageFilter< TInputImage, TOutputImage > | |
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< TOutputImage > |
Public Types inherited from itk::ImageSource< TOutputImage > | |
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 = TOutputImage |
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 = TOutputImage::ImageDimension |
static constexpr unsigned int | InputImageDimension = TInputImage::ImageDimension |
Static Public Attributes inherited from itk::InPlaceImageFilter< TInputImage, TOutputImage > | |
static constexpr unsigned int | InputImageDimension = TInputImage::ImageDimension |
static constexpr unsigned int | OutputImageDimension = TOutputImage::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 |
Additional Inherited Members | |
Protected Types inherited from itk::ImageToImageFilter< TInputImage, TOutputImage > | |
using | InputToOutputRegionCopierType = ImageToImageFilterDetail::ImageRegionCopier< Self::OutputImageDimension, Self::InputImageDimension > |
using | OutputToInputRegionCopierType = ImageToImageFilterDetail::ImageRegionCopier< Self::InputImageDimension, Self::OutputImageDimension > |
Static Protected Member Functions inherited from itk::ImageSource< TOutputImage > | |
static const ImageRegionSplitterBase * | GetGlobalDefaultSplitter () |
static ITK_THREAD_RETURN_FUNCTION_CALL_CONVENTION | ThreaderCallback (void *arg) |
Protected Attributes inherited from itk::ImageSource< TOutputImage > | |
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::RelabelComponentImageFilter< TInputImage, TOutputImage >::ConstPointer = SmartPointer< const Self > |
Definition at line 122 of file itkRelabelComponentImageFilter.h.
using itk::RelabelComponentImageFilter< TInputImage, TOutputImage >::IndexType = typename TInputImage::IndexType |
Definition at line 114 of file itkRelabelComponentImageFilter.h.
using itk::RelabelComponentImageFilter< TInputImage, TOutputImage >::InputImagePointer = typename Superclass::InputImagePointer |
Types from the Superclass
Definition at line 96 of file itkRelabelComponentImageFilter.h.
using itk::RelabelComponentImageFilter< TInputImage, TOutputImage >::InputImageType = TInputImage |
Image type alias support
Definition at line 112 of file itkRelabelComponentImageFilter.h.
using itk::RelabelComponentImageFilter< TInputImage, TOutputImage >::InputInternalPixelType = typename TInputImage::InternalPixelType |
Definition at line 105 of file itkRelabelComponentImageFilter.h.
using itk::RelabelComponentImageFilter< TInputImage, TOutputImage >::InputPixelType = typename TInputImage::PixelType |
Definition at line 104 of file itkRelabelComponentImageFilter.h.
using itk::RelabelComponentImageFilter< TInputImage, TOutputImage >::LabelType = IdentifierType |
Type used as identifier for the different component lables.
Definition at line 135 of file itkRelabelComponentImageFilter.h.
using itk::RelabelComponentImageFilter< TInputImage, TOutputImage >::ObjectSizeInPhysicalUnitsContainerType = std::vector< float > |
Definition at line 145 of file itkRelabelComponentImageFilter.h.
using itk::RelabelComponentImageFilter< TInputImage, TOutputImage >::ObjectSizeInPixelsContainerType = std::vector< ObjectSizeType > |
Definition at line 144 of file itkRelabelComponentImageFilter.h.
using itk::RelabelComponentImageFilter< TInputImage, TOutputImage >::ObjectSizeType = SizeValueType |
Type used to count number of pixels in objects.
Definition at line 138 of file itkRelabelComponentImageFilter.h.
using itk::RelabelComponentImageFilter< TInputImage, TOutputImage >::OutputImageType = TOutputImage |
Definition at line 113 of file itkRelabelComponentImageFilter.h.
using itk::RelabelComponentImageFilter< TInputImage, TOutputImage >::OutputInternalPixelType = typename TOutputImage::InternalPixelType |
Definition at line 103 of file itkRelabelComponentImageFilter.h.
using itk::RelabelComponentImageFilter< TInputImage, TOutputImage >::OutputPixelType = typename TOutputImage::PixelType |
Extract some information from the image types. Dimensionality of the two images is assumed to be the same.
Definition at line 102 of file itkRelabelComponentImageFilter.h.
using itk::RelabelComponentImageFilter< TInputImage, TOutputImage >::Pointer = SmartPointer< Self > |
Smart pointer type alias support
Definition at line 121 of file itkRelabelComponentImageFilter.h.
using itk::RelabelComponentImageFilter< TInputImage, TOutputImage >::RegionType = typename TOutputImage::RegionType |
Definition at line 116 of file itkRelabelComponentImageFilter.h.
using itk::RelabelComponentImageFilter< TInputImage, TOutputImage >::Self = RelabelComponentImageFilter |
Standard "Self" & Superclass typedef.
Definition at line 90 of file itkRelabelComponentImageFilter.h.
using itk::RelabelComponentImageFilter< TInputImage, TOutputImage >::SizeType = typename TInputImage::SizeType |
Definition at line 115 of file itkRelabelComponentImageFilter.h.
using itk::RelabelComponentImageFilter< TInputImage, TOutputImage >::Superclass = InPlaceImageFilter< TInputImage, TOutputImage > |
Definition at line 91 of file itkRelabelComponentImageFilter.h.
|
inlineprotected |
Definition at line 255 of file itkRelabelComponentImageFilter.h.
|
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 |
Standard pipeline method.
Reimplemented from itk::ImageSource< TOutputImage >.
|
overrideprotectedvirtual |
RelabelComponentImageFilter needs the entire input. Therefore it must provide an implementation GenerateInputRequestedRegion().
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.
|
virtual |
Get the caller-defined minimum size of an object in pixels. If the caller has not set the minimum, 0 will be returned, which is to be interpreted as meaning that no minimum exists, and all objects in the original label map will be passed through to the output.
|
virtual |
Run-time type information (and related methods)
Reimplemented from itk::InPlaceImageFilter< TInputImage, TOutputImage >.
|
virtual |
Get the number of objects in the image. This information is only valid after the filter has executed.
|
virtual |
Get/Set the number of objects enumerated and described when the filter is printed.
|
virtual |
Get the original number of objects in the image before small objects were discarded. This information is only valid after the filter has executed. If the caller has not specified a minimum object size, OriginalNumberOfObjects is the same as NumberOfObjects.
|
inline |
Get the size of a particular object in physical space (in units of pixel size). This information is only valid after the filter has executed. Size of the background (object #0) is not calculated.
Definition at line 225 of file itkRelabelComponentImageFilter.h.
|
inline |
Get the size of a particular object in pixels. This information is only valid after the filter has executed. Size of the background (object #0) is not calculated.
Definition at line 209 of file itkRelabelComponentImageFilter.h.
|
inline |
Get the size of each object in physical space (in units of pixel size). This information is only valid after the filter has executed. Size of the background is not calculated. Size of object #1 is GetSizeOfObjectsInPhysicalUnits()[0]. Size of object #2 is GetSizeOfObjectsInPhysicalUnits()[1]. Etc.
Definition at line 199 of file itkRelabelComponentImageFilter.h.
|
inline |
Get the size of each object in pixels. This information is only valid after the filter has executed. Size of the background is not calculated. Size of object #1 is GetSizeOfObjectsInPixels()[0]. Size of object #2 is GetSizeOfObjectsInPixels()[1]. Etc.
Definition at line 187 of file itkRelabelComponentImageFilter.h.
|
virtual |
Controls whether the object labels are sorted by size. If false, initial order of labels is kept.
|
static |
Method for creation through the object factory.
|
overrideprotectedvirtual |
Standard printself method
Reimplemented from itk::InPlaceImageFilter< TInputImage, TOutputImage >.
|
virtual |
Set the minimum size in pixels for an object. All objects smaller than this size will be discarded and will not appear in the output label map. NumberOfObjects will count only the objects whose pixel counts are greater than or equal to the minimum size. Call GetOriginalNumberOfObjects to find out how many objects were present in the original label map.
|
virtual |
Get/Set the number of objects enumerated and described when the filter is printed.
|
virtual |
Controls whether the object labels are sorted by size. If false, initial order of labels is kept.
|
virtual |
Controls whether the object labels are sorted by size. If false, initial order of labels is kept.
|
virtual |
Controls whether the object labels are sorted by size. If false, initial order of labels is kept.
|
static |
Definition at line 106 of file itkRelabelComponentImageFilter.h.
|
static |
Definition at line 107 of file itkRelabelComponentImageFilter.h.
|
private |
Definition at line 312 of file itkRelabelComponentImageFilter.h.
|
private |
Definition at line 309 of file itkRelabelComponentImageFilter.h.
|
private |
Definition at line 310 of file itkRelabelComponentImageFilter.h.
|
private |
Definition at line 311 of file itkRelabelComponentImageFilter.h.
|
private |
Definition at line 316 of file itkRelabelComponentImageFilter.h.
|
private |
Definition at line 315 of file itkRelabelComponentImageFilter.h.
|
private |
Definition at line 313 of file itkRelabelComponentImageFilter.h.