ITK  5.4.0
Insight Toolkit
Public Types | Public Member Functions | Static Public Attributes | Protected Member Functions | Private Attributes | List of all members
itk::MorphologyImageFilter< TInputImage, TOutputImage, TKernel > Class Template Referenceabstract

#include <itkMorphologyImageFilter.h>

Detailed Description

template<typename TInputImage, typename TOutputImage, typename TKernel>
class itk::MorphologyImageFilter< TInputImage, TOutputImage, TKernel >

Base class for the morphological operations such as erosion and dilation.

This class provides the infrastructure to support most morphological operations. Subclasses of MorphologyImageFilter implement specific "binary" and "grayscale" operations. The "binary" subclasses can operate on gray level data, where a specified a pixel value is consider the "foreground" and every other pixel value is considered the background. This is useful for operating on segment masks where all pixels assigned to segment #1 have value 1, all pixels assigned to segment #2 have value 2, etc. Here, a given segment can be dilated (expanded) while treating all other segment identifiers are background.

The "kernel" specified represents a morphology structuring element. The structuring element is a small Neighborhood with values indicating an element is "on" (value > 0) or "off" (value <=0). Morphological operations are defined by placing the structuring element over a pixel, and calculating a nonlinear function (min, max) over the pixels of the image that are under pixels in the structuring element that are "on". The result of this calculation is the value of the pixel in the output image. Under most circumstances, the "center pixel" of the structuring element – or structuring element pixel over the input pixel under consideration – is prescribed to be "on". This is not a strict requirement but the subclasses of this filter are not guaranteed to produce the correct result if the "center pixel" is not part of the structuring element.

Subclasses of this class can define their own operations by simply providing their own Evaluate() protected member function.

See also
BinaryErodeImageFilter
BinaryDilateImageFilter
GrayscaleErodeImageFilter
GrayscaleDilateImageFilter
NeighborhoodIterator
Neighborhood

Definition at line 72 of file itkMorphologyImageFilter.h.

+ Inheritance diagram for itk::MorphologyImageFilter< TInputImage, TOutputImage, TKernel >:
+ Collaboration diagram for itk::MorphologyImageFilter< TInputImage, TOutputImage, TKernel >:

Public Types

using ConstPointer = SmartPointer< const Self >
 
using DefaultBoundaryConditionType = ConstantBoundaryCondition< InputImageType >
 
using ImageBoundaryConditionConstPointerType = const ImageBoundaryCondition< InputImageType > *
 
using ImageBoundaryConditionPointerType = ImageBoundaryCondition< InputImageType > *
 
using IndexType = typename TInputImage::IndexType
 
using InputImageType = TInputImage
 
using KernelIteratorType = typename KernelType::ConstIterator
 
using KernelType = TKernel
 
using NeighborhoodIteratorType = ConstNeighborhoodIterator< TInputImage >
 
using OutputImageType = TOutputImage
 
using PixelType = typename TInputImage::PixelType
 
using Pointer = SmartPointer< Self >
 
using RadiusType = typename KernelType::SizeType
 
using RegionType = typename TInputImage::RegionType
 
using Self = MorphologyImageFilter
 
using SizeType = typename TInputImage::SizeType
 
using Superclass = KernelImageFilter< TInputImage, TOutputImage, TKernel >
 
- Public Types inherited from itk::KernelImageFilter< TInputImage, TOutputImage, TKernel >
using ConstPointer = SmartPointer< const Self >
 
using FlatKernelType = FlatStructuringElement<(Self::ImageDimension)>
 
using IndexType = typename TInputImage::IndexType
 
using InputImageType = TInputImage
 
using InputPixelType = typename TInputImage::PixelType
 
using KernelType = TKernel
 
using OffsetType = typename TInputImage::OffsetType
 
using OutputImageType = TOutputImage
 
using OutputPixelType = typename TOutputImage::PixelType
 
using Pointer = SmartPointer< Self >
 
using RadiusType = typename TInputImage::SizeType
 
using RegionType = typename TInputImage::RegionType
 
using Self = KernelImageFilter
 
using SizeType = typename TInputImage::SizeType
 
using Superclass = BoxImageFilter< TInputImage, TOutputImage >
 
- Public Types inherited from itk::BoxImageFilter< TInputImage, TOutputImage >
using ConstPointer = SmartPointer< const Self >
 
using IndexType = typename TInputImage::IndexType
 
using InputImageType = TInputImage
 
using InputPixelType = typename TInputImage::PixelType
 
using OffsetType = typename TInputImage::OffsetType
 
using OutputImageType = TOutputImage
 
using OutputPixelType = typename TOutputImage::PixelType
 
using Pointer = SmartPointer< Self >
 
using RadiusType = typename TInputImage::SizeType
 
using RadiusValueType = typename TInputImage::SizeValueType
 
using RegionType = typename TInputImage::RegionType
 
using Self = BoxImageFilter
 
using SizeType = typename TInputImage::SizeType
 
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 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
 

Public Member Functions

virtual ImageBoundaryConditionPointerType GetBoundaryCondition () const
 
const char * GetNameOfClass () const override
 
void OverrideBoundaryCondition (const ImageBoundaryConditionPointerType i)
 
void ResetBoundaryCondition ()
 
- Public Member Functions inherited from itk::KernelImageFilter< TInputImage, TOutputImage, TKernel >
virtual const KernelTypeGetKernel () const
 
virtual void SetKernel (const KernelType &kernel)
 
void SetRadius (const RadiusType &radius) override
 
void SetRadius (const SizeValueType &radius) override
 
- Public Member Functions inherited from itk::BoxImageFilter< TInputImage, TOutputImage >
virtual const RadiusTypeGetRadius () const
 
virtual void SetRadius (const RadiusValueType &radius)
 
- Public Member Functions inherited from itk::ImageToImageFilter< TInputImage, TOutputImage >
const InputImageTypeGetInput () const
 
const InputImageTypeGetInput (unsigned int idx) const
 
void PopBackInput () override
 
void PopFrontInput () override
 
virtual void PushBackInput (const InputImageType *input)
 
virtual void PushFrontInput (const InputImageType *input)
 
virtual void SetInput (const DataObjectIdentifierType &key, DataObject *input)
 
virtual void SetInput (const InputImageType *input)
 
virtual void SetInput (unsigned int, const TInputImage *image)
 
virtual void SetCoordinateTolerance (double _arg)
 
virtual double GetCoordinateTolerance () const
 
virtual void SetDirectionTolerance (double _arg)
 
virtual double GetDirectionTolerance () const
 
- Public Member Functions inherited from itk::ImageSource< TOutputImage >
OutputImageTypeGetOutput (unsigned int idx)
 
OutputImageTypeGetOutput ()
 
const OutputImageTypeGetOutput () const
 
virtual void GraftOutput (DataObject *graft)
 
virtual void GraftOutput (const DataObjectIdentifierType &key, DataObject *graft)
 
virtual void GraftNthOutput (unsigned int idx, DataObject *graft)
 
ProcessObject::DataObjectPointer MakeOutput (ProcessObject::DataObjectPointerArraySizeType idx) override
 
ProcessObject::DataObjectPointer MakeOutput (const ProcessObject::DataObjectIdentifierType &) override
 
- Public Member Functions inherited from itk::ProcessObject
virtual void AbortGenerateDataOn ()
 
virtual void EnlargeOutputRequestedRegion (DataObject *)
 
virtual const bool & GetAbortGenerateData () const
 
DataObjectPointerArray GetIndexedInputs ()
 
DataObjectPointerArray GetIndexedOutputs ()
 
NameArray GetInputNames () const
 
DataObjectPointerArray GetInputs ()
 
MultiThreaderTypeGetMultiThreader () const
 
DataObjectPointerArraySizeType GetNumberOfIndexedInputs () const
 
DataObjectPointerArraySizeType GetNumberOfIndexedOutputs () const
 
DataObjectPointerArraySizeType GetNumberOfInputs () const
 
DataObjectPointerArraySizeType GetNumberOfOutputs () const
 
virtual DataObjectPointerArraySizeType GetNumberOfValidRequiredInputs () const
 
NameArray GetOutputNames () const
 
DataObjectPointerArray GetOutputs ()
 
virtual float GetProgress () const
 
NameArray GetRequiredInputNames () const
 
bool HasInput (const DataObjectIdentifierType &key) const
 
bool HasOutput (const DataObjectIdentifierType &key) const
 
void IncrementProgress (float increment)
 
virtual void PrepareOutputs ()
 
virtual void PropagateRequestedRegion (DataObject *output)
 
virtual void ResetPipeline ()
 
virtual void SetAbortGenerateData (bool _arg)
 
void SetMultiThreader (MultiThreaderType *threader)
 
virtual void Update ()
 
virtual void UpdateLargestPossibleRegion ()
 
virtual void UpdateOutputData (DataObject *output)
 
virtual void UpdateOutputInformation ()
 
void UpdateProgress (float progress)
 
virtual void SetReleaseDataFlag (bool val)
 
virtual bool GetReleaseDataFlag () const
 
void ReleaseDataFlagOn ()
 
void ReleaseDataFlagOff ()
 
virtual void SetReleaseDataBeforeUpdateFlag (bool _arg)
 
virtual const bool & GetReleaseDataBeforeUpdateFlag () const
 
virtual void ReleaseDataBeforeUpdateFlagOn ()
 
virtual void SetNumberOfWorkUnits (ThreadIdType _arg)
 
virtual const ThreadIdTypeGetNumberOfWorkUnits () 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
 
LightObject::Pointer CreateAnother () const override
 
virtual void DebugOff () const
 
virtual void DebugOn () const
 
CommandGetCommand (unsigned long tag)
 
bool GetDebug () const
 
MetaDataDictionaryGetMetaDataDictionary ()
 
const MetaDataDictionaryGetMetaDataDictionary () const
 
virtual ModifiedTimeType GetMTime () const
 
virtual const TimeStampGetTimeStamp () 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 Attributes

static constexpr unsigned int ImageDimension = TInputImage::ImageDimension
 
- Static Public Attributes inherited from itk::KernelImageFilter< TInputImage, TOutputImage, TKernel >
static constexpr unsigned int ImageDimension = TInputImage::ImageDimension
 
- Static Public Attributes inherited from itk::BoxImageFilter< TInputImage, TOutputImage >
static constexpr unsigned int ImageDimension = TInputImage::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
 

Protected Member Functions

void DynamicThreadedGenerateData (const OutputImageRegionType &outputRegionForThread) override
 
virtual PixelType Evaluate (const NeighborhoodIteratorType &nit, const KernelIteratorType kernelBegin, const KernelIteratorType kernelEnd)=0
 
 MorphologyImageFilter ()
 
void PrintSelf (std::ostream &os, Indent indent) const override
 
 ~MorphologyImageFilter () override=default
 
- Protected Member Functions inherited from itk::KernelImageFilter< TInputImage, TOutputImage, TKernel >
 KernelImageFilter ()
 
 ~KernelImageFilter () override=default
 
- Protected Member Functions inherited from itk::BoxImageFilter< TInputImage, TOutputImage >
 BoxImageFilter ()
 
void GenerateInputRequestedRegion () override
 
 ~BoxImageFilter () override=default
 
- Protected Member Functions inherited from itk::ImageToImageFilter< TInputImage, TOutputImage >
virtual void CallCopyInputRegionToOutputRegion (OutputImageRegionType &destRegion, const InputImageRegionType &srcRegion)
 
virtual void CallCopyOutputRegionToInputRegion (InputImageRegionType &destRegion, const OutputImageRegionType &srcRegion)
 
 ImageToImageFilter ()
 
void VerifyInputInformation () ITKv5_CONST override
 
 ~ImageToImageFilter () override=default
 
virtual void PushBackInput (const DataObject *input)
 
virtual void PushFrontInput (const DataObject *input)
 
- Protected Member Functions inherited from itk::ImageSource< TOutputImage >
virtual void AfterThreadedGenerateData ()
 
virtual void AllocateOutputs ()
 
virtual void BeforeThreadedGenerateData ()
 
void ClassicMultiThread (ThreadFunctionType callbackFunction)
 
void GenerateData () override
 
virtual const ImageRegionSplitterBaseGetImageRegionSplitter () const
 
 ImageSource ()
 
virtual unsigned int SplitRequestedRegion (unsigned int i, unsigned int pieces, OutputImageRegionType &splitRegion)
 
 ~ImageSource () override=default
 
virtual void ThreadedGenerateData (const OutputImageRegionType &region, ThreadIdType threadId)
 
virtual bool GetDynamicMultiThreading () const
 
virtual void SetDynamicMultiThreading (bool _arg)
 
virtual void DynamicMultiThreadingOn ()
 
- Protected Member Functions inherited from itk::ProcessObject
virtual void AddInput (DataObject *input)
 
void AddOptionalInputName (const DataObjectIdentifierType &)
 
void AddOptionalInputName (const DataObjectIdentifierType &, DataObjectPointerArraySizeType idx)
 
virtual void AddOutput (DataObject *output)
 
bool AddRequiredInputName (const DataObjectIdentifierType &)
 
bool AddRequiredInputName (const DataObjectIdentifierType &, DataObjectPointerArraySizeType idx)
 
virtual void CacheInputReleaseDataFlags ()
 
virtual void GenerateOutputInformation ()
 
virtual void GenerateOutputRequestedRegion (DataObject *output)
 
DataObjectGetInput (const DataObjectIdentifierType &key)
 
const DataObjectGetInput (const DataObjectIdentifierType &key) const
 
virtual const DataObjectPointerArraySizeTypeGetNumberOfRequiredInputs () const
 
virtual const DataObjectPointerArraySizeTypeGetNumberOfRequiredOutputs () const
 
bool IsIndexedInputName (const DataObjectIdentifierType &) const
 
bool IsIndexedOutputName (const DataObjectIdentifierType &) const
 
bool IsRequiredInputName (const DataObjectIdentifierType &) const
 
DataObjectPointerArraySizeType MakeIndexFromInputName (const DataObjectIdentifierType &name) const
 
DataObjectPointerArraySizeType MakeIndexFromOutputName (const DataObjectIdentifierType &name) const
 
DataObjectIdentifierType MakeNameFromInputIndex (DataObjectPointerArraySizeType idx) const
 
DataObjectIdentifierType MakeNameFromOutputIndex (DataObjectPointerArraySizeType idx) const
 
 ProcessObject ()
 
virtual void PropagateResetPipeline ()
 
virtual void PushBackInput (const DataObject *input)
 
virtual void PushFrontInput (const DataObject *input)
 
virtual void ReleaseInputs ()
 
virtual void RemoveInput (const DataObjectIdentifierType &key)
 
virtual void RemoveInput (DataObjectPointerArraySizeType)
 
virtual void RemoveOutput (const DataObjectIdentifierType &key)
 
virtual void RemoveOutput (DataObjectPointerArraySizeType idx)
 
bool RemoveRequiredInputName (const DataObjectIdentifierType &)
 
virtual void RestoreInputReleaseDataFlags ()
 
virtual void SetInput (const DataObjectIdentifierType &key, DataObject *input)
 
virtual void SetNthInput (DataObjectPointerArraySizeType idx, DataObject *input)
 
virtual void SetNthOutput (DataObjectPointerArraySizeType idx, DataObject *output)
 
void SetNumberOfIndexedInputs (DataObjectPointerArraySizeType num)
 
void SetNumberOfIndexedOutputs (DataObjectPointerArraySizeType num)
 
virtual void SetNumberOfRequiredInputs (DataObjectPointerArraySizeType)
 
virtual void SetNumberOfRequiredOutputs (DataObjectPointerArraySizeType _arg)
 
virtual void SetOutput (const DataObjectIdentifierType &name, DataObject *output)
 
virtual void SetPrimaryInput (DataObject *object)
 
virtual void SetPrimaryOutput (DataObject *object)
 
void SetRequiredInputNames (const NameArray &)
 
virtual void VerifyPreconditions () ITKv5_CONST
 
 ~ProcessObject () override
 
DataObjectGetInput (DataObjectPointerArraySizeType idx)
 
const DataObjectGetInput (DataObjectPointerArraySizeType idx) const
 
DataObjectGetPrimaryInput ()
 
const DataObjectGetPrimaryInput () const
 
virtual void SetPrimaryInputName (const DataObjectIdentifierType &key)
 
virtual const char * GetPrimaryInputName () const
 
DataObjectGetOutput (const DataObjectIdentifierType &key)
 
const DataObjectGetOutput (const DataObjectIdentifierType &key) const
 
virtual void SetPrimaryOutputName (const DataObjectIdentifierType &key)
 
virtual const char * GetPrimaryOutputName () const
 
DataObjectGetOutput (DataObjectPointerArraySizeType i)
 
const DataObjectGetOutput (DataObjectPointerArraySizeType i) const
 
DataObjectGetPrimaryOutput ()
 
const DataObjectGetPrimaryOutput () const
 
virtual bool GetThreaderUpdateProgress () const
 
virtual void ThreaderUpdateProgressOn ()
 
virtual void SetThreaderUpdateProgress (bool arg)
 
- Protected Member Functions inherited from itk::Object
 Object ()
 
bool PrintObservers (std::ostream &os, Indent indent) const
 
virtual void SetTimeStamp (const TimeStamp &timeStamp)
 
 ~Object () override
 
- 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 ()
 

Private Attributes

ImageBoundaryConditionPointerType m_BoundaryCondition {}
 
DefaultBoundaryConditionType m_DefaultBoundaryCondition {}
 

Additional Inherited Members

- Static Public Member Functions inherited from itk::KernelImageFilter< TInputImage, TOutputImage, TKernel >
static Pointer New ()
 
- Static Public Member Functions inherited from itk::BoxImageFilter< TInputImage, TOutputImage >
static Pointer New ()
 
- Static Public Member Functions inherited from itk::ImageToImageFilter< TInputImage, TOutputImage >
static double GetGlobalDefaultCoordinateTolerance ()
 
static double GetGlobalDefaultDirectionTolerance ()
 
static void SetGlobalDefaultCoordinateTolerance (double)
 
static void SetGlobalDefaultDirectionTolerance (double)
 
- 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 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 ImageRegionSplitterBaseGetGlobalDefaultSplitter ()
 
static ITK_THREAD_RETURN_FUNCTION_CALL_CONVENTION ThreaderCallback (void *arg)
 
- Static Protected Member Functions inherited from itk::ProcessObject
static constexpr float progressFixedToFloat (uint32_t fixed)
 
static uint32_t progressFloatToFixed (float f)
 
- Protected Attributes inherited from itk::KernelImageFilter< TInputImage, TOutputImage, TKernel >
KernelType m_Kernel {}
 
- 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 {}
 

Member Typedef Documentation

◆ ConstPointer

template<typename TInputImage , typename TOutputImage , typename TKernel >
using itk::MorphologyImageFilter< TInputImage, TOutputImage, TKernel >::ConstPointer = SmartPointer<const Self>

Definition at line 81 of file itkMorphologyImageFilter.h.

◆ DefaultBoundaryConditionType

template<typename TInputImage , typename TOutputImage , typename TKernel >
using itk::MorphologyImageFilter< TInputImage, TOutputImage, TKernel >::DefaultBoundaryConditionType = ConstantBoundaryCondition<InputImageType>

Definition at line 101 of file itkMorphologyImageFilter.h.

◆ ImageBoundaryConditionConstPointerType

template<typename TInputImage , typename TOutputImage , typename TKernel >
using itk::MorphologyImageFilter< TInputImage, TOutputImage, TKernel >::ImageBoundaryConditionConstPointerType = const ImageBoundaryCondition<InputImageType> *

Definition at line 100 of file itkMorphologyImageFilter.h.

◆ ImageBoundaryConditionPointerType

template<typename TInputImage , typename TOutputImage , typename TKernel >
using itk::MorphologyImageFilter< TInputImage, TOutputImage, TKernel >::ImageBoundaryConditionPointerType = ImageBoundaryCondition<InputImageType> *

Typedef for boundary conditions.

Definition at line 99 of file itkMorphologyImageFilter.h.

◆ IndexType

template<typename TInputImage , typename TOutputImage , typename TKernel >
using itk::MorphologyImageFilter< TInputImage, TOutputImage, TKernel >::IndexType = typename TInputImage::IndexType

Definition at line 91 of file itkMorphologyImageFilter.h.

◆ InputImageType

template<typename TInputImage , typename TOutputImage , typename TKernel >
using itk::MorphologyImageFilter< TInputImage, TOutputImage, TKernel >::InputImageType = TInputImage

Image related type alias.

Definition at line 87 of file itkMorphologyImageFilter.h.

◆ KernelIteratorType

template<typename TInputImage , typename TOutputImage , typename TKernel >
using itk::MorphologyImageFilter< TInputImage, TOutputImage, TKernel >::KernelIteratorType = typename KernelType::ConstIterator

Kernel (structuring element) iterator.

Definition at line 110 of file itkMorphologyImageFilter.h.

◆ KernelType

template<typename TInputImage , typename TOutputImage , typename TKernel >
using itk::MorphologyImageFilter< TInputImage, TOutputImage, TKernel >::KernelType = TKernel

Kernel type alias.

Definition at line 107 of file itkMorphologyImageFilter.h.

◆ NeighborhoodIteratorType

template<typename TInputImage , typename TOutputImage , typename TKernel >
using itk::MorphologyImageFilter< TInputImage, TOutputImage, TKernel >::NeighborhoodIteratorType = ConstNeighborhoodIterator<TInputImage>

Neighborhood iterator type.

Definition at line 104 of file itkMorphologyImageFilter.h.

◆ OutputImageType

template<typename TInputImage , typename TOutputImage , typename TKernel >
using itk::MorphologyImageFilter< TInputImage, TOutputImage, TKernel >::OutputImageType = TOutputImage

Definition at line 88 of file itkMorphologyImageFilter.h.

◆ PixelType

template<typename TInputImage , typename TOutputImage , typename TKernel >
using itk::MorphologyImageFilter< TInputImage, TOutputImage, TKernel >::PixelType = typename TInputImage::PixelType

Definition at line 92 of file itkMorphologyImageFilter.h.

◆ Pointer

template<typename TInputImage , typename TOutputImage , typename TKernel >
using itk::MorphologyImageFilter< TInputImage, TOutputImage, TKernel >::Pointer = SmartPointer<Self>

Definition at line 80 of file itkMorphologyImageFilter.h.

◆ RadiusType

template<typename TInputImage , typename TOutputImage , typename TKernel >
using itk::MorphologyImageFilter< TInputImage, TOutputImage, TKernel >::RadiusType = typename KernelType::SizeType

n-dimensional Kernel radius.

Definition at line 113 of file itkMorphologyImageFilter.h.

◆ RegionType

template<typename TInputImage , typename TOutputImage , typename TKernel >
using itk::MorphologyImageFilter< TInputImage, TOutputImage, TKernel >::RegionType = typename TInputImage::RegionType

Definition at line 89 of file itkMorphologyImageFilter.h.

◆ Self

template<typename TInputImage , typename TOutputImage , typename TKernel >
using itk::MorphologyImageFilter< TInputImage, TOutputImage, TKernel >::Self = MorphologyImageFilter

Standard Self type alias

Definition at line 78 of file itkMorphologyImageFilter.h.

◆ SizeType

template<typename TInputImage , typename TOutputImage , typename TKernel >
using itk::MorphologyImageFilter< TInputImage, TOutputImage, TKernel >::SizeType = typename TInputImage::SizeType

Definition at line 90 of file itkMorphologyImageFilter.h.

◆ Superclass

template<typename TInputImage , typename TOutputImage , typename TKernel >
using itk::MorphologyImageFilter< TInputImage, TOutputImage, TKernel >::Superclass = KernelImageFilter<TInputImage, TOutputImage, TKernel>

Definition at line 79 of file itkMorphologyImageFilter.h.

Constructor & Destructor Documentation

◆ MorphologyImageFilter()

template<typename TInputImage , typename TOutputImage , typename TKernel >
itk::MorphologyImageFilter< TInputImage, TOutputImage, TKernel >::MorphologyImageFilter ( )
protected

◆ ~MorphologyImageFilter()

template<typename TInputImage , typename TOutputImage , typename TKernel >
itk::MorphologyImageFilter< TInputImage, TOutputImage, TKernel >::~MorphologyImageFilter ( )
overrideprotecteddefault

Member Function Documentation

◆ DynamicThreadedGenerateData()

template<typename TInputImage , typename TOutputImage , typename TKernel >
void itk::MorphologyImageFilter< TInputImage, TOutputImage, TKernel >::DynamicThreadedGenerateData ( const OutputImageRegionType outputRegionForThread)
overrideprotectedvirtual

Multi-thread version of GenerateData.

Reimplemented from itk::ImageSource< TOutputImage >.

◆ Evaluate()

template<typename TInputImage , typename TOutputImage , typename TKernel >
virtual PixelType itk::MorphologyImageFilter< TInputImage, TOutputImage, TKernel >::Evaluate ( const NeighborhoodIteratorType nit,
const KernelIteratorType  kernelBegin,
const KernelIteratorType  kernelEnd 
)
protectedpure virtual

◆ GetBoundaryCondition()

template<typename TInputImage , typename TOutputImage , typename TKernel >
virtual ImageBoundaryConditionPointerType itk::MorphologyImageFilter< TInputImage, TOutputImage, TKernel >::GetBoundaryCondition ( ) const
virtual

Get the current boundary condition.

◆ GetNameOfClass()

template<typename TInputImage , typename TOutputImage , typename TKernel >
const char* itk::MorphologyImageFilter< TInputImage, TOutputImage, TKernel >::GetNameOfClass ( ) const
overridevirtual

◆ OverrideBoundaryCondition()

template<typename TInputImage , typename TOutputImage , typename TKernel >
void itk::MorphologyImageFilter< TInputImage, TOutputImage, TKernel >::OverrideBoundaryCondition ( const ImageBoundaryConditionPointerType  i)
inline

Allows a user to override the internal boundary condition. Care should be be taken to ensure that the overriding boundary condition is a persistent object during the time it is referenced. The overriding condition can be of a different type than the default type as long as it is a subclass of ImageBoundaryCondition.

Definition at line 121 of file itkMorphologyImageFilter.h.

◆ PrintSelf()

template<typename TInputImage , typename TOutputImage , typename TKernel >
void itk::MorphologyImageFilter< TInputImage, TOutputImage, TKernel >::PrintSelf ( std::ostream &  os,
Indent  indent 
) const
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::KernelImageFilter< TInputImage, TOutputImage, TKernel >.

◆ ResetBoundaryCondition()

template<typename TInputImage , typename TOutputImage , typename TKernel >
void itk::MorphologyImageFilter< TInputImage, TOutputImage, TKernel >::ResetBoundaryCondition ( )
inline

Rest the boundary condition to the default

Definition at line 128 of file itkMorphologyImageFilter.h.

Member Data Documentation

◆ ImageDimension

template<typename TInputImage , typename TOutputImage , typename TKernel >
constexpr unsigned int itk::MorphologyImageFilter< TInputImage, TOutputImage, TKernel >::ImageDimension = TInputImage::ImageDimension
staticconstexpr

Image related type alias.

Definition at line 96 of file itkMorphologyImageFilter.h.

◆ m_BoundaryCondition

template<typename TInputImage , typename TOutputImage , typename TKernel >
ImageBoundaryConditionPointerType itk::MorphologyImageFilter< TInputImage, TOutputImage, TKernel >::m_BoundaryCondition {}
private

Pointer to a persistent boundary condition object used for the image iterator.

Definition at line 157 of file itkMorphologyImageFilter.h.

◆ m_DefaultBoundaryCondition

template<typename TInputImage , typename TOutputImage , typename TKernel >
DefaultBoundaryConditionType itk::MorphologyImageFilter< TInputImage, TOutputImage, TKernel >::m_DefaultBoundaryCondition {}
private

Default boundary condition

Definition at line 160 of file itkMorphologyImageFilter.h.


The documentation for this class was generated from the following file: