#include <itkMorphologyImageFilter.h>
Inheritance diagram for itk::MorphologyImageFilter< TInputImage, TOutputImage, TKernel >:
This class provides the infrastructure to support most morphological operations. Subclasses of MorphologyImageFilter implement specific "binary" and "grayscale" operations. The "binary" subclasses can operate on gray level data, where a specified a pixel value is consider the "foreground" and every other pixel value is considered the background. This is useful for operating on segment masks where all pixels assigned to segment #1 have value 1, all pixels assigned to segment #2 have value 2, etc. Here, a given segment can be dilated (expanded) while treating all other segment identifiers are background.
The "kernel" specified represents a morphology structuring element. The structuring element is a small Neighborhood with values indicating an element is "on" (value > 0) or "off" (value <=0). Morphological operations are defined by placing the structuring element over a pixel, and calculating a nonlinear function (min, max) over the pixels of the image that are under pixels in the structuring element that are "on". The result of this calculation is the value of the pixel in the output image. Under most circumstances, the "center pixel" of the structuring element -- or structuring element pixel over the input pixel under consideration -- is prescribed to be "on". This is not a strict requirement but the subclasses of this filter are not guarenteed to produce the correct result if the "center pixel" is not part of the structuring element.
Subclasses of this class can define their own operations by simply providing their own Evaluate() protected member function.
GrayScaleErodeImageFilter
GrayScaleDilateImageFilter
Definition at line 72 of file itkMorphologyImageFilter.h.
|
|
|
Definition at line 100 of file itkMorphologyImageFilter.h. |
|
Typedef for boundary conditions. Definition at line 99 of file itkMorphologyImageFilter.h. Referenced by itk::MorphologyImageFilter< TInputImage, TOutputImage, TKernel >::OverrideBoundaryCondition(). |
|
Definition at line 90 of file itkMorphologyImageFilter.h. |
|
Image related typedefs. Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >. Definition at line 86 of file itkMorphologyImageFilter.h. |
|
Kernel (structuring element) iterator. Reimplemented in itk::GrayscaleDilateImageFilter< TInputImage, TOutputImage, TKernel >, itk::GrayscaleErodeImageFilter< TInputImage, TOutputImage, TKernel >, itk::GrayscaleFunctionDilateImageFilter< TInputImage, TOutputImage, TKernel >, and itk::GrayscaleFunctionErodeImageFilter< TInputImage, TOutputImage, TKernel >. Definition at line 112 of file itkMorphologyImageFilter.h. |
|
|
|
Superclass typedefs. Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >. Definition at line 92 of file itkMorphologyImageFilter.h. |
|
Some convenient typedefs. Reimplemented from itk::ImageSource< TOutputImage >. Definition at line 87 of file itkMorphologyImageFilter.h. |
|
|
|
n-dimensional Kernel radius. Definition at line 115 of file itkMorphologyImageFilter.h. |
|
Definition at line 88 of file itkMorphologyImageFilter.h. |
|
Standard Self typedef Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >. Reimplemented in itk::GrayscaleDilateImageFilter< TInputImage, TOutputImage, TKernel >, itk::GrayscaleErodeImageFilter< TInputImage, TOutputImage, TKernel >, itk::GrayscaleFunctionDilateImageFilter< TInputImage, TOutputImage, TKernel >, and itk::GrayscaleFunctionErodeImageFilter< TInputImage, TOutputImage, TKernel >. Definition at line 77 of file itkMorphologyImageFilter.h. |
|
Definition at line 89 of file itkMorphologyImageFilter.h. |
|
|
|
|
Definition at line 147 of file itkMorphologyImageFilter.h. |
|
Evaluate image neighborhood with kernel to find the new value for the center pixel value. Implemented in itk::GrayscaleDilateImageFilter< TInputImage, TOutputImage, TKernel >, itk::GrayscaleErodeImageFilter< TInputImage, TOutputImage, TKernel >, itk::GrayscaleFunctionDilateImageFilter< TInputImage, TOutputImage, TKernel >, and itk::GrayscaleFunctionErodeImageFilter< TInputImage, TOutputImage, TKernel >. |
|
MorphologyImageFilters need to make sure they request enough of an input image to account for the structuring element size. The input requested region is expanded by the radius of the structuring element. If the request extends past the LargestPossibleRegion for the input, the request is cropped by the LargestPossibleRegion. Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >. |
|
Get the current boundary condition. |
|
Get the kernel (structuring element). |
|
|
Image related typedefs. |
|
Allows a user to override the internal boundary condition. Care should be be taken to ensure that the overriding boundary condition is a persistent object during the time it is referenced. The overriding condition can be of a different type than the default type as long as it is a subclass of ImageBoundaryCondition. Definition at line 135 of file itkMorphologyImageFilter.h. References itk::MorphologyImageFilter< TInputImage, TOutputImage, TKernel >::ImageBoundaryConditionPointerType. |
|
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 >. |
|
Rest the boundary condition to the default Definition at line 139 of file itkMorphologyImageFilter.h. |
|
Set kernel (structuring element). |
|
Multi-thread version GenerateData. Reimplemented from itk::ImageSource< TOutputImage >. |