ITK
4.3.0
Insight Segmentation and Registration Toolkit
|
#include <itkBinaryDilateImageFilter.h>
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.
Definition at line 66 of file itkBinaryDilateImageFilter.h.
Static Public Member Functions | |
static Pointer | New () |
Static Public Member Functions inherited from itk::BinaryMorphologyImageFilter< TInputImage, TOutputImage, TKernel > | |
static Pointer | New () |
Static Public Member Functions inherited from itk::KernelImageFilter< TInputImage, TOutputImage, TKernel > | |
static Pointer | New () |
Static Public Member Functions inherited from itk::BoxImageFilter< TInputImage, TOutputImage > | |
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 |
Static Public Attributes inherited from itk::BinaryMorphologyImageFilter< TInputImage, TOutputImage, TKernel > | |
static const unsigned int | KernelDimension = TKernel::NeighborhoodDimension |
static const unsigned int | InputImageDimension = TInputImage::ImageDimension |
static const unsigned int | OutputImageDimension = TOutputImage::ImageDimension |
Static Public Attributes inherited from itk::KernelImageFilter< TInputImage, TOutputImage, TKernel > | |
static const unsigned int | ImageDimension = TInputImage::ImageDimension |
Static Public Attributes inherited from itk::BoxImageFilter< TInputImage, TOutputImage > | |
static const unsigned int | ImageDimension = TInputImage::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 |
Protected Types | |
typedef Superclass::NeighborIndexContainer | NeighborIndexContainer |
Protected Types inherited from itk::BinaryMorphologyImageFilter< TInputImage, TOutputImage, TKernel > | |
typedef ComponentVectorType::const_iterator | ComponentVectorConstIterator |
typedef std::vector< OffsetType > | ComponentVectorType |
typedef std::vector< OffsetType > | NeighborIndexContainer |
typedef std::vector < NeighborIndexContainer > | NeighborIndexContainerContainer |
Private Member Functions | |
BinaryDilateImageFilter (const Self &) | |
void | operator= (const Self &) |
Additional Inherited Members | |
Static Protected Member Functions inherited from itk::ImageSource< TOutputImage > | |
static ITK_THREAD_RETURN_TYPE | ThreaderCallback (void *arg) |
Protected Attributes inherited from itk::BinaryMorphologyImageFilter< TInputImage, TOutputImage, TKernel > | |
bool | m_BoundaryToForeground |
typedef SmartPointer< const Self > itk::BinaryDilateImageFilter< TInputImage, TOutputImage, TKernel >::ConstPointer |
Definition at line 93 of file itkBinaryDilateImageFilter.h.
typedef InputImageType::IndexType itk::BinaryDilateImageFilter< TInputImage, TOutputImage, TKernel >::IndexType |
Definition at line 109 of file itkBinaryDilateImageFilter.h.
typedef InputImageType::RegionType itk::BinaryDilateImageFilter< TInputImage, TOutputImage, TKernel >::InputImageRegionType |
Definition at line 111 of file itkBinaryDilateImageFilter.h.
typedef TInputImage itk::BinaryDilateImageFilter< TInputImage, TOutputImage, TKernel >::InputImageType |
Convenient typedefs for simplifying declarations.
Definition at line 83 of file itkBinaryDilateImageFilter.h.
typedef InputImageType::PixelType itk::BinaryDilateImageFilter< TInputImage, TOutputImage, TKernel >::InputPixelType |
Image typedef support.
Definition at line 105 of file itkBinaryDilateImageFilter.h.
typedef NumericTraits< InputPixelType >::RealType itk::BinaryDilateImageFilter< TInputImage, TOutputImage, TKernel >::InputRealType |
Definition at line 107 of file itkBinaryDilateImageFilter.h.
typedef InputImageType::SizeType itk::BinaryDilateImageFilter< TInputImage, TOutputImage, TKernel >::InputSizeType |
Definition at line 113 of file itkBinaryDilateImageFilter.h.
typedef KernelType::ConstIterator itk::BinaryDilateImageFilter< TInputImage, TOutputImage, TKernel >::KernelIteratorType |
Kernel (structuring element) iterator.
Definition at line 99 of file itkBinaryDilateImageFilter.h.
typedef TKernel itk::BinaryDilateImageFilter< TInputImage, TOutputImage, TKernel >::KernelType |
Definition at line 85 of file itkBinaryDilateImageFilter.h.
|
protected |
Definition at line 135 of file itkBinaryDilateImageFilter.h.
typedef InputImageType::OffsetType itk::BinaryDilateImageFilter< TInputImage, TOutputImage, TKernel >::OffsetType |
Definition at line 108 of file itkBinaryDilateImageFilter.h.
typedef OutputImageType::RegionType itk::BinaryDilateImageFilter< TInputImage, TOutputImage, TKernel >::OutputImageRegionType |
Definition at line 112 of file itkBinaryDilateImageFilter.h.
typedef TOutputImage itk::BinaryDilateImageFilter< TInputImage, TOutputImage, TKernel >::OutputImageType |
Definition at line 84 of file itkBinaryDilateImageFilter.h.
typedef OutputImageType::PixelType itk::BinaryDilateImageFilter< TInputImage, TOutputImage, TKernel >::OutputPixelType |
Definition at line 106 of file itkBinaryDilateImageFilter.h.
typedef SmartPointer< Self > itk::BinaryDilateImageFilter< TInputImage, TOutputImage, TKernel >::Pointer |
Definition at line 92 of file itkBinaryDilateImageFilter.h.
typedef BinaryDilateImageFilter itk::BinaryDilateImageFilter< TInputImage, TOutputImage, TKernel >::Self |
Standard class typedefs.
Definition at line 88 of file itkBinaryDilateImageFilter.h.
typedef BinaryMorphologyImageFilter< InputImageType, OutputImageType, KernelType > itk::BinaryDilateImageFilter< TInputImage, TOutputImage, TKernel >::Superclass |
Definition at line 90 of file itkBinaryDilateImageFilter.h.
|
protected |
|
inlineprotectedvirtual |
Definition at line 129 of file itkBinaryDilateImageFilter.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 >.
Reimplemented in itk::FastIncrementalBinaryDilateImageFilter< TInputImage, TOutputImage, TKernel >.
|
protectedvirtual |
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.
Reimplemented from itk::ImageSource< TOutputImage >.
|
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.
|
virtual |
Run-time type information (and related methods).
Reimplemented from itk::BinaryMorphologyImageFilter< TInputImage, TOutputImage, TKernel >.
Reimplemented in itk::FastIncrementalBinaryDilateImageFilter< TInputImage, TOutputImage, TKernel >.
|
static |
Method for creation through the object factory.
|
private |
|
protectedvirtual |
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::KernelImageFilter< TInputImage, TOutputImage, TKernel >.
|
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.
|
static |
Extract dimension from input and output image.
Definition at line 73 of file itkBinaryDilateImageFilter.h.
|
static |
Extract the dimension of the kernel
Definition at line 80 of file itkBinaryDilateImageFilter.h.
|
static |
Extract dimension from input and output image.
Definition at line 75 of file itkBinaryDilateImageFilter.h.