ITK
5.2.0
Insight Toolkit
|
#include <itkInPlaceLabelMapFilter.h>
Public Types | |
using | ConstPointer = SmartPointer< const Self > |
using | IndexType = typename InputImageType::IndexType |
using | InputImageConstPointer = typename InputImageType::ConstPointer |
using | InputImagePixelType = typename InputImageType::PixelType |
using | InputImagePointer = typename InputImageType::Pointer |
using | InputImageRegionType = typename InputImageType::RegionType |
using | InputImageType = TInputImage |
using | LabelObjectType = typename InputImageType::LabelObjectType |
using | OutputImagePixelType = typename Superclass::OutputImagePixelType |
using | OutputImagePointer = typename Superclass::OutputImagePointer |
using | OutputImageRegionType = typename Superclass::OutputImageRegionType |
using | OutputImageType = typename Superclass::OutputImageType |
using | PixelType = typename InputImageType::PixelType |
using | Pointer = SmartPointer< Self > |
using | RegionType = typename InputImageType::RegionType |
using | Self = InPlaceLabelMapFilter |
using | Superclass = LabelMapFilter< TInputImage, TInputImage > |
using | TOutputImage = TInputImage |
Public Types inherited from itk::LabelMapFilter< TInputImage, TInputImage > | |
using | ConstPointer = SmartPointer< const Self > |
using | InputImageConstPointer = typename Superclass::InputImageConstPointer |
using | InputImagePixelType = typename Superclass::InputImagePixelType |
using | InputImagePointer = typename Superclass::InputImagePointer |
using | InputImageRegionType = typename Superclass::InputImageRegionType |
using | InputImageType = typename Superclass::InputImageType |
using | LabelObjectType = typename InputImageType::LabelObjectType |
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 = LabelMapFilter |
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::LabelMapFilter< TInputImage, TInputImage > | |
static Pointer | New () |
Static Public Member Functions inherited from itk::ImageToImageFilter< TInputImage, TInputImage > | |
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 = TInputImage::ImageDimension |
static constexpr unsigned int | OutputImageDimension = TOutputImage::ImageDimension |
Static Public Attributes inherited from itk::LabelMapFilter< TInputImage, TInputImage > | |
static constexpr unsigned int | InputImageDimension |
static constexpr unsigned int | OutputImageDimension |
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 |
bool | m_InPlace { true } |
virtual void | SetInPlace (bool _arg) |
virtual bool | GetInPlace () |
virtual void | InPlaceOn () |
virtual void | InPlaceOff () |
bool | CanRunInPlace () const |
InPlaceLabelMapFilter ()=default | |
~InPlaceLabelMapFilter () override=default | |
void | PrintSelf (std::ostream &os, Indent indent) const override |
void | AllocateOutputs () override |
InputImageType * | GetLabelMap () override |
Base class for filters that takes an image as input and overwrites that image as the output.
InPlaceLabelMapFilter is the base class for all process objects whose output image data is constructed by overwriting the input image data. In other words, the output bulk data is the same block of memory as the input bulk data. This filter provides the mechanisms for in place image processing while maintaining general pipeline mechanics. InPlaceLabelMapFilters use less memory than standard ImageToImageFilters because the input buffer is reused as the output buffer. However, this benefit does not come without a cost. Since the filter overwrites its input, the ownership of the bulk data is transitioned from the input data object to the output data object. When a data object has multiple consumers with one of the consumers being an in place filter, the in place filter effectively destroys the bulk data for the data object. Upstream filters will then have to re-execute to regenerate the data object's bulk data for the remaining consumers.
Since an InPlaceLabelMapFilter reuses the input bulk data memory for the output bulk data memory, the input image type must match the output image type. If the input and output image types are not identical, the filter reverts to a traditional ImageToImageFilter behaviour where an output image is allocated. In place operation can also be controlled (when the input and output image type match) via the methods InPlaceOn() and InPlaceOff().
Subclasses of InPlaceLabelMapFilter must take extra care in how they manage memory using (and perhaps overriding) the implementations of ReleaseInputs() and AllocateOutputs() provided here.
This code was contributed in the Insight Journal paper: "Label object representation and manipulation with ITK" by Lehmann G. https://www.insight-journal.org/browse/publication/176
Definition at line 83 of file itkInPlaceLabelMapFilter.h.
using itk::InPlaceLabelMapFilter< TInputImage >::ConstPointer = SmartPointer<const Self> |
Definition at line 92 of file itkInPlaceLabelMapFilter.h.
using itk::InPlaceLabelMapFilter< TInputImage >::IndexType = typename InputImageType::IndexType |
Definition at line 115 of file itkInPlaceLabelMapFilter.h.
using itk::InPlaceLabelMapFilter< TInputImage >::InputImageConstPointer = typename InputImageType::ConstPointer |
Definition at line 109 of file itkInPlaceLabelMapFilter.h.
using itk::InPlaceLabelMapFilter< TInputImage >::InputImagePixelType = typename InputImageType::PixelType |
Definition at line 111 of file itkInPlaceLabelMapFilter.h.
using itk::InPlaceLabelMapFilter< TInputImage >::InputImagePointer = typename InputImageType::Pointer |
Definition at line 108 of file itkInPlaceLabelMapFilter.h.
using itk::InPlaceLabelMapFilter< TInputImage >::InputImageRegionType = typename InputImageType::RegionType |
Definition at line 110 of file itkInPlaceLabelMapFilter.h.
using itk::InPlaceLabelMapFilter< TInputImage >::InputImageType = TInputImage |
Some convenient type alias.
Definition at line 107 of file itkInPlaceLabelMapFilter.h.
using itk::InPlaceLabelMapFilter< TInputImage >::LabelObjectType = typename InputImageType::LabelObjectType |
Definition at line 112 of file itkInPlaceLabelMapFilter.h.
using itk::InPlaceLabelMapFilter< TInputImage >::OutputImagePixelType = typename Superclass::OutputImagePixelType |
Definition at line 104 of file itkInPlaceLabelMapFilter.h.
using itk::InPlaceLabelMapFilter< TInputImage >::OutputImagePointer = typename Superclass::OutputImagePointer |
Definition at line 102 of file itkInPlaceLabelMapFilter.h.
using itk::InPlaceLabelMapFilter< TInputImage >::OutputImageRegionType = typename Superclass::OutputImageRegionType |
Definition at line 103 of file itkInPlaceLabelMapFilter.h.
using itk::InPlaceLabelMapFilter< TInputImage >::OutputImageType = typename Superclass::OutputImageType |
Superclass type alias.
Definition at line 101 of file itkInPlaceLabelMapFilter.h.
using itk::InPlaceLabelMapFilter< TInputImage >::PixelType = typename InputImageType::PixelType |
Definition at line 114 of file itkInPlaceLabelMapFilter.h.
using itk::InPlaceLabelMapFilter< TInputImage >::Pointer = SmartPointer<Self> |
Definition at line 91 of file itkInPlaceLabelMapFilter.h.
using itk::InPlaceLabelMapFilter< TInputImage >::RegionType = typename InputImageType::RegionType |
Definition at line 116 of file itkInPlaceLabelMapFilter.h.
using itk::InPlaceLabelMapFilter< TInputImage >::Self = InPlaceLabelMapFilter |
Standard class type aliases.
Definition at line 89 of file itkInPlaceLabelMapFilter.h.
using itk::InPlaceLabelMapFilter< TInputImage >::Superclass = LabelMapFilter<TInputImage, TInputImage> |
Definition at line 90 of file itkInPlaceLabelMapFilter.h.
using itk::InPlaceLabelMapFilter< TInputImage >::TOutputImage = TInputImage |
Definition at line 118 of file itkInPlaceLabelMapFilter.h.
|
protecteddefault |
In place operation can be turned on and off. This only has an effect when the input and output image type match.
|
overrideprotecteddefault |
In place operation can be turned on and off. This only has an effect when the input and output image type match.
|
overrideprotectedvirtual |
The GenerateData method normally allocates the buffers for all of the outputs of a filter. Since InPlaceLabelMapFilter's can use an overwritten version of the input for its output, the output buffer should not be allocated. When possible, we graft the input to the filter to the output. If an InPlaceFilter has multiple outputs, then it would need to override this method to graft one of its outputs and allocate the remaining. If a filter is threaded (i.e. it provides an implementation of ThreadedGenerateData()), this method is called automatically. If an InPlaceFilter is not threaded (i.e. it provides an implementation of GenerateData()), then this method (or equivalent) must be called in GenerateData().
Reimplemented from itk::ImageSource< TInputImage >.
|
inline |
Can the filter run in place? To do so, the filter's first input and output must have the same dimension and pixel type. This method can be used in conjunction with the InPlace ivar to determine whether a particular use of the filter is really running in place. Some filters may be able to optimize their operation if the InPlace is true and CanRunInPlace is true.
Definition at line 138 of file itkInPlaceLabelMapFilter.h.
|
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::ShapeLabelMapFilter< TImage, Image< TImage::PixelType, TImage::ImageDimension > >, itk::PadLabelMapFilter< TInputImage >, and itk::RegionFromReferenceLabelMapFilter< TInputImage >.
|
virtual |
In place operation can be turned on and off. This only has an effect when the input and output image type match.
|
inlineoverrideprotectedvirtual |
Return the output label collection image, instead of the input as in the default implementation
Reimplemented from itk::LabelMapFilter< TInputImage, TInputImage >.
Definition at line 174 of file itkInPlaceLabelMapFilter.h.
|
virtual |
Run-time type information (and related methods).
Reimplemented from itk::LabelMapFilter< TInputImage, TInputImage >.
Reimplemented in itk::MergeLabelMapFilter< TImage >, itk::LabelSelectionLabelMapFilter< TImage >, itk::ShapeLabelMapFilter< TImage, TLabelImage >, itk::ShapeLabelMapFilter< TImage, Image< TImage::PixelType, TImage::ImageDimension > >, itk::AttributeSelectionLabelMapFilter< TImage, TAttributeAccessor >, itk::AttributeSelectionLabelMapFilter< TImage, Functor::LabelLabelObjectAccessor< TImage::LabelObjectType > >, itk::BinaryReconstructionLabelMapFilter< TImage, TMarkerImage, TAttributeAccessor >, itk::AttributeUniqueLabelMapFilter< TImage, TAttributeAccessor >, itk::AttributeUniqueLabelMapFilter< TImage, Functor::LabelLabelObjectAccessor< TImage::LabelObjectType > >, itk::LabelUniqueLabelMapFilter< TImage >, itk::ShapeOpeningLabelMapFilter< TImage >, itk::AttributeOpeningLabelMapFilter< TImage, TAttributeAccessor >, itk::AttributePositionLabelMapFilter< TImage, TAttributeAccessor, VPhysicalPosition >, itk::RelabelLabelMapFilter< TImage >, itk::StatisticsLabelMapFilter< TImage, TFeatureImage >, itk::AttributeRelabelLabelMapFilter< TImage, TAttributeAccessor >, itk::ChangeLabelLabelMapFilter< TImage >, itk::AttributeRelabelLabelMapFilter< TImage, Functor::LabelLabelObjectAccessor< TImage::LabelObjectType > >, itk::AttributeKeepNObjectsLabelMapFilter< TImage, TAttributeAccessor >, itk::ShapeRelabelLabelMapFilter< TImage >, itk::ShapeUniqueLabelMapFilter< TImage >, itk::StatisticsKeepNObjectsLabelMapFilter< TImage >, itk::StatisticsOpeningLabelMapFilter< TImage >, itk::ShapeKeepNObjectsLabelMapFilter< TImage >, itk::StatisticsRelabelLabelMapFilter< TImage >, itk::StatisticsPositionLabelMapFilter< TImage >, itk::AggregateLabelMapFilter< TImage >, itk::StatisticsUniqueLabelMapFilter< TImage >, itk::ShiftScaleLabelMapFilter< TImage >, itk::AutoCropLabelMapFilter< TInputImage >, itk::ChangeRegionLabelMapFilter< TInputImage >, itk::CropLabelMapFilter< TInputImage >, itk::PadLabelMapFilter< TInputImage >, itk::ShapePositionLabelMapFilter< TImage >, and itk::RegionFromReferenceLabelMapFilter< TInputImage >.
|
virtual |
In place operation can be turned on and off. This only has an effect when the input and output image type match.
|
virtual |
In place operation can be turned on and off. This only has an effect when the input and output image type match.
|
static |
Standard New method.
|
overrideprotectedvirtual |
In place operation can be turned on and off. This only has an effect when the input and output image type match.
Reimplemented from itk::ProcessObject.
Reimplemented in itk::ShapeLabelMapFilter< TImage, Image< TImage::PixelType, TImage::ImageDimension > >, itk::RegionFromReferenceLabelMapFilter< TInputImage >, and itk::PadLabelMapFilter< TInputImage >.
|
virtual |
In place operation can be turned on and off. This only has an effect when the input and output image type match.
|
staticconstexpr |
ImageDimension constants
Definition at line 121 of file itkInPlaceLabelMapFilter.h.
|
private |
In place operation can be turned on and off. This only has an effect when the input and output image type match.
Definition at line 180 of file itkInPlaceLabelMapFilter.h.
|
staticconstexpr |
Definition at line 122 of file itkInPlaceLabelMapFilter.h.