ITK  4.0.0
Insight Segmentation and Registration Toolkit
Public Types | Public Member Functions | Static Public Member Functions | Static Public Attributes | Protected Types | Protected Member Functions | Private Member Functions
itk::BinaryDilateImageFilter< TInputImage, TOutputImage, TKernel > Class Template Reference

Fast binary dilation. More...

#include <itkBinaryDilateImageFilter.h>

Inheritance diagram for itk::BinaryDilateImageFilter< TInputImage, TOutputImage, TKernel >:
Collaboration diagram for itk::BinaryDilateImageFilter< TInputImage, TOutputImage, TKernel >:

List of all members.

Public Types

typedef SmartPointer< const SelfConstPointer
typedef InputImageType::IndexType IndexType
typedef InputImageType::RegionType InputImageRegionType
typedef TInputImage InputImageType
typedef InputImageType::PixelType InputPixelType
typedef NumericTraits
< InputPixelType >::RealType 
InputRealType
typedef InputImageType::SizeType InputSizeType
typedef KernelType::ConstIterator KernelIteratorType
typedef TKernel KernelType
typedef InputImageType::OffsetType OffsetType
typedef OutputImageType::RegionType OutputImageRegionType
typedef TOutputImage OutputImageType
typedef OutputImageType::PixelType OutputPixelType
typedef SmartPointer< SelfPointer
typedef BinaryDilateImageFilter Self
typedef
BinaryMorphologyImageFilter
< InputImageType,
OutputImageType, KernelType
Superclass

Public Member Functions

virtual ::itk::LightObject::Pointer CreateAnother (void) const
virtual const char * GetNameOfClass () const
void SetDilateValue (const InputPixelType &value)

Static Public Member Functions

static Pointer New ()

Static Public Attributes

static const unsigned int KernelDimension = TKernel::NeighborhoodDimension
static const unsigned int InputImageDimension = TInputImage::ImageDimension
static const unsigned int OutputImageDimension = TOutputImage::ImageDimension

Protected Types

typedef
Superclass::NeighborIndexContainer 
NeighborIndexContainer

Protected Member Functions

void GenerateData ()

Private Member Functions

 BinaryDilateImageFilter (const Self &)
void operator= (const Self &)
InputPixelType GetDilateValue () const
 BinaryDilateImageFilter ()
virtual ~BinaryDilateImageFilter ()
void PrintSelf (std::ostream &os, Indent indent) const

Detailed Description

template<class TInputImage, class TOutputImage, class TKernel>
class itk::BinaryDilateImageFilter< TInputImage, TOutputImage, TKernel >

Fast binary dilation.

BinaryDilateImageFilter is a binary dilation morphologic operation. This implementation is based on the papers:

L.Vincent "Morphological transformations of binary images with arbitrary structuring elements", and

N.Nikopoulos et al. "An efficient algorithm for 3d binary morphological transformations with 3d structuring elements for arbitrary size and shape". IEEE Transactions on Image Processing. Vol. 9. No. 3. 2000. pp. 283-286.

Gray scale images can be processed as binary images by selecting a "DilateValue". Pixel values matching the dilate value are considered the "foreground" and all other pixels are "background". This is useful in processing segmented images where all pixels in segment #1 have value 1 and pixels in segment #2 have value 2, etc. A particular "segment number" can be processed. DilateValue defaults to the maximum possible value of the PixelType.

The structuring element is assumed to be composed of binary values (zero or one). Only elements of the structuring element having values > 0 are candidates for affecting the center pixel. A reasonable choice of structuring element is itk::BinaryBallStructuringElement.

See also:
ImageToImageFilter BinaryErodeImageFilter BinaryMorphologyImageFilter
Wiki Examples:

Definition at line 66 of file itkBinaryDilateImageFilter.h.


Member Typedef Documentation

template<class TInputImage , class TOutputImage , class TKernel >
typedef SmartPointer< const Self > itk::BinaryDilateImageFilter< TInputImage, TOutputImage, TKernel >::ConstPointer
template<class TInputImage , class TOutputImage , class TKernel >
typedef InputImageType::IndexType itk::BinaryDilateImageFilter< TInputImage, TOutputImage, TKernel >::IndexType
template<class TInputImage , class TOutputImage , class TKernel >
typedef InputImageType::RegionType itk::BinaryDilateImageFilter< TInputImage, TOutputImage, TKernel >::InputImageRegionType
template<class TInputImage , class TOutputImage , class TKernel >
typedef TInputImage itk::BinaryDilateImageFilter< TInputImage, TOutputImage, TKernel >::InputImageType

Convenient typedefs for simplifying declarations.

Reimplemented from itk::BinaryMorphologyImageFilter< TInputImage, TOutputImage, TKernel >.

Reimplemented in itk::FastIncrementalBinaryDilateImageFilter< TInputImage, TOutputImage, TKernel >.

Definition at line 83 of file itkBinaryDilateImageFilter.h.

template<class TInputImage , class TOutputImage , class TKernel >
typedef InputImageType::PixelType itk::BinaryDilateImageFilter< TInputImage, TOutputImage, TKernel >::InputPixelType
template<class TInputImage , class TOutputImage , class TKernel >
typedef NumericTraits< InputPixelType >::RealType itk::BinaryDilateImageFilter< TInputImage, TOutputImage, TKernel >::InputRealType
template<class TInputImage , class TOutputImage , class TKernel >
typedef InputImageType::SizeType itk::BinaryDilateImageFilter< TInputImage, TOutputImage, TKernel >::InputSizeType
template<class TInputImage , class TOutputImage , class TKernel >
typedef KernelType::ConstIterator itk::BinaryDilateImageFilter< TInputImage, TOutputImage, TKernel >::KernelIteratorType

Kernel (structuring element) iterator.

Reimplemented from itk::BinaryMorphologyImageFilter< TInputImage, TOutputImage, TKernel >.

Definition at line 99 of file itkBinaryDilateImageFilter.h.

template<class TInputImage , class TOutputImage , class TKernel >
typedef TKernel itk::BinaryDilateImageFilter< TInputImage, TOutputImage, TKernel >::KernelType
template<class TInputImage , class TOutputImage , class TKernel >
typedef Superclass::NeighborIndexContainer itk::BinaryDilateImageFilter< TInputImage, TOutputImage, TKernel >::NeighborIndexContainer [protected]

Type definition of container of neighbourhood index

Reimplemented from itk::BinaryMorphologyImageFilter< TInputImage, TOutputImage, TKernel >.

Definition at line 135 of file itkBinaryDilateImageFilter.h.

template<class TInputImage , class TOutputImage , class TKernel >
typedef InputImageType::OffsetType itk::BinaryDilateImageFilter< TInputImage, TOutputImage, TKernel >::OffsetType
template<class TInputImage , class TOutputImage , class TKernel >
typedef OutputImageType::RegionType itk::BinaryDilateImageFilter< TInputImage, TOutputImage, TKernel >::OutputImageRegionType

Superclass typedefs.

Reimplemented from itk::BinaryMorphologyImageFilter< TInputImage, TOutputImage, TKernel >.

Definition at line 112 of file itkBinaryDilateImageFilter.h.

template<class TInputImage , class TOutputImage , class TKernel >
typedef TOutputImage itk::BinaryDilateImageFilter< TInputImage, TOutputImage, TKernel >::OutputImageType
template<class TInputImage , class TOutputImage , class TKernel >
typedef OutputImageType::PixelType itk::BinaryDilateImageFilter< TInputImage, TOutputImage, TKernel >::OutputPixelType
template<class TInputImage , class TOutputImage , class TKernel >
typedef SmartPointer< Self > itk::BinaryDilateImageFilter< TInputImage, TOutputImage, TKernel >::Pointer
template<class TInputImage , class TOutputImage , class TKernel >
typedef BinaryDilateImageFilter itk::BinaryDilateImageFilter< TInputImage, TOutputImage, TKernel >::Self
template<class TInputImage , class TOutputImage , class TKernel >
typedef BinaryMorphologyImageFilter< InputImageType, OutputImageType, KernelType > itk::BinaryDilateImageFilter< TInputImage, TOutputImage, TKernel >::Superclass

Constructor & Destructor Documentation

template<class TInputImage , class TOutputImage , class TKernel >
itk::BinaryDilateImageFilter< TInputImage, TOutputImage, TKernel >::BinaryDilateImageFilter ( ) [protected]

Get the value in the image considered as "foreground". Defaults to maximum value of PixelType. This is an alias to the ForegroundValue in the superclass.

template<class TInputImage , class TOutputImage , class TKernel >
virtual itk::BinaryDilateImageFilter< TInputImage, TOutputImage, TKernel >::~BinaryDilateImageFilter ( ) [inline, protected, virtual]

Get the value in the image considered as "foreground". Defaults to maximum value of PixelType. This is an alias to the ForegroundValue in the superclass.

Definition at line 128 of file itkBinaryDilateImageFilter.h.

template<class TInputImage , class TOutputImage , class TKernel >
itk::BinaryDilateImageFilter< TInputImage, TOutputImage, TKernel >::BinaryDilateImageFilter ( const Self ) [private]

Member Function Documentation

template<class TInputImage , class TOutputImage , class TKernel >
virtual::itk::LightObject::Pointer itk::BinaryDilateImageFilter< TInputImage, TOutputImage, TKernel >::CreateAnother ( void  ) const [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::BinaryMorphologyImageFilter< TInputImage, TOutputImage, TKernel >.

Reimplemented in itk::FastIncrementalBinaryDilateImageFilter< TInputImage, TOutputImage, TKernel >.

template<class TInputImage , class TOutputImage , class TKernel >
void itk::BinaryDilateImageFilter< TInputImage, TOutputImage, TKernel >::GenerateData ( ) [protected, virtual]

A version of GenerateData() specific for image processing filters. This implementation will split the processing across multiple threads. The buffer is allocated by this method. Then the BeforeThreadedGenerateData() method is called (if provided). Then, a series of threads are spawned each calling ThreadedGenerateData(). After all the threads have completed processing, the AfterThreadedGenerateData() method is called (if provided). If an image processing filter cannot be threaded, the filter should provide an implementation of GenerateData(). That implementation is responsible for allocating the output buffer. If a filter an be threaded, it should NOT provide a GenerateData() method but should provide a ThreadedGenerateData() instead.

See also:
ThreadedGenerateData()

Reimplemented from itk::ImageSource< TOutputImage >.

template<class TInputImage , class TOutputImage , class TKernel >
InputPixelType itk::BinaryDilateImageFilter< TInputImage, TOutputImage, TKernel >::GetDilateValue ( ) const [inline]

Get the value in the image considered as "foreground". Defaults to maximum value of PixelType. This is an alias to the ForegroundValue in the superclass.

Definition at line 124 of file itkBinaryDilateImageFilter.h.

template<class TInputImage , class TOutputImage , class TKernel >
virtual const char* itk::BinaryDilateImageFilter< TInputImage, TOutputImage, TKernel >::GetNameOfClass ( ) const [virtual]
template<class TInputImage , class TOutputImage , class TKernel >
static Pointer itk::BinaryDilateImageFilter< TInputImage, TOutputImage, TKernel >::New ( ) [static]
template<class TInputImage , class TOutputImage , class TKernel >
void itk::BinaryDilateImageFilter< TInputImage, TOutputImage, TKernel >::operator= ( const Self ) [private]
template<class TInputImage , class TOutputImage , class TKernel >
void itk::BinaryDilateImageFilter< TInputImage, TOutputImage, TKernel >::PrintSelf ( std::ostream &  os,
Indent  indent 
) const [protected, virtual]

Get the value in the image considered as "foreground". Defaults to maximum value of PixelType. This is an alias to the ForegroundValue in the superclass.

Reimplemented from itk::BinaryMorphologyImageFilter< TInputImage, TOutputImage, TKernel >.

template<class TInputImage , class TOutputImage , class TKernel >
void itk::BinaryDilateImageFilter< TInputImage, TOutputImage, TKernel >::SetDilateValue ( const InputPixelType value) [inline]

Set the value in the image to consider as "foreground". Defaults to maximum value of PixelType. This is an alias to the ForegroundValue in the superclass.

Definition at line 118 of file itkBinaryDilateImageFilter.h.


Member Data Documentation

template<class TInputImage , class TOutputImage , class TKernel >
const unsigned int itk::BinaryDilateImageFilter< TInputImage, TOutputImage, TKernel >::InputImageDimension = TInputImage::ImageDimension [static]
template<class TInputImage , class TOutputImage , class TKernel >
const unsigned int itk::BinaryDilateImageFilter< TInputImage, TOutputImage, TKernel >::KernelDimension = TKernel::NeighborhoodDimension [static]
template<class TInputImage , class TOutputImage , class TKernel >
const unsigned int itk::BinaryDilateImageFilter< TInputImage, TOutputImage, TKernel >::OutputImageDimension = TOutputImage::ImageDimension [static]

The documentation for this class was generated from the following file: