ITK  4.0.0
Insight Segmentation and Registration Toolkit
Public Types | Public Member Functions | Static Public Member Functions | Protected Member Functions | Private Member Functions | Private Attributes
itk::VotingBinaryIterativeHoleFillingImageFilter< TImage > Class Template Reference

Fills in holes and cavities by iteratively applying a voting operation. More...

#include <itkVotingBinaryIterativeHoleFillingImageFilter.h>

Inheritance diagram for itk::VotingBinaryIterativeHoleFillingImageFilter< TImage >:
Collaboration diagram for itk::VotingBinaryIterativeHoleFillingImageFilter< TImage >:

List of all members.

Public Types

typedef SmartPointer< const SelfConstPointer
typedef InputImageType::RegionType InputImageRegionType
typedef TImage InputImageType
typedef InputImageType::PixelType InputPixelType
typedef InputImageType::SizeType InputSizeType
typedef OutputImageType::RegionType OutputImageRegionType
typedef TImage OutputImageType
typedef OutputImageType::PixelType OutputPixelType
typedef SmartPointer< SelfPointer
typedef
VotingBinaryIterativeHoleFillingImageFilter 
Self
typedef ImageToImageFilter
< InputImageType,
OutputImageType
Superclass
typedef
VotingBinaryHoleFillingImageFilter
< InputImageType,
OutputImageType
VotingFilterType

Public Member Functions

virtual ::itk::LightObject::Pointer CreateAnother (void) const
virtual const char * GetNameOfClass () const
virtual const unsigned int & GetNumberOfPixelsChanged ()
virtual const InputSizeTypeGetRadius ()
virtual void SetRadius (InputSizeType _arg)
 typedef (Concept::EqualityComparable< InputPixelType >) InputEqualityComparableCheck
 typedef (Concept::OStreamWritable< InputPixelType >) InputOStreamWritableeCheck
virtual const unsigned int & GetMaximumNumberOfIterations ()
virtual void SetMaximumNumberOfIterations (unsigned int _arg)
virtual const unsigned int & GetCurrentNumberOfIterations ()
virtual void SetCurrentNumberOfIterations (unsigned int _arg)
virtual void SetBackgroundValue (InputPixelType _arg)
virtual void SetForegroundValue (InputPixelType _arg)
virtual const InputPixelTypeGetBackgroundValue ()
virtual const InputPixelTypeGetForegroundValue ()
virtual const unsigned int & GetMajorityThreshold ()
virtual void SetMajorityThreshold (unsigned int _arg)

Static Public Member Functions

static Pointer New ()

Protected Member Functions

void GenerateData ()
 VotingBinaryIterativeHoleFillingImageFilter ()
virtual ~VotingBinaryIterativeHoleFillingImageFilter ()
void PrintSelf (std::ostream &os, Indent indent) const

Private Member Functions

void operator= (const Self &)
 VotingBinaryIterativeHoleFillingImageFilter (const Self &)

Private Attributes

InputPixelType m_BackgroundValue
unsigned int m_CurrentNumberOfIterations
InputPixelType m_ForegroundValue
unsigned int m_MajorityThreshold
unsigned int m_MaximumNumberOfIterations
unsigned int m_NumberOfPixelsChanged
InputSizeType m_Radius

Detailed Description

template<class TImage>
class itk::VotingBinaryIterativeHoleFillingImageFilter< TImage >

Fills in holes and cavities by iteratively applying a voting operation.

This filter uses internally the VotingBinaryHoleFillingImageFilter, and runs it iteratively until no pixels are being changed or until it reaches the maximum number of iterations. The purpose of the filter is to fill in holes of medium size (tens of pixels in radius). In principle the number of iterations is related to the size of the holes to be filled in. The larger the holes, the more iteration must be run with this filter in order to fill in the full hole. The size of the neighborhood is also related to the curvature of the hole borders and therefore the hole size. Note that as a colateral effect this filter may also fill in cavities in the external side of structures.

This filter is templated over a single image type because the output image type must be the same as the input image type. This is required in order to make the iterations possible, since the output image of one iteration is taken as the input image for the next iteration.

See also:
Image
VotingBinaryImageFilter
VotingBinaryHoleFillingImageFilter
Neighborhood
NeighborhoodOperator
NeighborhoodIterator

Definition at line 55 of file itkVotingBinaryIterativeHoleFillingImageFilter.h.


Member Typedef Documentation

template<class TImage >
typedef SmartPointer< const Self > itk::VotingBinaryIterativeHoleFillingImageFilter< TImage >::ConstPointer
template<class TImage >
typedef InputImageType::RegionType itk::VotingBinaryIterativeHoleFillingImageFilter< TImage >::InputImageRegionType
template<class TImage >
typedef TImage itk::VotingBinaryIterativeHoleFillingImageFilter< TImage >::InputImageType

Convenient typedefs for simplifying declarations.

Reimplemented from itk::ImageToImageFilter< TImage, TImage >.

Definition at line 61 of file itkVotingBinaryIterativeHoleFillingImageFilter.h.

template<class TImage >
typedef InputImageType::PixelType itk::VotingBinaryIterativeHoleFillingImageFilter< TImage >::InputPixelType

Image typedef support.

Definition at line 84 of file itkVotingBinaryIterativeHoleFillingImageFilter.h.

template<class TImage >
typedef InputImageType::SizeType itk::VotingBinaryIterativeHoleFillingImageFilter< TImage >::InputSizeType
template<class TImage >
typedef OutputImageType::RegionType itk::VotingBinaryIterativeHoleFillingImageFilter< TImage >::OutputImageRegionType

Superclass typedefs.

Reimplemented from itk::ImageToImageFilter< TImage, TImage >.

Definition at line 88 of file itkVotingBinaryIterativeHoleFillingImageFilter.h.

template<class TImage >
typedef TImage itk::VotingBinaryIterativeHoleFillingImageFilter< TImage >::OutputImageType

Some convenient typedefs.

Reimplemented from itk::ImageSource< TImage >.

Definition at line 62 of file itkVotingBinaryIterativeHoleFillingImageFilter.h.

template<class TImage >
typedef OutputImageType::PixelType itk::VotingBinaryIterativeHoleFillingImageFilter< TImage >::OutputPixelType
template<class TImage >
typedef SmartPointer< Self > itk::VotingBinaryIterativeHoleFillingImageFilter< TImage >::Pointer

Standard class typedefs.

Reimplemented from itk::ImageToImageFilter< TImage, TImage >.

Definition at line 65 of file itkVotingBinaryIterativeHoleFillingImageFilter.h.

Type of the internal Voting filter that is going to be executed iteratively

Definition at line 74 of file itkVotingBinaryIterativeHoleFillingImageFilter.h.


Constructor & Destructor Documentation

End concept checking

template<class TImage >
virtual itk::VotingBinaryIterativeHoleFillingImageFilter< TImage >::~VotingBinaryIterativeHoleFillingImageFilter ( ) [inline, protected, virtual]

End concept checking

Definition at line 148 of file itkVotingBinaryIterativeHoleFillingImageFilter.h.


Member Function Documentation

template<class TImage >
virtual::itk::LightObject::Pointer itk::VotingBinaryIterativeHoleFillingImageFilter< TImage >::CreateAnother ( void  ) const [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.

template<class TImage >
void itk::VotingBinaryIterativeHoleFillingImageFilter< TImage >::GenerateData ( ) [protected, virtual]
template<class TImage >
virtual const InputPixelType& itk::VotingBinaryIterativeHoleFillingImageFilter< TImage >::GetBackgroundValue ( ) [virtual]

Get the value associated with the Foreground (or the object) on the binary input image and the Background .

template<class TImage >
virtual const unsigned int& itk::VotingBinaryIterativeHoleFillingImageFilter< TImage >::GetCurrentNumberOfIterations ( ) [virtual]

Number of iterations executed at any given time. This is useful at the end of the execution in order to verify how many iterations were performed.

template<class TImage >
virtual const InputPixelType& itk::VotingBinaryIterativeHoleFillingImageFilter< TImage >::GetForegroundValue ( ) [virtual]

Get the value associated with the Foreground (or the object) on the binary input image and the Background .

template<class TImage >
virtual const unsigned int& itk::VotingBinaryIterativeHoleFillingImageFilter< TImage >::GetMajorityThreshold ( ) [virtual]

Majority threshold. It is the number of pixels over 50% that will decide whether an OFF pixel will become ON or not. For example, if the neighborhood of a pixel has 124 pixels (excluding itself), the 50% will be 62, and if you set upd a Majority threshold of 5, that means that the filter will require 67 or more neighbor pixels to be ON in order to switch the current OFF pixel to ON. The default value is 1.

template<class TImage >
virtual const unsigned int& itk::VotingBinaryIterativeHoleFillingImageFilter< TImage >::GetMaximumNumberOfIterations ( ) [virtual]

Maximum number of iterations. This filter is executed iteratively as long as at least one pixel has changed in a previous iteration, or until the maximum number of iterations has been reached.

template<class TImage >
virtual const char* itk::VotingBinaryIterativeHoleFillingImageFilter< TImage >::GetNameOfClass ( ) const [virtual]

Run-time type information (and related methods).

Reimplemented from itk::ImageToImageFilter< TImage, TImage >.

template<class TImage >
virtual const unsigned int& itk::VotingBinaryIterativeHoleFillingImageFilter< TImage >::GetNumberOfPixelsChanged ( ) [virtual]

Returns the number of pixels that changed when the filter was executed.

template<class TImage >
virtual const InputSizeType& itk::VotingBinaryIterativeHoleFillingImageFilter< TImage >::GetRadius ( ) [virtual]

Get the radius of the neighborhood used to compute the median

template<class TImage >
static Pointer itk::VotingBinaryIterativeHoleFillingImageFilter< TImage >::New ( ) [static]

Method for creation through the object factory.

Reimplemented from itk::Object.

template<class TImage >
void itk::VotingBinaryIterativeHoleFillingImageFilter< TImage >::operator= ( const Self ) [private]

PushBackInput(), PushFronInput() in the public section force the input to be the type expected by an ImageToImageFilter. However, these methods end of "hiding" the versions from the superclass (ProcessObject) whose arguments are DataObjects. Here, we re-expose the versions from ProcessObject to avoid warnings about hiding methods from the superclass.

Reimplemented from itk::ImageToImageFilter< TImage, TImage >.

template<class TImage >
void itk::VotingBinaryIterativeHoleFillingImageFilter< TImage >::PrintSelf ( std::ostream &  os,
Indent  indent 
) const [protected, virtual]

End concept checking

Reimplemented from itk::ImageToImageFilter< TImage, TImage >.

template<class TImage >
virtual void itk::VotingBinaryIterativeHoleFillingImageFilter< TImage >::SetBackgroundValue ( InputPixelType  _arg) [virtual]

Set the value associated with the Foreground (or the object) on the binary input image and the Background .

template<class TImage >
virtual void itk::VotingBinaryIterativeHoleFillingImageFilter< TImage >::SetCurrentNumberOfIterations ( unsigned int  _arg) [virtual]

Number of iterations executed at any given time. This is useful at the end of the execution in order to verify how many iterations were performed.

template<class TImage >
virtual void itk::VotingBinaryIterativeHoleFillingImageFilter< TImage >::SetForegroundValue ( InputPixelType  _arg) [virtual]

Set the value associated with the Foreground (or the object) on the binary input image and the Background .

template<class TImage >
virtual void itk::VotingBinaryIterativeHoleFillingImageFilter< TImage >::SetMajorityThreshold ( unsigned int  _arg) [virtual]

Majority threshold. It is the number of pixels over 50% that will decide whether an OFF pixel will become ON or not. For example, if the neighborhood of a pixel has 124 pixels (excluding itself), the 50% will be 62, and if you set upd a Majority threshold of 5, that means that the filter will require 67 or more neighbor pixels to be ON in order to switch the current OFF pixel to ON. The default value is 1.

template<class TImage >
virtual void itk::VotingBinaryIterativeHoleFillingImageFilter< TImage >::SetMaximumNumberOfIterations ( unsigned int  _arg) [virtual]

Maximum number of iterations. This filter is executed iteratively as long as at least one pixel has changed in a previous iteration, or until the maximum number of iterations has been reached.

template<class TImage >
virtual void itk::VotingBinaryIterativeHoleFillingImageFilter< TImage >::SetRadius ( InputSizeType  _arg) [virtual]

Set the radius of the neighborhood used to compute the median.

Begin concept checking This class requires InputEqualityComparableCheck in the form of ( Concept::EqualityComparable< InputPixelType > )

This class requires InputOStreamWritableeCheck in the form of ( Concept::OStreamWritable< InputPixelType > )


Member Data Documentation

template<class TImage >
unsigned int itk::VotingBinaryIterativeHoleFillingImageFilter< TImage >::m_CurrentNumberOfIterations [private]
template<class TImage >
unsigned int itk::VotingBinaryIterativeHoleFillingImageFilter< TImage >::m_MajorityThreshold [private]
template<class TImage >
unsigned int itk::VotingBinaryIterativeHoleFillingImageFilter< TImage >::m_MaximumNumberOfIterations [private]
template<class TImage >
unsigned int itk::VotingBinaryIterativeHoleFillingImageFilter< TImage >::m_NumberOfPixelsChanged [private]
template<class TImage >
InputSizeType itk::VotingBinaryIterativeHoleFillingImageFilter< TImage >::m_Radius [private]

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