ITK
4.2.0
Insight Segmentation and Registration Toolkit
|
#include <itkGrayscaleFillholeImageFilter.h>
Static Public Member Functions | |
static Pointer | New () |
Static Public Attributes | |
static const unsigned int | InputImageDimension = TInputImage::ImageDimension |
static const unsigned int | OutputImageDimension = TOutputImage::ImageDimension |
Static Public Attributes inherited from itk::ImageToImageFilter< TInputImage, TOutputImage > | |
Static Public Attributes inherited from itk::ImageSource< TOutputImage > |
Private Member Functions | |
GrayscaleFillholeImageFilter (const Self &) | |
void | operator= (const Self &) |
Private Attributes | |
bool | m_FullyConnected |
unsigned long | m_NumberOfIterationsUsed |
Additional Inherited Members | |
Protected Types inherited from itk::ImageToImageFilter< TInputImage, TOutputImage > | |
typedef ImageToImageFilterDetail::ImageRegionCopier < itkGetStaticConstMacro(OutputImageDimension), itkGetStaticConstMacro(InputImageDimension) > | InputToOutputRegionCopierType |
typedef ImageToImageFilterDetail::ImageRegionCopier < itkGetStaticConstMacro(InputImageDimension), itkGetStaticConstMacro(OutputImageDimension) > | OutputToInputRegionCopierType |
Remove local minima not connected to the boundary of the image.
GrayscaleFillholeImageFilter fills holes in a grayscale image. Holes are local minima in the grayscale topography that are not connected to boundaries of the image. Gray level values adjacent to a hole are extrapolated across the hole.
This filter is used to smooth over local minima without affecting the values of local maxima. If you take the difference between the output of this filter and the original image (and perhaps threshold the difference above a small value), you'll obtain a map of the local minima.
This filter uses the ReconstructionByErosionImageFilter. It provides its own input as the "mask" input to the geodesic erosion. The "marker" image for the geodesic erosion is constructed such that boundary pixels match the boundary pixels of the input image and the interior pixels are set to the maximum pixel value in the input image.
Geodesic morphology and the Fillhole algorithm is described in Chapter 6 of Pierre Soille's book "Morphological Image Analysis: Principles and Applications", Second Edition, Springer, 2003.
Definition at line 56 of file itkGrayscaleFillholeImageFilter.h.
typedef SmartPointer< const Self > itk::GrayscaleFillholeImageFilter< TInputImage, TOutputImage >::ConstPointer |
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.
Definition at line 64 of file itkGrayscaleFillholeImageFilter.h.
typedef InputImageType::ConstPointer itk::GrayscaleFillholeImageFilter< TInputImage, TOutputImage >::InputImageConstPointer |
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.
Definition at line 69 of file itkGrayscaleFillholeImageFilter.h.
typedef InputImageType::PixelType itk::GrayscaleFillholeImageFilter< TInputImage, TOutputImage >::InputImagePixelType |
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.
Definition at line 71 of file itkGrayscaleFillholeImageFilter.h.
typedef InputImageType::Pointer itk::GrayscaleFillholeImageFilter< TInputImage, TOutputImage >::InputImagePointer |
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.
Definition at line 68 of file itkGrayscaleFillholeImageFilter.h.
typedef InputImageType::RegionType itk::GrayscaleFillholeImageFilter< TInputImage, TOutputImage >::InputImageRegionType |
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.
Definition at line 70 of file itkGrayscaleFillholeImageFilter.h.
typedef TInputImage itk::GrayscaleFillholeImageFilter< TInputImage, TOutputImage >::InputImageType |
Some convenient typedefs.
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.
Definition at line 67 of file itkGrayscaleFillholeImageFilter.h.
typedef OutputImageType::ConstPointer itk::GrayscaleFillholeImageFilter< TInputImage, TOutputImage >::OutputImageConstPointer |
Definition at line 74 of file itkGrayscaleFillholeImageFilter.h.
typedef OutputImageType::PixelType itk::GrayscaleFillholeImageFilter< TInputImage, TOutputImage >::OutputImagePixelType |
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.
Definition at line 76 of file itkGrayscaleFillholeImageFilter.h.
typedef OutputImageType::Pointer itk::GrayscaleFillholeImageFilter< TInputImage, TOutputImage >::OutputImagePointer |
Reimplemented from itk::ImageSource< TOutputImage >.
Definition at line 73 of file itkGrayscaleFillholeImageFilter.h.
typedef OutputImageType::RegionType itk::GrayscaleFillholeImageFilter< TInputImage, TOutputImage >::OutputImageRegionType |
Superclass typedefs.
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.
Definition at line 75 of file itkGrayscaleFillholeImageFilter.h.
typedef TOutputImage itk::GrayscaleFillholeImageFilter< TInputImage, TOutputImage >::OutputImageType |
Some convenient typedefs.
Reimplemented from itk::ImageSource< TOutputImage >.
Definition at line 72 of file itkGrayscaleFillholeImageFilter.h.
typedef SmartPointer< Self > itk::GrayscaleFillholeImageFilter< TInputImage, TOutputImage >::Pointer |
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.
Definition at line 63 of file itkGrayscaleFillholeImageFilter.h.
typedef GrayscaleFillholeImageFilter itk::GrayscaleFillholeImageFilter< TInputImage, TOutputImage >::Self |
Standard class typedefs.
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.
Definition at line 61 of file itkGrayscaleFillholeImageFilter.h.
typedef ImageToImageFilter< TInputImage, TOutputImage > itk::GrayscaleFillholeImageFilter< TInputImage, TOutputImage >::Superclass |
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.
Definition at line 62 of file itkGrayscaleFillholeImageFilter.h.
|
protected |
End concept checking
|
inlineprotected |
End concept checking
Definition at line 112 of file itkGrayscaleFillholeImageFilter.h.
|
private |
|
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.
|
protectedvirtual |
GrayscaleFillholeImageFilter will produce the entire output.
Reimplemented from itk::ProcessObject.
|
virtual |
Set/Get whether the connected components are defined strictly by face connectivity or by face+edge+vertex connectivity. Default is FullyConnectedOff. For objects that are 1 pixel wide, use FullyConnectedOn.
|
virtual |
Set/Get whether the connected components are defined strictly by face connectivity or by face+edge+vertex connectivity. Default is FullyConnectedOff. For objects that are 1 pixel wide, use FullyConnectedOn.
|
protectedvirtual |
Single-threaded version of GenerateData. This filter delegates to ReconstructionByErosionImageFilter.
Reimplemented from itk::ImageSource< TOutputImage >.
|
protectedvirtual |
GrayscaleFillholeImageFilter needs the entire input be available. Thus, it needs to provide an implementation of GenerateInputRequestedRegion().
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.
|
virtual |
Set/Get whether the connected components are defined strictly by face connectivity or by face+edge+vertex connectivity. Default is FullyConnectedOff. For objects that are 1 pixel wide, use FullyConnectedOn.
|
virtual |
Runtime information support.
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.
|
static |
Standard New method.
Reimplemented from itk::Object.
|
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< TInputImage, TOutputImage >.
|
protectedvirtual |
End concept checking
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.
|
virtual |
Set/Get whether the connected components are defined strictly by face connectivity or by face+edge+vertex connectivity. Default is FullyConnectedOff. For objects that are 1 pixel wide, use FullyConnectedOn.
itk::GrayscaleFillholeImageFilter< TInputImage, TOutputImage >::typedef | ( | Concept::OStreamWritable< InputImagePixelType > | ) |
Begin concept checking This class requires InputOStreamWritableCheck in the form of ( Concept::OStreamWritable< InputImagePixelType > )
|
static |
ImageDimension constants
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.
Definition at line 80 of file itkGrayscaleFillholeImageFilter.h.
|
private |
Definition at line 134 of file itkGrayscaleFillholeImageFilter.h.
|
private |
Definition at line 132 of file itkGrayscaleFillholeImageFilter.h.
|
static |
ImageDimension constants
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.
Definition at line 82 of file itkGrayscaleFillholeImageFilter.h.