#include <itkVoronoiSegmentationImageFilterBase.h>
Inheritance diagram for itk::VoronoiSegmentationImageFilterBase< TInputImage, TOutputImage, TBinaryPriorImage >:
Voronoi SegmentationImageFilter is a class of segmenation algorithms that works on 2D image. Begin with certain number of seeds, VoronoiSegmentationImageFilter first partition the image plane to voronoi regions, and testing each region by some homogeneity operators, which need to be implemented in the private method: virtual bool TestHomogeneity(IndexList &Plist); after testing, all the regions are classified as either "internal" or "external" region and the "boundary" regions was defined as an "external" region that has at least one "internal" region as its neighbor. the algorithm then added seed points to the "boundary" regions (on the edges) and recursively "split" the boundary region until all the "boundary" become sufficiently small. the output of the segmentation can be either a binary object, which is the collection of all the "internal" region. Or a binary boundary delineate, which is defined as the connected lines between seed points of "boundary" region. This class is a base class for voronoi segmenation, single channel or multiple channel image segmenation can be implemented by deriving imagefilters from this class, by implementing the virtual methods
Detailed information about this algorithm can be found in: " Semi-automated color segmentation of anatomical tissue," C. Imelinska, M. Downes, and W. Yuan Computerized Medical Imaging and Graphics, Vor.24, pp 173-180, 2000.
Definition at line 59 of file itkVoronoiSegmentationImageFilterBase.h.
|
|
Definition at line 104 of file itkVoronoiSegmentationImageFilterBase.h. |
|
Reimplemented in itk::VoronoiPartitioningImageFilter< TInputImage, TOutputImage >. Definition at line 93 of file itkVoronoiSegmentationImageFilterBase.h. |
|
Definition at line 92 of file itkVoronoiSegmentationImageFilterBase.h. |
|
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >. Reimplemented in itk::VoronoiPartitioningImageFilter< TInputImage, TOutputImage >, itk::VoronoiSegmentationImageFilter< TInputImage, TOutputImage, TBinaryPriorImage >, and itk::VoronoiSegmentationRGBImageFilter< TInputImage, TOutputImage >. Definition at line 67 of file itkVoronoiSegmentationImageFilterBase.h. |
|
Definition at line 100 of file itkVoronoiSegmentationImageFilterBase.h. |
|
Reimplemented in itk::VoronoiPartitioningImageFilter< TInputImage, TOutputImage >. Definition at line 99 of file itkVoronoiSegmentationImageFilterBase.h. |
|
|
|
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >. Definition at line 82 of file itkVoronoiSegmentationImageFilterBase.h. |
|
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >. Reimplemented in itk::VoronoiSegmentationRGBImageFilter< TInputImage, TOutputImage >. Definition at line 81 of file itkVoronoiSegmentationImageFilterBase.h. |
|
Convenient typedefs. Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >. Reimplemented in itk::VoronoiPartitioningImageFilter< TInputImage, TOutputImage >, itk::VoronoiSegmentationImageFilter< TInputImage, TOutputImage, TBinaryPriorImage >, and itk::VoronoiSegmentationRGBImageFilter< TInputImage, TOutputImage >. Definition at line 80 of file itkVoronoiSegmentationImageFilterBase.h. |
|
Reimplemented in itk::VoronoiPartitioningImageFilter< TInputImage, TOutputImage >. Definition at line 98 of file itkVoronoiSegmentationImageFilterBase.h. |
|
Some convenient typedefs. Reimplemented from itk::ImageSource< TOutputImage >. Reimplemented in itk::VoronoiPartitioningImageFilter< TInputImage, TOutputImage >. Definition at line 83 of file itkVoronoiSegmentationImageFilterBase.h. |
|
Reimplemented in itk::VoronoiPartitioningImageFilter< TInputImage, TOutputImage >. Definition at line 88 of file itkVoronoiSegmentationImageFilterBase.h. |
|
Reimplemented in itk::VoronoiSegmentationRGBImageFilter< TInputImage, TOutputImage >. Definition at line 87 of file itkVoronoiSegmentationImageFilterBase.h. |
|
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >. Reimplemented in itk::VoronoiPartitioningImageFilter< TInputImage, TOutputImage >, itk::VoronoiSegmentationImageFilter< TInputImage, TOutputImage, TBinaryPriorImage >, and itk::VoronoiSegmentationRGBImageFilter< TInputImage, TOutputImage >. Definition at line 66 of file itkVoronoiSegmentationImageFilterBase.h. |
|
Reimplemented in itk::VoronoiPartitioningImageFilter< TInputImage, TOutputImage >. Definition at line 95 of file itkVoronoiSegmentationImageFilterBase.h. |
|
Reimplemented in itk::VoronoiPartitioningImageFilter< TInputImage, TOutputImage >. Definition at line 91 of file itkVoronoiSegmentationImageFilterBase.h. |
|
Reimplemented in itk::VoronoiPartitioningImageFilter< TInputImage, TOutputImage >. Definition at line 102 of file itkVoronoiSegmentationImageFilterBase.h. |
|
Definition at line 101 of file itkVoronoiSegmentationImageFilterBase.h. |
|
|
Definition at line 97 of file itkVoronoiSegmentationImageFilterBase.h. |
|
Definition at line 96 of file itkVoronoiSegmentationImageFilterBase.h. |
|
Standard class typedefs. Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >. Reimplemented in itk::VoronoiPartitioningImageFilter< TInputImage, TOutputImage >, itk::VoronoiSegmentationImageFilter< TInputImage, TOutputImage, TBinaryPriorImage >, and itk::VoronoiSegmentationRGBImageFilter< TInputImage, TOutputImage >. Definition at line 64 of file itkVoronoiSegmentationImageFilterBase.h. |
|
Definition at line 85 of file itkVoronoiSegmentationImageFilterBase.h. |
|
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >. Reimplemented in itk::VoronoiPartitioningImageFilter< TInputImage, TOutputImage >, itk::VoronoiSegmentationImageFilter< TInputImage, TOutputImage, TBinaryPriorImage >, and itk::VoronoiSegmentationRGBImageFilter< TInputImage, TOutputImage >. Definition at line 65 of file itkVoronoiSegmentationImageFilterBase.h. |
|
To output the drawing of Voronoi Diagram (VD) . Definition at line 108 of file itkVoronoiSegmentationImageFilterBase.h. |
|
Definition at line 109 of file itkVoronoiSegmentationImageFilterBase.h. |
|
Definition at line 89 of file itkVoronoiSegmentationImageFilterBase.h. |
|
Definition at line 90 of file itkVoronoiSegmentationImageFilterBase.h. |
|
Definition at line 94 of file itkVoronoiSegmentationImageFilterBase.h. |
|
|
|
|
|
|
|
Reimplemented in itk::VoronoiPartitioningImageFilter< TInputImage, TOutputImage >. |
|
Draw the Voronoi Diagram structure. |
|
|
|
|
|
This filter does not stream and needs to produce the entire output. Reimplemented from itk::ProcessObject. |
|
|
|
Reimplemented in itk::VoronoiPartitioningImageFilter< TInputImage, TOutputImage >. |
|
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 >. |
|
This filter does not stream and needs the entire image as input. Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >. |
|
Output the segmentation on every iteration. Useful for iteractive sessions. The setting of OutputBoundary determines the type of output. |
|
Get the number of seeds before adding new ones. |
|
Set/Get the mean deviation. |
|
Set/Get the smallest region to be divided. |
|
Run-time type information (and related methods). Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >. Reimplemented in itk::VoronoiPartitioningImageFilter< TInputImage, TOutputImage >, itk::VoronoiSegmentationImageFilter< TInputImage, TOutputImage, TBinaryPriorImage >, and itk::VoronoiSegmentationRGBImageFilter< TInputImage, TOutputImage >. |
|
Set/Get the initial number of seeds for VD. |
|
Get the number of seeds to add. |
|
Enable the generation of the output boundary. |
|
|
|
Get the point specified by the ID given. Definition at line 185 of file itkVoronoiSegmentationImageFilterBase.h. |
|
Set/Get the number of iterations to run (if set to 0: the classification run process runs until no more cells can be divided). |
|
|
|
Return the Voroni Diagram structure. Definition at line 171 of file itkVoronoiSegmentationImageFilterBase.h. |
|
Output the segmentation on every iteration. Useful for iteractive sessions. The setting of OutputBoundary determines the type of output. |
|
Output the segmentation on every iteration. Useful for iteractive sessions. The setting of OutputBoundary determines the type of output. |
|
Get the image dimension from the template parameter. |
|
Create the output binary result for boundaries. Reimplemented in itk::VoronoiPartitioningImageFilter< TInputImage, TOutputImage >. |
|
Create the output binary result for boundaries. Reimplemented in itk::VoronoiPartitioningImageFilter< TInputImage, TOutputImage >. |
|
Method for creation through the object factory. Reimplemented from itk::Object. Reimplemented in itk::VoronoiPartitioningImageFilter< TInputImage, TOutputImage >, itk::VoronoiSegmentationImageFilter< TInputImage, TOutputImage, TBinaryPriorImage >, and itk::VoronoiSegmentationRGBImageFilter< TInputImage, TOutputImage >. |
|
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 >. Reimplemented in itk::VoronoiPartitioningImageFilter< TInputImage, TOutputImage >, itk::VoronoiSegmentationImageFilter< TInputImage, TOutputImage, TBinaryPriorImage >, and itk::VoronoiSegmentationRGBImageFilter< TInputImage, TOutputImage >. |
|
Perform the segmentation. |
|
Perform the segmentation. |
|
Output the segmentation on every iteration. Useful for iteractive sessions. The setting of OutputBoundary determines the type of output. |
|
Set/Get the mean deviation. |
|
Set/Get the smallest region to be divided. |
|
Set/Get the initial number of seeds for VD. |
|
Enable the generation of the output boundary. |
|
Seeds positions are randomly set. If you need to set seeds position then use the SetSeeds method after the InitializeSegment method . Definition at line 177 of file itkVoronoiSegmentationImageFilterBase.h. |
|
Set/Get the number of iterations to run (if set to 0: the classification run process runs until no more cells can be divided). |
|
|
|
Take a prior from other segmentation node. This should be a binary object. Reimplemented in itk::VoronoiSegmentationImageFilter< TInputImage, TOutputImage, TBinaryPriorImage >, and itk::VoronoiSegmentationRGBImageFilter< TInputImage, TOutputImage >. Definition at line 157 of file itkVoronoiSegmentationImageFilterBase.h. |
|
Reimplemented in itk::VoronoiPartitioningImageFilter< TInputImage, TOutputImage >. Definition at line 237 of file itkVoronoiSegmentationImageFilterBase.h. |
|
Definition at line 221 of file itkVoronoiSegmentationImageFilterBase.h. |
|
Definition at line 217 of file itkVoronoiSegmentationImageFilterBase.h. |
|
Definition at line 213 of file itkVoronoiSegmentationImageFilterBase.h. |
|
Definition at line 218 of file itkVoronoiSegmentationImageFilterBase.h. |
|
Definition at line 211 of file itkVoronoiSegmentationImageFilterBase.h. |
|
Definition at line 215 of file itkVoronoiSegmentationImageFilterBase.h. |
|
Definition at line 216 of file itkVoronoiSegmentationImageFilterBase.h. |
|
Definition at line 210 of file itkVoronoiSegmentationImageFilterBase.h. |
|
Definition at line 214 of file itkVoronoiSegmentationImageFilterBase.h. |
|
Definition at line 220 of file itkVoronoiSegmentationImageFilterBase.h. |
|
Definition at line 226 of file itkVoronoiSegmentationImageFilterBase.h. |
|
Definition at line 209 of file itkVoronoiSegmentationImageFilterBase.h. |
|
Definition at line 212 of file itkVoronoiSegmentationImageFilterBase.h. |
|
Definition at line 219 of file itkVoronoiSegmentationImageFilterBase.h. |
|
Definition at line 224 of file itkVoronoiSegmentationImageFilterBase.h. |
|
Definition at line 223 of file itkVoronoiSegmentationImageFilterBase.h. |