#include <itkGrayscaleGeodesicDilateImageFilter.h>
Inheritance diagram for itk::GrayscaleGeodesicDilateImageFilter< TInputImage, TOutputImage >:
Public Types | |
typedef GrayscaleGeodesicDilateImageFilter | Self |
typedef ImageToImageFilter< TInputImage, TOutputImage > | Superclass |
typedef SmartPointer< Self > | Pointer |
typedef SmartPointer< const Self > | ConstPointer |
typedef TInputImage | MarkerImageType |
typedef TInputImage | MaskImageType |
typedef TOutputImage | OutputImageType |
typedef MarkerImageType::Pointer | MarkerImagePointer |
typedef MarkerImageType::ConstPointer | MarkerImageConstPointer |
typedef MarkerImageType::RegionType | MarkerImageRegionType |
typedef MarkerImageType::PixelType | MarkerImagePixelType |
typedef MaskImageType::Pointer | MaskImagePointer |
typedef MaskImageType::ConstPointer | MaskImageConstPointer |
typedef MaskImageType::RegionType | MaskImageRegionType |
typedef MaskImageType::PixelType | MaskImagePixelType |
typedef OutputImageType::Pointer | OutputImagePointer |
typedef OutputImageType::ConstPointer | OutputImageConstPointer |
typedef OutputImageType::RegionType | OutputImageRegionType |
typedef OutputImageType::PixelType | OutputImagePixelType |
Public Member Functions | |
virtual const char * | GetNameOfClass () const |
virtual unsigned long | GetNumberOfIterationsUsed () |
itkStaticConstMacro (MarkerImageDimension, unsigned int, TInputImage::ImageDimension) | |
itkStaticConstMacro (MaskImageDimension, unsigned int, TInputImage::ImageDimension) | |
itkStaticConstMacro (OutputImageDimension, unsigned int, TOutputImage::ImageDimension) | |
void | SetMarkerImage (const MarkerImageType *) |
const MarkerImageType * | GetMarkerImage () |
void | SetMaskImage (const MaskImageType *) |
const MaskImageType * | GetMaskImage () |
virtual void | SetRunOneIteration (bool _arg) |
virtual bool | GetRunOneIteration () |
virtual void | RunOneIterationOn () |
virtual void | RunOneIterationOff () |
virtual void | SetFullyConnected (bool _arg) |
virtual const bool & | GetFullyConnected () |
virtual void | FullyConnectedOn () |
virtual void | FullyConnectedOff () |
Static Public Member Functions | |
Pointer | New () |
Protected Member Functions | |
GrayscaleGeodesicDilateImageFilter () | |
~GrayscaleGeodesicDilateImageFilter () | |
void | PrintSelf (std::ostream &os, Indent indent) const |
void | GenerateInputRequestedRegion () |
void | EnlargeOutputRequestedRegion (DataObject *) |
void | GenerateData () |
void | ThreadedGenerateData (const OutputImageRegionType &outputRegionForThread, int threadId) |
Geodesic dilation operates on a "marker" image and a "mask" image. The marker image is dilated using an elementary structuring element (neighborhood of radius one using only the face connected neighbors). The resulting image is then compared with the mask image. The output image is the pixelwise minimum of the dilated marker image and the mask image.
Geodesic dilation is run either one iteration or until convergence. In the convergence case, the filter is equivalent to "reconstruction by dilation". This filter is implemented to handle both scenarios. The one iteration case is multi-threaded. The convergence case is delegated to another instance of the same filter (but configured to run a single iteration).
The marker image must be less than or equal to the mask image (on a pixel by pixel basis).
Geodesic morphology is described in Chapter 6 of Pierre Soille's book "Morphological Image Analysis: Principles and Applications", Second Edition, Springer, 2003.
A noniterative version of this algorithm can be found in the ReconstructionByDilationImageFilter. This noniterative solution is much faster than the implementation provided here. All ITK filters that previously used GrayscaleGeodesicDiliateImageFilter as part of their implementation have been converted to use the ReconstructionByDilationImageFilter. The GrayscaleGeodesicDilateImageFilter is maintained for backward compatibility.
Definition at line 62 of file itkGrayscaleGeodesicDilateImageFilter.h.
|
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >. Definition at line 71 of file itkGrayscaleGeodesicDilateImageFilter.h. |
|
Definition at line 78 of file itkGrayscaleGeodesicDilateImageFilter.h. |
|
Definition at line 80 of file itkGrayscaleGeodesicDilateImageFilter.h. |
|
Definition at line 77 of file itkGrayscaleGeodesicDilateImageFilter.h. |
|
Definition at line 79 of file itkGrayscaleGeodesicDilateImageFilter.h. |
|
Some convenient typedefs. Definition at line 74 of file itkGrayscaleGeodesicDilateImageFilter.h. |
|
Definition at line 82 of file itkGrayscaleGeodesicDilateImageFilter.h. |
|
Definition at line 84 of file itkGrayscaleGeodesicDilateImageFilter.h. |
|
Definition at line 81 of file itkGrayscaleGeodesicDilateImageFilter.h. |
|
Definition at line 83 of file itkGrayscaleGeodesicDilateImageFilter.h. |
|
Definition at line 75 of file itkGrayscaleGeodesicDilateImageFilter.h. |
|
Definition at line 86 of file itkGrayscaleGeodesicDilateImageFilter.h. |
|
Reimplemented from itk::ImageSource< TOutputImage >. Definition at line 88 of file itkGrayscaleGeodesicDilateImageFilter.h. |
|
Reimplemented from itk::ImageSource< TOutputImage >. Definition at line 85 of file itkGrayscaleGeodesicDilateImageFilter.h. |
|
Superclass typedefs. Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >. Definition at line 87 of file itkGrayscaleGeodesicDilateImageFilter.h. |
|
Some convenient typedefs. Reimplemented from itk::ImageSource< TOutputImage >. Definition at line 76 of file itkGrayscaleGeodesicDilateImageFilter.h. |
|
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >. Definition at line 70 of file itkGrayscaleGeodesicDilateImageFilter.h. |
|
Standard class typedefs. Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >. Definition at line 67 of file itkGrayscaleGeodesicDilateImageFilter.h. |
|
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >. Definition at line 69 of file itkGrayscaleGeodesicDilateImageFilter.h. |
|
|
|
Definition at line 145 of file itkGrayscaleGeodesicDilateImageFilter.h. |
|
This filter will enlarge the output requested region to produce all of the output if the filter is configured to run to convergence. Reimplemented from itk::ProcessObject. |
|
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. |
|
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. |
|
Single-threaded version of GenerateData. This version is used when the filter is configured to run to convergence. This method may delegate to the multithreaded version if the filter is configured to run a single iteration. Otherwise, it will delegate to a separate instance to run each iteration until the filter converges. Reimplemented from itk::ImageSource< TOutputImage >. |
|
GrayscaleGeodesicDilateImageFilter needs to request enough of the marker image to account for the elementary structuring element. The mask image does not need to be padded. Depending on whether the filter is configured to run a single iteration or until convergence, this method may request all of the marker and mask image be provided. Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >. |
|
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. |
|
Set/Get the marker image. The marker image must be pixelwise less than or equal to the mask image. The marker image the image that is dilated by this filter. |
|
Set/Get the mask image. The mask image is used to "mask" the dilated marker image. The mask operation is a pixelwise minimum. |
|
Runtime information support. Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >. |
|
Get the number of iterations used to produce the current output. |
|
Set/Get whether the filter should run one iteration or until convergence. When run to convergence, this filter is equivalent to "reconstruction by dilation". Default is off. |
|
ImageDimension constants Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >. |
|
ImageDimension constants |
|
ImageDimension constants |
|
Standard New method. Reimplemented from itk::Object. |
|
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::ImageToImageFilter< TInputImage, TOutputImage >. |
|
Set/Get whether the filter should run one iteration or until convergence. When run to convergence, this filter is equivalent to "reconstruction by dilation". Default is off. |
|
Set/Get whether the filter should run one iteration or until convergence. When run to convergence, this filter is equivalent to "reconstruction by dilation". Default is off. |
|
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. |
|
Set/Get the marker image. The marker image must be pixelwise less than or equal to the mask image. The marker image the image that is dilated by this filter. |
|
Set/Get the mask image. The mask image is used to "mask" the dilated marker image. The mask operation is a pixelwise minimum. |
|
Set/Get whether the filter should run one iteration or until convergence. When run to convergence, this filter is equivalent to "reconstruction by dilation". Default is off. |
|
Multi-thread version GenerateData. This version is used when the filter is configured to run a single iteration. When the filter is configured to run to convergence, the GenerateData() method is called. Reimplemented from itk::ImageSource< TOutputImage >. |