ITK
4.1.0
Insight Segmentation and Registration Toolkit
|
#include <itkVotingBinaryIterativeHoleFillingImageFilter.h>
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.
Definition at line 55 of file itkVotingBinaryIterativeHoleFillingImageFilter.h.
typedef SmartPointer< const Self > itk::VotingBinaryIterativeHoleFillingImageFilter< TImage >::ConstPointer |
Reimplemented from itk::ImageToImageFilter< TImage, TImage >.
Definition at line 68 of file itkVotingBinaryIterativeHoleFillingImageFilter.h.
typedef InputImageType::RegionType itk::VotingBinaryIterativeHoleFillingImageFilter< TImage >::InputImageRegionType |
Reimplemented from itk::ImageToImageFilter< TImage, TImage >.
Definition at line 87 of file itkVotingBinaryIterativeHoleFillingImageFilter.h.
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.
typedef InputImageType::PixelType itk::VotingBinaryIterativeHoleFillingImageFilter< TImage >::InputPixelType |
Image typedef support.
Definition at line 84 of file itkVotingBinaryIterativeHoleFillingImageFilter.h.
typedef InputImageType::SizeType itk::VotingBinaryIterativeHoleFillingImageFilter< TImage >::InputSizeType |
Definition at line 90 of file itkVotingBinaryIterativeHoleFillingImageFilter.h.
typedef OutputImageType::RegionType itk::VotingBinaryIterativeHoleFillingImageFilter< TImage >::OutputImageRegionType |
Superclass typedefs.
Reimplemented from itk::ImageToImageFilter< TImage, TImage >.
Definition at line 88 of file itkVotingBinaryIterativeHoleFillingImageFilter.h.
typedef TImage itk::VotingBinaryIterativeHoleFillingImageFilter< TImage >::OutputImageType |
Some convenient typedefs.
Reimplemented from itk::ImageSource< TImage >.
Definition at line 62 of file itkVotingBinaryIterativeHoleFillingImageFilter.h.
typedef OutputImageType::PixelType itk::VotingBinaryIterativeHoleFillingImageFilter< TImage >::OutputPixelType |
Definition at line 85 of file itkVotingBinaryIterativeHoleFillingImageFilter.h.
typedef SmartPointer< Self > itk::VotingBinaryIterativeHoleFillingImageFilter< TImage >::Pointer |
Reimplemented from itk::ImageToImageFilter< TImage, TImage >.
Definition at line 67 of file itkVotingBinaryIterativeHoleFillingImageFilter.h.
typedef VotingBinaryIterativeHoleFillingImageFilter itk::VotingBinaryIterativeHoleFillingImageFilter< TImage >::Self |
Standard class typedefs.
Reimplemented from itk::ImageToImageFilter< TImage, TImage >.
Definition at line 65 of file itkVotingBinaryIterativeHoleFillingImageFilter.h.
typedef ImageToImageFilter< InputImageType, OutputImageType > itk::VotingBinaryIterativeHoleFillingImageFilter< TImage >::Superclass |
Reimplemented from itk::ImageToImageFilter< TImage, TImage >.
Definition at line 66 of file itkVotingBinaryIterativeHoleFillingImageFilter.h.
typedef VotingBinaryHoleFillingImageFilter< InputImageType, OutputImageType > itk::VotingBinaryIterativeHoleFillingImageFilter< TImage >::VotingFilterType |
Type of the internal Voting filter that is going to be executed iteratively
Definition at line 74 of file itkVotingBinaryIterativeHoleFillingImageFilter.h.
itk::VotingBinaryIterativeHoleFillingImageFilter< TImage >::VotingBinaryIterativeHoleFillingImageFilter | ( | ) | [protected] |
End concept checking
virtual itk::VotingBinaryIterativeHoleFillingImageFilter< TImage >::~VotingBinaryIterativeHoleFillingImageFilter | ( | ) | [inline, protected, virtual] |
End concept checking
Definition at line 148 of file itkVotingBinaryIterativeHoleFillingImageFilter.h.
itk::VotingBinaryIterativeHoleFillingImageFilter< TImage >::VotingBinaryIterativeHoleFillingImageFilter | ( | const Self & | ) | [private] |
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.
void itk::VotingBinaryIterativeHoleFillingImageFilter< TImage >::GenerateData | ( | ) | [protected, virtual] |
Reimplemented from itk::ImageSource< 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 .
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.
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 .
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.
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.
virtual const char* itk::VotingBinaryIterativeHoleFillingImageFilter< TImage >::GetNameOfClass | ( | ) | const [virtual] |
Run-time type information (and related methods).
Reimplemented from itk::ImageToImageFilter< TImage, TImage >.
virtual const unsigned int& itk::VotingBinaryIterativeHoleFillingImageFilter< TImage >::GetNumberOfPixelsChanged | ( | ) | [virtual] |
Returns the number of pixels that changed when the filter was executed.
virtual const InputSizeType& itk::VotingBinaryIterativeHoleFillingImageFilter< TImage >::GetRadius | ( | ) | [virtual] |
Get the radius of the neighborhood used to compute the median
static Pointer itk::VotingBinaryIterativeHoleFillingImageFilter< TImage >::New | ( | ) | [static] |
Method for creation through the object factory.
Reimplemented from itk::Object.
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 >.
void itk::VotingBinaryIterativeHoleFillingImageFilter< TImage >::PrintSelf | ( | std::ostream & | os, |
Indent | indent | ||
) | const [protected, virtual] |
End concept checking
Reimplemented from itk::ImageToImageFilter< TImage, 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 .
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.
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 .
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.
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.
virtual void itk::VotingBinaryIterativeHoleFillingImageFilter< TImage >::SetRadius | ( | InputSizeType | _arg | ) | [virtual] |
Set the radius of the neighborhood used to compute the median.
itk::VotingBinaryIterativeHoleFillingImageFilter< TImage >::typedef | ( | Concept::EqualityComparable< InputPixelType > | ) |
Begin concept checking This class requires InputEqualityComparableCheck in the form of ( Concept::EqualityComparable< InputPixelType > )
itk::VotingBinaryIterativeHoleFillingImageFilter< TImage >::typedef | ( | Concept::OStreamWritable< InputPixelType > | ) |
This class requires InputOStreamWritableeCheck in the form of ( Concept::OStreamWritable< InputPixelType > )
InputPixelType itk::VotingBinaryIterativeHoleFillingImageFilter< TImage >::m_BackgroundValue [private] |
Definition at line 167 of file itkVotingBinaryIterativeHoleFillingImageFilter.h.
unsigned int itk::VotingBinaryIterativeHoleFillingImageFilter< TImage >::m_CurrentNumberOfIterations [private] |
Definition at line 170 of file itkVotingBinaryIterativeHoleFillingImageFilter.h.
InputPixelType itk::VotingBinaryIterativeHoleFillingImageFilter< TImage >::m_ForegroundValue [private] |
Definition at line 166 of file itkVotingBinaryIterativeHoleFillingImageFilter.h.
unsigned int itk::VotingBinaryIterativeHoleFillingImageFilter< TImage >::m_MajorityThreshold [private] |
Definition at line 171 of file itkVotingBinaryIterativeHoleFillingImageFilter.h.
unsigned int itk::VotingBinaryIterativeHoleFillingImageFilter< TImage >::m_MaximumNumberOfIterations [private] |
Definition at line 169 of file itkVotingBinaryIterativeHoleFillingImageFilter.h.
unsigned int itk::VotingBinaryIterativeHoleFillingImageFilter< TImage >::m_NumberOfPixelsChanged [private] |
Definition at line 172 of file itkVotingBinaryIterativeHoleFillingImageFilter.h.
InputSizeType itk::VotingBinaryIterativeHoleFillingImageFilter< TImage >::m_Radius [private] |
Definition at line 164 of file itkVotingBinaryIterativeHoleFillingImageFilter.h.