ITK
4.13.0
Insight Segmentation and Registration Toolkit
|
#include <itkHMinimaImageFilter.h>
Suppress local minima whose depth below the baseline is less than h.
HMinimaImageFilter suppresses local minima that are less than h intensity units below the (local) background. This has the effect of smoothing over the "low" parts of the noise in the image without smoothing over large changes in intensity (region boundaries). See the HMaximaImageFilter to suppress the local maxima whose height is less than h intensity units above the (local) background.
If original image is subtracted from the output of HMinimaImageFilter, the signicant "valleys" in the image can be identified. This is what the HConcaveImageFilter provides.
This filter uses the GrayscaleGeodesicErodeImageFilter. It provides its own input as the "mask" input to the geodesic dilation. The "marker" image for the geodesic dilation is the input image plus the height parameter h.
Geodesic morphology and the H-Minima algorithm is described in Chapter 6 of Pierre Soille's book "Morphological Image Analysis: Principles and Applications", Second Edition, Springer, 2003.
Definition at line 55 of file itkHMinimaImageFilter.h.
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 | InputImageDimension = 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 |
InputImagePixelType | m_Height |
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 |
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::HMinimaImageFilter< TInputImage, TOutputImage >::ConstPointer |
Definition at line 63 of file itkHMinimaImageFilter.h.
typedef InputImageType::ConstPointer itk::HMinimaImageFilter< TInputImage, TOutputImage >::InputImageConstPointer |
Definition at line 68 of file itkHMinimaImageFilter.h.
typedef InputImageType::PixelType itk::HMinimaImageFilter< TInputImage, TOutputImage >::InputImagePixelType |
Definition at line 70 of file itkHMinimaImageFilter.h.
typedef InputImageType::Pointer itk::HMinimaImageFilter< TInputImage, TOutputImage >::InputImagePointer |
Definition at line 67 of file itkHMinimaImageFilter.h.
typedef InputImageType::RegionType itk::HMinimaImageFilter< TInputImage, TOutputImage >::InputImageRegionType |
Definition at line 69 of file itkHMinimaImageFilter.h.
typedef TInputImage itk::HMinimaImageFilter< TInputImage, TOutputImage >::InputImageType |
Some convenient typedefs.
Definition at line 66 of file itkHMinimaImageFilter.h.
typedef OutputImageType::ConstPointer itk::HMinimaImageFilter< TInputImage, TOutputImage >::OutputImageConstPointer |
Definition at line 73 of file itkHMinimaImageFilter.h.
typedef OutputImageType::PixelType itk::HMinimaImageFilter< TInputImage, TOutputImage >::OutputImagePixelType |
Definition at line 75 of file itkHMinimaImageFilter.h.
typedef OutputImageType::Pointer itk::HMinimaImageFilter< TInputImage, TOutputImage >::OutputImagePointer |
Definition at line 72 of file itkHMinimaImageFilter.h.
typedef OutputImageType::RegionType itk::HMinimaImageFilter< TInputImage, TOutputImage >::OutputImageRegionType |
Definition at line 74 of file itkHMinimaImageFilter.h.
typedef TOutputImage itk::HMinimaImageFilter< TInputImage, TOutputImage >::OutputImageType |
Definition at line 71 of file itkHMinimaImageFilter.h.
typedef SmartPointer< Self > itk::HMinimaImageFilter< TInputImage, TOutputImage >::Pointer |
Definition at line 62 of file itkHMinimaImageFilter.h.
typedef HMinimaImageFilter itk::HMinimaImageFilter< TInputImage, TOutputImage >::Self |
Standard class typedefs.
Definition at line 60 of file itkHMinimaImageFilter.h.
typedef ImageToImageFilter< TInputImage, TOutputImage > itk::HMinimaImageFilter< TInputImage, TOutputImage >::Superclass |
Definition at line 61 of file itkHMinimaImageFilter.h.
|
protected |
|
inlineoverrideprotected |
Definition at line 123 of file itkHMinimaImageFilter.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 |
HMinimaImageFilter 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.
|
overrideprotectedvirtual |
Single-threaded version of GenerateData. This filter delegates to GrayscaleGeodesicErodeImageFilter.
Reimplemented from itk::ImageSource< TOutputImage >.
|
overrideprotectedvirtual |
HMinimaImageFilter 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 |
Set/Get the height that a local maximum must be above the local background (local contrast) in order to survive the processing. Local maxima below this value are replaced with an estimate of the local background.
|
virtual |
Runtime information support.
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.
|
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 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 the height that a local maximum must be above the local background (local contrast) in order to survive the processing. Local maxima below this value are replaced with an estimate of the local background.
|
static |
ImageDimension constants
Definition at line 79 of file itkHMinimaImageFilter.h.
|
private |
Definition at line 143 of file itkHMinimaImageFilter.h.
|
private |
Definition at line 139 of file itkHMinimaImageFilter.h.
|
private |
Definition at line 142 of file itkHMinimaImageFilter.h.
|
static |
ImageDimension constants
Definition at line 81 of file itkHMinimaImageFilter.h.