ITK
4.13.0
Insight Segmentation and Registration Toolkit
|
#include <itkGrayscaleGeodesicErodeImageFilter.h>
geodesic gray scale erosion of an image
Geodesic erosion operates on a "marker" image and a "mask" image. The marker image is eroded 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 maximum of the eroded marker image and the mask image.
Geodesic erosion is run either one iteration or until convergence. In the convergence case, the filter is equivalent to "reconstruction by erosion". 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 greater 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 ReconstructionByErosionImageFilter. This noniterative solution is much faster than the implementation provided here. All ITK filters that previously used GrayscaleGeodesicErodeImageFilter as part of their implementation have been converted to use the ReconstructionByErosionImageFilter. The GrayscaleGeodesicErodeImageFilter is maintained for backward compatibility.
Definition at line 65 of file itkGrayscaleGeodesicErodeImageFilter.h.
Public Types | |
typedef SmartPointer< const Self > | ConstPointer |
typedef MarkerImageType::ConstPointer | MarkerImageConstPointer |
typedef MarkerImageType::PixelType | MarkerImagePixelType |
typedef MarkerImageType::Pointer | MarkerImagePointer |
typedef MarkerImageType::RegionType | MarkerImageRegionType |
typedef TInputImage | MarkerImageType |
typedef MaskImageType::ConstPointer | MaskImageConstPointer |
typedef MaskImageType::PixelType | MaskImagePixelType |
typedef MaskImageType::Pointer | MaskImagePointer |
typedef MaskImageType::RegionType | MaskImageRegionType |
typedef TInputImage | MaskImageType |
typedef OutputImageType::ConstPointer | OutputImageConstPointer |
typedef OutputImageType::PixelType | OutputImagePixelType |
typedef OutputImageType::Pointer | OutputImagePointer |
typedef OutputImageType::RegionType | OutputImageRegionType |
typedef TOutputImage | OutputImageType |
typedef SmartPointer< Self > | Pointer |
typedef GrayscaleGeodesicErodeImageFilter | Self |
typedef ImageToImageFilter < TInputImage, TOutputImage > | Superclass |
Public Types inherited from itk::ImageToImageFilter< TInputImage, TOutputImage > | |
typedef SmartPointer< const Self > | ConstPointer |
typedef InputImageType::ConstPointer | InputImageConstPointer |
typedef InputImageType::PixelType | InputImagePixelType |
typedef InputImageType::Pointer | InputImagePointer |
typedef InputImageType::RegionType | InputImageRegionType |
typedef TInputImage | InputImageType |
typedef Superclass::OutputImagePixelType | OutputImagePixelType |
typedef Superclass::OutputImageRegionType | OutputImageRegionType |
typedef SmartPointer< Self > | Pointer |
typedef ImageToImageFilter | Self |
typedef ImageSource< TOutputImage > | Superclass |
Public Types inherited from itk::ImageSource< TOutputImage > | |
typedef SmartPointer< const Self > | ConstPointer |
typedef Superclass::DataObjectIdentifierType | DataObjectIdentifierType |
typedef DataObject::Pointer | DataObjectPointer |
typedef Superclass::DataObjectPointerArraySizeType | DataObjectPointerArraySizeType |
typedef OutputImageType::PixelType | OutputImagePixelType |
typedef OutputImageType::Pointer | OutputImagePointer |
typedef OutputImageType::RegionType | OutputImageRegionType |
typedef TOutputImage | OutputImageType |
typedef SmartPointer< Self > | Pointer |
typedef ImageSource | Self |
typedef ProcessObject | Superclass |
Public Types inherited from itk::ProcessObject | |
typedef SmartPointer< const Self > | ConstPointer |
typedef DataObject::DataObjectIdentifierType | DataObjectIdentifierType |
typedef DataObject::Pointer | DataObjectPointer |
typedef std::vector < DataObjectPointer > | DataObjectPointerArray |
typedef DataObjectPointerArray::size_type | DataObjectPointerArraySizeType |
typedef MultiThreader | MultiThreaderType |
typedef std::vector < DataObjectIdentifierType > | NameArray |
typedef SmartPointer< Self > | Pointer |
typedef ProcessObject | Self |
typedef Object | Superclass |
Public Types inherited from itk::Object | |
typedef SmartPointer< const Self > | ConstPointer |
typedef SmartPointer< Self > | Pointer |
typedef Object | Self |
typedef LightObject | Superclass |
Public Types inherited from itk::LightObject | |
typedef SmartPointer< const Self > | ConstPointer |
typedef SmartPointer< Self > | Pointer |
typedef LightObject | Self |
Static Public Member Functions | |
static Pointer | New () |
Static Public Member Functions inherited from itk::Object | |
static bool | GetGlobalWarningDisplay () |
static void | GlobalWarningDisplayOff () |
static void | GlobalWarningDisplayOn () |
static Pointer | New () |
static void | SetGlobalWarningDisplay (bool flag) |
Static Public Member Functions inherited from itk::LightObject | |
static void | BreakOnError () |
static Pointer | New () |
Static Public Attributes | |
static const unsigned int | MarkerImageDimension = TInputImage::ImageDimension |
static const unsigned int | MaskImageDimension = TInputImage::ImageDimension |
static const unsigned int | OutputImageDimension = TOutputImage::ImageDimension |
Static Public Attributes inherited from itk::ImageToImageFilter< TInputImage, TOutputImage > | |
static const unsigned int | InputImageDimension = TInputImage::ImageDimension |
static const unsigned int | OutputImageDimension = TOutputImage::ImageDimension |
Static Public Attributes inherited from itk::ImageSource< TOutputImage > | |
static const unsigned int | OutputImageDimension = TOutputImage::ImageDimension |
Private Attributes | |
bool | m_FullyConnected |
unsigned long | m_NumberOfIterationsUsed |
bool | m_RunOneIteration |
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 |
Static Protected Member Functions inherited from itk::ImageSource< TOutputImage > | |
static const ImageRegionSplitterBase * | GetGlobalDefaultSplitter () |
static ITK_THREAD_RETURN_TYPE | ThreaderCallback (void *arg) |
Protected Attributes inherited from itk::ProcessObject | |
TimeStamp | m_OutputInformationMTime |
bool | m_Updating |
Protected Attributes inherited from itk::LightObject | |
AtomicInt< int > | m_ReferenceCount |
typedef SmartPointer< const Self > itk::GrayscaleGeodesicErodeImageFilter< TInputImage, TOutputImage >::ConstPointer |
Definition at line 73 of file itkGrayscaleGeodesicErodeImageFilter.h.
typedef MarkerImageType::ConstPointer itk::GrayscaleGeodesicErodeImageFilter< TInputImage, TOutputImage >::MarkerImageConstPointer |
Definition at line 78 of file itkGrayscaleGeodesicErodeImageFilter.h.
typedef MarkerImageType::PixelType itk::GrayscaleGeodesicErodeImageFilter< TInputImage, TOutputImage >::MarkerImagePixelType |
Definition at line 80 of file itkGrayscaleGeodesicErodeImageFilter.h.
typedef MarkerImageType::Pointer itk::GrayscaleGeodesicErodeImageFilter< TInputImage, TOutputImage >::MarkerImagePointer |
Definition at line 77 of file itkGrayscaleGeodesicErodeImageFilter.h.
typedef MarkerImageType::RegionType itk::GrayscaleGeodesicErodeImageFilter< TInputImage, TOutputImage >::MarkerImageRegionType |
Definition at line 79 of file itkGrayscaleGeodesicErodeImageFilter.h.
typedef TInputImage itk::GrayscaleGeodesicErodeImageFilter< TInputImage, TOutputImage >::MarkerImageType |
Some convenient typedefs.
Definition at line 76 of file itkGrayscaleGeodesicErodeImageFilter.h.
typedef MaskImageType::ConstPointer itk::GrayscaleGeodesicErodeImageFilter< TInputImage, TOutputImage >::MaskImageConstPointer |
Definition at line 83 of file itkGrayscaleGeodesicErodeImageFilter.h.
typedef MaskImageType::PixelType itk::GrayscaleGeodesicErodeImageFilter< TInputImage, TOutputImage >::MaskImagePixelType |
Definition at line 85 of file itkGrayscaleGeodesicErodeImageFilter.h.
typedef MaskImageType::Pointer itk::GrayscaleGeodesicErodeImageFilter< TInputImage, TOutputImage >::MaskImagePointer |
Definition at line 82 of file itkGrayscaleGeodesicErodeImageFilter.h.
typedef MaskImageType::RegionType itk::GrayscaleGeodesicErodeImageFilter< TInputImage, TOutputImage >::MaskImageRegionType |
Definition at line 84 of file itkGrayscaleGeodesicErodeImageFilter.h.
typedef TInputImage itk::GrayscaleGeodesicErodeImageFilter< TInputImage, TOutputImage >::MaskImageType |
Definition at line 81 of file itkGrayscaleGeodesicErodeImageFilter.h.
typedef OutputImageType::ConstPointer itk::GrayscaleGeodesicErodeImageFilter< TInputImage, TOutputImage >::OutputImageConstPointer |
Definition at line 88 of file itkGrayscaleGeodesicErodeImageFilter.h.
typedef OutputImageType::PixelType itk::GrayscaleGeodesicErodeImageFilter< TInputImage, TOutputImage >::OutputImagePixelType |
Definition at line 90 of file itkGrayscaleGeodesicErodeImageFilter.h.
typedef OutputImageType::Pointer itk::GrayscaleGeodesicErodeImageFilter< TInputImage, TOutputImage >::OutputImagePointer |
Definition at line 87 of file itkGrayscaleGeodesicErodeImageFilter.h.
typedef OutputImageType::RegionType itk::GrayscaleGeodesicErodeImageFilter< TInputImage, TOutputImage >::OutputImageRegionType |
Definition at line 89 of file itkGrayscaleGeodesicErodeImageFilter.h.
typedef TOutputImage itk::GrayscaleGeodesicErodeImageFilter< TInputImage, TOutputImage >::OutputImageType |
Definition at line 86 of file itkGrayscaleGeodesicErodeImageFilter.h.
typedef SmartPointer< Self > itk::GrayscaleGeodesicErodeImageFilter< TInputImage, TOutputImage >::Pointer |
Definition at line 72 of file itkGrayscaleGeodesicErodeImageFilter.h.
typedef GrayscaleGeodesicErodeImageFilter itk::GrayscaleGeodesicErodeImageFilter< TInputImage, TOutputImage >::Self |
Standard class typedefs.
Definition at line 70 of file itkGrayscaleGeodesicErodeImageFilter.h.
typedef ImageToImageFilter< TInputImage, TOutputImage > itk::GrayscaleGeodesicErodeImageFilter< TInputImage, TOutputImage >::Superclass |
Definition at line 71 of file itkGrayscaleGeodesicErodeImageFilter.h.
|
protected |
|
inlineoverrideprotected |
Definition at line 158 of file itkGrayscaleGeodesicErodeImageFilter.h.
|
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.
|
overrideprotectedvirtual |
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.
|
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.
|
overrideprotectedvirtual |
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 >.
|
overrideprotectedvirtual |
GrayscaleGeodesicErodeImageFilter 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 >.
|
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.
const MarkerImageType* itk::GrayscaleGeodesicErodeImageFilter< TInputImage, TOutputImage >::GetMarkerImage | ( | ) |
const MaskImageType* itk::GrayscaleGeodesicErodeImageFilter< TInputImage, TOutputImage >::GetMaskImage | ( | ) |
|
virtual |
Runtime information support.
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.
|
virtual |
Get the number of iterations used to produce the current output.
|
virtual |
Set/Get whether the filter should run one iteration or until convergence. When run to convergence, this filter is equivalent to "reconstruction by erosion". Default is off.
|
static |
Standard New method.
|
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::ImageToImageFilter< TInputImage, TOutputImage >.
|
virtual |
Set/Get whether the filter should run one iteration or until convergence. When run to convergence, this filter is equivalent to "reconstruction by erosion". Default is off.
|
virtual |
Set/Get whether the filter should run one iteration or until convergence. When run to convergence, this filter is equivalent to "reconstruction by erosion". Default is off.
|
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.
void itk::GrayscaleGeodesicErodeImageFilter< TInputImage, TOutputImage >::SetMarkerImage | ( | const MarkerImageType * | ) |
Set/Get the marker image. The marker image must be pixelwise greater than or equal to the mask image. The marker image the image that is eroded by this filter.
void itk::GrayscaleGeodesicErodeImageFilter< TInputImage, TOutputImage >::SetMaskImage | ( | const MaskImageType * | ) |
Set/Get the mask image. The mask image is used to "mask" the eroded marker image. The mask operation is a pixelwise maximum.
|
virtual |
Set/Get whether the filter should run one iteration or until convergence. When run to convergence, this filter is equivalent to "reconstruction by erosion". Default is off.
|
overrideprotectedvirtual |
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 >.
|
private |
Definition at line 196 of file itkGrayscaleGeodesicErodeImageFilter.h.
|
private |
Definition at line 195 of file itkGrayscaleGeodesicErodeImageFilter.h.
|
private |
Definition at line 192 of file itkGrayscaleGeodesicErodeImageFilter.h.
|
static |
ImageDimension constants
Definition at line 94 of file itkGrayscaleGeodesicErodeImageFilter.h.
|
static |
ImageDimension constants
Definition at line 96 of file itkGrayscaleGeodesicErodeImageFilter.h.
|
static |
ImageDimension constants
Definition at line 98 of file itkGrayscaleGeodesicErodeImageFilter.h.