ITK
4.2.0
Insight Segmentation and Registration Toolkit
|
#include <itkGrayscaleFunctionErodeImageFilter.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 const unsigned int | KernelDimension = TKernel::NeighborhoodDimension |
Static Public Attributes inherited from itk::MorphologyImageFilter< TInputImage, TOutputImage, TKernel > | |
static const unsigned int | ImageDimension = TInputImage::ImageDimension |
Static Public Attributes inherited from itk::KernelImageFilter< TInputImage, TOutputImage, TKernel > | |
Static Public Attributes inherited from itk::BoxImageFilter< TInputImage, TOutputImage > | |
Static Public Attributes inherited from itk::ImageToImageFilter< TInputImage, TOutputImage > | |
Static Public Attributes inherited from itk::ImageSource< TOutputImage > |
Private Member Functions | |
GrayscaleFunctionErodeImageFilter (const Self &) | |
void | operator= (const Self &) |
Private Attributes | |
DefaultBoundaryConditionType | m_ErodeBoundaryCondition |
gray scale function erosion of an image
Erode an image using functional grayscale morphology. Function erosion takes the minimum of all the pixels identified by the structuring element minus the structuring element value.
The structuring element can be composed of arbitrary nonnegative values (not restricted to zero or one). Element values greater than zero indicate pixels that will be considered during the dilation. The function erosion operation is defined as the minimum over the elements of the image value MINUS the structuring element value.
For the each input image pixel,
Definition at line 50 of file itkGrayscaleFunctionErodeImageFilter.h.
typedef SmartPointer< const Self > itk::GrayscaleFunctionErodeImageFilter< TInputImage, TOutputImage, TKernel >::ConstPointer |
Reimplemented from itk::MorphologyImageFilter< TInputImage, TOutputImage, TKernel >.
Definition at line 58 of file itkGrayscaleFunctionErodeImageFilter.h.
typedef Superclass::DefaultBoundaryConditionType itk::GrayscaleFunctionErodeImageFilter< TInputImage, TOutputImage, TKernel >::DefaultBoundaryConditionType |
Default boundary condition type
Reimplemented from itk::MorphologyImageFilter< TInputImage, TOutputImage, TKernel >.
Definition at line 80 of file itkGrayscaleFunctionErodeImageFilter.h.
typedef Superclass::KernelIteratorType itk::GrayscaleFunctionErodeImageFilter< TInputImage, TOutputImage, TKernel >::KernelIteratorType |
Kernel (structuring element) iterator.
Reimplemented from itk::MorphologyImageFilter< TInputImage, TOutputImage, TKernel >.
Definition at line 71 of file itkGrayscaleFunctionErodeImageFilter.h.
typedef TKernel::PixelType itk::GrayscaleFunctionErodeImageFilter< TInputImage, TOutputImage, TKernel >::KernelPixelType |
Type of the pixels in the Kernel.
Definition at line 92 of file itkGrayscaleFunctionErodeImageFilter.h.
typedef Superclass::KernelType itk::GrayscaleFunctionErodeImageFilter< TInputImage, TOutputImage, TKernel >::KernelType |
Kernel typedef.
Reimplemented from itk::MorphologyImageFilter< TInputImage, TOutputImage, TKernel >.
Definition at line 77 of file itkGrayscaleFunctionErodeImageFilter.h.
typedef Superclass::NeighborhoodIteratorType itk::GrayscaleFunctionErodeImageFilter< TInputImage, TOutputImage, TKernel >::NeighborhoodIteratorType |
Neighborhood iterator type.
Reimplemented from itk::MorphologyImageFilter< TInputImage, TOutputImage, TKernel >.
Definition at line 74 of file itkGrayscaleFunctionErodeImageFilter.h.
typedef Superclass::PixelType itk::GrayscaleFunctionErodeImageFilter< TInputImage, TOutputImage, TKernel >::PixelType |
Declaration of pixel type.
Reimplemented from itk::MorphologyImageFilter< TInputImage, TOutputImage, TKernel >.
Definition at line 65 of file itkGrayscaleFunctionErodeImageFilter.h.
typedef SmartPointer< Self > itk::GrayscaleFunctionErodeImageFilter< TInputImage, TOutputImage, TKernel >::Pointer |
Reimplemented from itk::MorphologyImageFilter< TInputImage, TOutputImage, TKernel >.
Definition at line 57 of file itkGrayscaleFunctionErodeImageFilter.h.
typedef GrayscaleFunctionErodeImageFilter itk::GrayscaleFunctionErodeImageFilter< TInputImage, TOutputImage, TKernel >::Self |
Standard class typedefs.
Reimplemented from itk::MorphologyImageFilter< TInputImage, TOutputImage, TKernel >.
Definition at line 55 of file itkGrayscaleFunctionErodeImageFilter.h.
typedef MorphologyImageFilter< TInputImage, TOutputImage, TKernel > itk::GrayscaleFunctionErodeImageFilter< TInputImage, TOutputImage, TKernel >::Superclass |
Reimplemented from itk::MorphologyImageFilter< TInputImage, TOutputImage, TKernel >.
Definition at line 56 of file itkGrayscaleFunctionErodeImageFilter.h.
|
protected |
End concept checking
|
inlineprotected |
Definition at line 115 of file itkGrayscaleFunctionErodeImageFilter.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::KernelImageFilter< TInputImage, TOutputImage, TKernel >.
|
protected |
Evaluate image neighborhood with kernel to find the new value for the center pixel value
It will return the minimum value of the image pixels minus the structuring element values whose corresponding element in the structuring element is positive. This version of Evaluate is used for non-boundary pixels.
|
virtual |
Runtime information support.
Reimplemented from itk::MorphologyImageFilter< TInputImage, TOutputImage, TKernel >.
|
static |
Standard New method.
Reimplemented from itk::KernelImageFilter< TInputImage, TOutputImage, TKernel >.
|
private |
kernel or structuring element to use.
Reimplemented from itk::MorphologyImageFilter< TInputImage, TOutputImage, TKernel >.
itk::GrayscaleFunctionErodeImageFilter< TInputImage, TOutputImage, TKernel >::typedef | ( | Concept::SameDimension< InputImageDimension, OutputImageDimension > | ) |
Begin concept checking This class requires SameDimensionCheck1 in the form of ( Concept::SameDimension< InputImageDimension, OutputImageDimension > )
itk::GrayscaleFunctionErodeImageFilter< TInputImage, TOutputImage, TKernel >::typedef | ( | Concept::SameDimension< InputImageDimension, KernelDimension > | ) |
This class requires SameDimensionCheck2 in the form of ( Concept::SameDimension< InputImageDimension, KernelDimension > )
itk::GrayscaleFunctionErodeImageFilter< TInputImage, TOutputImage, TKernel >::typedef | ( | Concept::Convertible< PixelType, typename TOutputImage::PixelType > | ) |
This class requires InputConvertibleToOutputCheck in the form of ( Concept::Convertible< PixelType, typename TOutputImage::PixelType > )
itk::GrayscaleFunctionErodeImageFilter< TInputImage, TOutputImage, TKernel >::typedef | ( | Concept::Convertible< KernelPixelType, PixelType > | ) |
This class requires KernelConvertibleToInputCheck in the form of ( Concept::Convertible< KernelPixelType, PixelType > )
itk::GrayscaleFunctionErodeImageFilter< TInputImage, TOutputImage, TKernel >::typedef | ( | Concept::AdditiveOperators< PixelType > | ) |
This class requires InputAdditiveOperatorsCheck in the form of ( Concept::AdditiveOperators< PixelType > )
itk::GrayscaleFunctionErodeImageFilter< TInputImage, TOutputImage, TKernel >::typedef | ( | Concept::LessThanComparable< PixelType > | ) |
This class requires InputLessThanComparableCheck in the form of ( Concept::LessThanComparable< PixelType > )
itk::GrayscaleFunctionErodeImageFilter< TInputImage, TOutputImage, TKernel >::typedef | ( | Concept::GreaterThanComparable< KernelPixelType > | ) |
This class requires KernelGreaterThanComparableCheck in the form of ( Concept::GreaterThanComparable< KernelPixelType > )
|
static |
ImageDimension constants
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.
Definition at line 84 of file itkGrayscaleFunctionErodeImageFilter.h.
|
static |
ImageDimension constants
Definition at line 88 of file itkGrayscaleFunctionErodeImageFilter.h.
|
private |
Definition at line 134 of file itkGrayscaleFunctionErodeImageFilter.h.
|
static |
ImageDimension constants
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.
Definition at line 86 of file itkGrayscaleFunctionErodeImageFilter.h.