ITK
4.1.0
Insight Segmentation and Registration Toolkit
|
#include <itkVoronoiSegmentationImageFilterBase.h>
Base class for VoronoiSegmentationImageFilter.
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.
typedef TBinaryPriorImage itk::VoronoiSegmentationImageFilterBase< TInputImage, TOutputImage, TBinaryPriorImage >::BinaryObjectImage |
Reimplemented in itk::VoronoiSegmentationImageFilter< TInputImage, TOutputImage, TBinaryPriorImage >, itk::VoronoiSegmentationRGBImageFilter< TInputImage, TOutputImage >, and itk::VoronoiPartitioningImageFilter< TInputImage, TOutputImage >.
Definition at line 105 of file itkVoronoiSegmentationImageFilterBase.h.
typedef BinaryObjectImage::Pointer itk::VoronoiSegmentationImageFilterBase< TInputImage, TOutputImage, TBinaryPriorImage >::BinaryObjectImagePointer |
Definition at line 106 of file itkVoronoiSegmentationImageFilterBase.h.
typedef VoronoiDiagram::CellAutoPointer itk::VoronoiSegmentationImageFilterBase< TInputImage, TOutputImage, TBinaryPriorImage >::CellAutoPointer |
Reimplemented in itk::VoronoiPartitioningImageFilter< TInputImage, TOutputImage >.
Definition at line 95 of file itkVoronoiSegmentationImageFilterBase.h.
typedef VoronoiDiagram::CellType itk::VoronoiSegmentationImageFilterBase< TInputImage, TOutputImage, TBinaryPriorImage >::CellType |
Definition at line 94 of file itkVoronoiSegmentationImageFilterBase.h.
typedef SmartPointer< const Self > itk::VoronoiSegmentationImageFilterBase< TInputImage, TOutputImage, TBinaryPriorImage >::ConstPointer |
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.
Reimplemented in itk::VoronoiSegmentationImageFilter< TInputImage, TOutputImage, TBinaryPriorImage >, itk::VoronoiSegmentationRGBImageFilter< TInputImage, TOutputImage >, and itk::VoronoiPartitioningImageFilter< TInputImage, TOutputImage >.
Definition at line 67 of file itkVoronoiSegmentationImageFilterBase.h.
typedef VoronoiDiagram::VoronoiEdge itk::VoronoiSegmentationImageFilterBase< TInputImage, TOutputImage, TBinaryPriorImage >::EdgeInfo |
Definition at line 102 of file itkVoronoiSegmentationImageFilterBase.h.
typedef VoronoiDiagram::VoronoiEdgeIterator itk::VoronoiSegmentationImageFilterBase< TInputImage, TOutputImage, TBinaryPriorImage >::EdgeIterator |
Reimplemented in itk::VoronoiPartitioningImageFilter< TInputImage, TOutputImage >.
Definition at line 101 of file itkVoronoiSegmentationImageFilterBase.h.
typedef std::vector< IndexType > itk::VoronoiSegmentationImageFilterBase< TInputImage, TOutputImage, TBinaryPriorImage >::IndexList |
Reimplemented in itk::VoronoiSegmentationImageFilter< TInputImage, TOutputImage, TBinaryPriorImage >, itk::VoronoiSegmentationRGBImageFilter< TInputImage, TOutputImage >, and itk::VoronoiPartitioningImageFilter< TInputImage, TOutputImage >.
Definition at line 107 of file itkVoronoiSegmentationImageFilterBase.h.
typedef TInputImage::IndexType itk::VoronoiSegmentationImageFilterBase< TInputImage, TOutputImage, TBinaryPriorImage >::IndexType |
Reimplemented in itk::VoronoiSegmentationImageFilter< TInputImage, TOutputImage, TBinaryPriorImage >, itk::VoronoiSegmentationRGBImageFilter< TInputImage, TOutputImage >, and itk::VoronoiPartitioningImageFilter< TInputImage, TOutputImage >.
Definition at line 83 of file itkVoronoiSegmentationImageFilterBase.h.
typedef TInputImage::ConstPointer itk::VoronoiSegmentationImageFilterBase< TInputImage, TOutputImage, TBinaryPriorImage >::InputImageConstPointer |
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.
Definition at line 82 of file itkVoronoiSegmentationImageFilterBase.h.
typedef TInputImage::Pointer itk::VoronoiSegmentationImageFilterBase< TInputImage, TOutputImage, TBinaryPriorImage >::InputImagePointer |
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.
Reimplemented in itk::VoronoiSegmentationRGBImageFilter< TInputImage, TOutputImage >.
Definition at line 81 of file itkVoronoiSegmentationImageFilterBase.h.
typedef TInputImage itk::VoronoiSegmentationImageFilterBase< TInputImage, TOutputImage, TBinaryPriorImage >::InputImageType |
Convenient typedefs.
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.
Reimplemented in itk::VoronoiSegmentationRGBImageFilter< TInputImage, TOutputImage >, itk::VoronoiSegmentationImageFilter< TInputImage, TOutputImage, TBinaryPriorImage >, and itk::VoronoiPartitioningImageFilter< TInputImage, TOutputImage >.
Definition at line 80 of file itkVoronoiSegmentationImageFilterBase.h.
typedef VoronoiDiagram::NeighborIdIterator itk::VoronoiSegmentationImageFilterBase< TInputImage, TOutputImage, TBinaryPriorImage >::NeighborIdIterator |
Reimplemented in itk::VoronoiPartitioningImageFilter< TInputImage, TOutputImage >.
Definition at line 100 of file itkVoronoiSegmentationImageFilterBase.h.
typedef TOutputImage itk::VoronoiSegmentationImageFilterBase< TInputImage, TOutputImage, TBinaryPriorImage >::OutputImageType |
Some convenient typedefs.
Reimplemented from itk::ImageSource< TOutputImage >.
Reimplemented in itk::VoronoiPartitioningImageFilter< TInputImage, TOutputImage >.
Definition at line 88 of file itkVoronoiSegmentationImageFilterBase.h.
typedef TOutputImage::PixelType itk::VoronoiSegmentationImageFilterBase< TInputImage, TOutputImage, TBinaryPriorImage >::OutputPixelType |
Reimplemented in itk::VoronoiPartitioningImageFilter< TInputImage, TOutputImage >.
Definition at line 89 of file itkVoronoiSegmentationImageFilterBase.h.
typedef TInputImage::PixelType itk::VoronoiSegmentationImageFilterBase< TInputImage, TOutputImage, TBinaryPriorImage >::PixelType |
Reimplemented in itk::VoronoiSegmentationRGBImageFilter< TInputImage, TOutputImage >.
Definition at line 86 of file itkVoronoiSegmentationImageFilterBase.h.
typedef SmartPointer< Self > itk::VoronoiSegmentationImageFilterBase< TInputImage, TOutputImage, TBinaryPriorImage >::Pointer |
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.
Reimplemented in itk::VoronoiSegmentationImageFilter< TInputImage, TOutputImage, TBinaryPriorImage >, itk::VoronoiSegmentationRGBImageFilter< TInputImage, TOutputImage >, and itk::VoronoiPartitioningImageFilter< TInputImage, TOutputImage >.
Definition at line 66 of file itkVoronoiSegmentationImageFilterBase.h.
typedef CellType::PointIdIterator itk::VoronoiSegmentationImageFilterBase< TInputImage, TOutputImage, TBinaryPriorImage >::PointIdIterator |
Reimplemented in itk::VoronoiPartitioningImageFilter< TInputImage, TOutputImage >.
Definition at line 97 of file itkVoronoiSegmentationImageFilterBase.h.
typedef VoronoiDiagram::PointType itk::VoronoiSegmentationImageFilterBase< TInputImage, TOutputImage, TBinaryPriorImage >::PointType |
Reimplemented in itk::VoronoiPartitioningImageFilter< TInputImage, TOutputImage >.
Definition at line 93 of file itkVoronoiSegmentationImageFilterBase.h.
typedef std::deque< PointType > itk::VoronoiSegmentationImageFilterBase< TInputImage, TOutputImage, TBinaryPriorImage >::PointTypeDeque |
Reimplemented in itk::VoronoiPartitioningImageFilter< TInputImage, TOutputImage >.
Definition at line 104 of file itkVoronoiSegmentationImageFilterBase.h.
typedef std::vector< PointType > itk::VoronoiSegmentationImageFilterBase< TInputImage, TOutputImage, TBinaryPriorImage >::PointTypeVector |
Definition at line 103 of file itkVoronoiSegmentationImageFilterBase.h.
typedef TInputImage::RegionType itk::VoronoiSegmentationImageFilterBase< TInputImage, TOutputImage, TBinaryPriorImage >::RegionType |
Reimplemented in itk::VoronoiSegmentationImageFilter< TInputImage, TOutputImage, TBinaryPriorImage >, itk::VoronoiSegmentationRGBImageFilter< TInputImage, TOutputImage >, and itk::VoronoiPartitioningImageFilter< TInputImage, TOutputImage >.
Definition at line 85 of file itkVoronoiSegmentationImageFilterBase.h.
typedef VoronoiDiagram::SeedsIterator itk::VoronoiSegmentationImageFilterBase< TInputImage, TOutputImage, TBinaryPriorImage >::SeedsIterator |
Definition at line 99 of file itkVoronoiSegmentationImageFilterBase.h.
typedef VoronoiDiagram::SeedsType itk::VoronoiSegmentationImageFilterBase< TInputImage, TOutputImage, TBinaryPriorImage >::SeedsType |
Definition at line 98 of file itkVoronoiSegmentationImageFilterBase.h.
typedef VoronoiSegmentationImageFilterBase itk::VoronoiSegmentationImageFilterBase< TInputImage, TOutputImage, TBinaryPriorImage >::Self |
Standard class typedefs.
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.
Reimplemented in itk::VoronoiSegmentationRGBImageFilter< TInputImage, TOutputImage >, itk::VoronoiSegmentationImageFilter< TInputImage, TOutputImage, TBinaryPriorImage >, and itk::VoronoiPartitioningImageFilter< TInputImage, TOutputImage >.
Definition at line 64 of file itkVoronoiSegmentationImageFilterBase.h.
typedef TInputImage::SizeType itk::VoronoiSegmentationImageFilterBase< TInputImage, TOutputImage, TBinaryPriorImage >::SizeType |
Definition at line 84 of file itkVoronoiSegmentationImageFilterBase.h.
typedef ImageToImageFilter< TInputImage, TOutputImage > itk::VoronoiSegmentationImageFilterBase< TInputImage, TOutputImage, TBinaryPriorImage >::Superclass |
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.
Reimplemented in itk::VoronoiSegmentationImageFilter< TInputImage, TOutputImage, TBinaryPriorImage >, itk::VoronoiSegmentationRGBImageFilter< TInputImage, TOutputImage >, and itk::VoronoiPartitioningImageFilter< TInputImage, TOutputImage >.
Definition at line 65 of file itkVoronoiSegmentationImageFilterBase.h.
typedef Image< unsigned char, 2 > itk::VoronoiSegmentationImageFilterBase< TInputImage, TOutputImage, TBinaryPriorImage >::VDImage |
To output the drawing of Voronoi Diagram (VD) .
Definition at line 110 of file itkVoronoiSegmentationImageFilterBase.h.
typedef VDImage::Pointer itk::VoronoiSegmentationImageFilterBase< TInputImage, TOutputImage, TBinaryPriorImage >::VDImagePointer |
Definition at line 111 of file itkVoronoiSegmentationImageFilterBase.h.
typedef VoronoiDiagram2D< double > itk::VoronoiSegmentationImageFilterBase< TInputImage, TOutputImage, TBinaryPriorImage >::VoronoiDiagram |
Definition at line 91 of file itkVoronoiSegmentationImageFilterBase.h.
typedef VoronoiDiagram2DGenerator< double > itk::VoronoiSegmentationImageFilterBase< TInputImage, TOutputImage, TBinaryPriorImage >::VoronoiDiagramGenerator |
Definition at line 92 of file itkVoronoiSegmentationImageFilterBase.h.
typedef VoronoiDiagram::Pointer itk::VoronoiSegmentationImageFilterBase< TInputImage, TOutputImage, TBinaryPriorImage >::VoronoiPointer |
Definition at line 96 of file itkVoronoiSegmentationImageFilterBase.h.
itk::VoronoiSegmentationImageFilterBase< TInputImage, TOutputImage, TBinaryPriorImage >::VoronoiSegmentationImageFilterBase | ( | ) | [protected] |
itk::VoronoiSegmentationImageFilterBase< TInputImage, TOutputImage, TBinaryPriorImage >::~VoronoiSegmentationImageFilterBase | ( | ) | [protected] |
itk::VoronoiSegmentationImageFilterBase< TInputImage, TOutputImage, TBinaryPriorImage >::VoronoiSegmentationImageFilterBase | ( | const Self & | ) | [private] |
void itk::VoronoiSegmentationImageFilterBase< TInputImage, TOutputImage, TBinaryPriorImage >::BeforeNextStep | ( | void | ) |
virtual void itk::VoronoiSegmentationImageFilterBase< TInputImage, TOutputImage, TBinaryPriorImage >::ClassifyDiagram | ( | void | ) | [protected, virtual] |
Reimplemented in itk::VoronoiPartitioningImageFilter< TInputImage, TOutputImage >.
virtual::itk::LightObject::Pointer itk::VoronoiSegmentationImageFilterBase< TInputImage, TOutputImage, TBinaryPriorImage >::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::Object.
Reimplemented in itk::VoronoiSegmentationRGBImageFilter< TInputImage, TOutputImage >, itk::VoronoiSegmentationImageFilter< TInputImage, TOutputImage, TBinaryPriorImage >, and itk::VoronoiPartitioningImageFilter< TInputImage, TOutputImage >.
void itk::VoronoiSegmentationImageFilterBase< TInputImage, TOutputImage, TBinaryPriorImage >::DrawDiagram | ( | VDImagePointer | result, |
unsigned char | incolor, | ||
unsigned char | outcolor, | ||
unsigned char | boundcolor | ||
) |
Draw the Voronoi Diagram structure.
void itk::VoronoiSegmentationImageFilterBase< TInputImage, TOutputImage, TBinaryPriorImage >::drawLine | ( | PointType | p1, |
PointType | p2 | ||
) | [protected] |
void itk::VoronoiSegmentationImageFilterBase< TInputImage, TOutputImage, TBinaryPriorImage >::drawVDline | ( | VDImagePointer | result, |
PointType | p1, | ||
PointType | p2, | ||
unsigned char | color | ||
) | [protected] |
virtual void itk::VoronoiSegmentationImageFilterBase< TInputImage, TOutputImage, TBinaryPriorImage >::EnlargeOutputRequestedRegion | ( | DataObject * | output | ) | [virtual] |
This filter does not stream and needs to produce the entire output.
Reimplemented from itk::ProcessObject.
void itk::VoronoiSegmentationImageFilterBase< TInputImage, TOutputImage, TBinaryPriorImage >::FillPolygon | ( | PointTypeDeque | vertlist, |
OutputPixelType | color = 1 |
||
) | [protected] |
virtual void itk::VoronoiSegmentationImageFilterBase< TInputImage, TOutputImage, TBinaryPriorImage >::GenerateAddingSeeds | ( | void | ) | [protected, virtual] |
Reimplemented in itk::VoronoiPartitioningImageFilter< TInputImage, TOutputImage >.
void itk::VoronoiSegmentationImageFilterBase< TInputImage, TOutputImage, TBinaryPriorImage >::GenerateData | ( | void | ) | [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.
Reimplemented from itk::ImageSource< TOutputImage >.
virtual void itk::VoronoiSegmentationImageFilterBase< TInputImage, TOutputImage, TBinaryPriorImage >::GenerateInputRequestedRegion | ( | ) | [virtual] |
This filter does not stream and needs the entire image as input.
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.
virtual bool itk::VoronoiSegmentationImageFilterBase< TInputImage, TOutputImage, TBinaryPriorImage >::GetInteractiveSegmentation | ( | ) | const [virtual] |
Output the segmentation on every iteration. Useful for iteractive sessions. The setting of OutputBoundary determines the type of output.
virtual int itk::VoronoiSegmentationImageFilterBase< TInputImage, TOutputImage, TBinaryPriorImage >::GetLastStepSeeds | ( | ) | const [virtual] |
Get the number of seeds before adding new ones.
virtual double itk::VoronoiSegmentationImageFilterBase< TInputImage, TOutputImage, TBinaryPriorImage >::GetMeanDeviation | ( | ) | const [virtual] |
Set/Get the mean deviation.
virtual int itk::VoronoiSegmentationImageFilterBase< TInputImage, TOutputImage, TBinaryPriorImage >::GetMinRegion | ( | ) | const [virtual] |
Set/Get the smallest region to be divided.
virtual const char* itk::VoronoiSegmentationImageFilterBase< TInputImage, TOutputImage, TBinaryPriorImage >::GetNameOfClass | ( | ) | const [virtual] |
Run-time type information (and related methods).
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.
Reimplemented in itk::VoronoiSegmentationImageFilter< TInputImage, TOutputImage, TBinaryPriorImage >, itk::VoronoiSegmentationRGBImageFilter< TInputImage, TOutputImage >, and itk::VoronoiPartitioningImageFilter< TInputImage, TOutputImage >.
virtual int itk::VoronoiSegmentationImageFilterBase< TInputImage, TOutputImage, TBinaryPriorImage >::GetNumberOfSeeds | ( | ) | const [virtual] |
Set/Get the initial number of seeds for VD.
virtual int itk::VoronoiSegmentationImageFilterBase< TInputImage, TOutputImage, TBinaryPriorImage >::GetNumberOfSeedsToAdded | ( | ) | const [virtual] |
Get the number of seeds to add.
virtual bool itk::VoronoiSegmentationImageFilterBase< TInputImage, TOutputImage, TBinaryPriorImage >::GetOutputBoundary | ( | ) | const [virtual] |
Enable the generation of the output boundary.
void itk::VoronoiSegmentationImageFilterBase< TInputImage, TOutputImage, TBinaryPriorImage >::GetPixelIndexFromPolygon | ( | PointTypeDeque | VertList, |
IndexList * | PixelPool | ||
) | [protected] |
PointType itk::VoronoiSegmentationImageFilterBase< TInputImage, TOutputImage, TBinaryPriorImage >::GetSeed | ( | int | SeedID | ) | [inline] |
Get the point specified by the ID given.
Definition at line 207 of file itkVoronoiSegmentationImageFilterBase.h.
virtual SizeType itk::VoronoiSegmentationImageFilterBase< TInputImage, TOutputImage, TBinaryPriorImage >::GetSize | ( | ) | const [virtual] |
Set/Get the region size.
virtual int itk::VoronoiSegmentationImageFilterBase< TInputImage, TOutputImage, TBinaryPriorImage >::GetSteps | ( | ) | const [virtual] |
Set/Get the number of iterations to run (if set to 0: the classification run process runs until no more cells can be divided).
virtual bool itk::VoronoiSegmentationImageFilterBase< TInputImage, TOutputImage, TBinaryPriorImage >::GetUseBackgroundInAPrior | ( | ) | const [virtual] |
VoronoiPointer itk::VoronoiSegmentationImageFilterBase< TInputImage, TOutputImage, TBinaryPriorImage >::GetVoronoiDiagram | ( | void | ) | [inline] |
Return the Voroni Diagram structure.
Definition at line 178 of file itkVoronoiSegmentationImageFilterBase.h.
virtual void itk::VoronoiSegmentationImageFilterBase< TInputImage, TOutputImage, TBinaryPriorImage >::InteractiveSegmentationOff | ( | ) | [virtual] |
Output the segmentation on every iteration. Useful for iteractive sessions. The setting of OutputBoundary determines the type of output.
virtual void itk::VoronoiSegmentationImageFilterBase< TInputImage, TOutputImage, TBinaryPriorImage >::InteractiveSegmentationOn | ( | ) | [virtual] |
Output the segmentation on every iteration. Useful for iteractive sessions. The setting of OutputBoundary determines the type of output.
virtual void itk::VoronoiSegmentationImageFilterBase< TInputImage, TOutputImage, TBinaryPriorImage >::MakeSegmentBoundary | ( | void | ) | [virtual] |
Create the output binary result for boundaries.
Reimplemented in itk::VoronoiPartitioningImageFilter< TInputImage, TOutputImage >.
virtual void itk::VoronoiSegmentationImageFilterBase< TInputImage, TOutputImage, TBinaryPriorImage >::MakeSegmentObject | ( | void | ) | [virtual] |
Reimplemented in itk::VoronoiPartitioningImageFilter< TInputImage, TOutputImage >.
static Pointer itk::VoronoiSegmentationImageFilterBase< TInputImage, TOutputImage, TBinaryPriorImage >::New | ( | ) | [static] |
Method for creation through the object factory.
Reimplemented from itk::Object.
Reimplemented in itk::VoronoiSegmentationRGBImageFilter< TInputImage, TOutputImage >, itk::VoronoiSegmentationImageFilter< TInputImage, TOutputImage, TBinaryPriorImage >, and itk::VoronoiPartitioningImageFilter< TInputImage, TOutputImage >.
void itk::VoronoiSegmentationImageFilterBase< TInputImage, TOutputImage, TBinaryPriorImage >::operator= | ( | const Self & | ) | [private] |
PushBackInput(), PushFronInput() in the public section force the input to be the type expected by an ImageToImageFilter. However, these methods end of "hiding" the versions from the superclass (ProcessObject) whose arguments are DataObjects. Here, we re-expose the versions from ProcessObject to avoid warnings about hiding methods from the superclass.
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.
Reimplemented in itk::VoronoiSegmentationRGBImageFilter< TInputImage, TOutputImage >, itk::VoronoiSegmentationImageFilter< TInputImage, TOutputImage, TBinaryPriorImage >, and itk::VoronoiPartitioningImageFilter< TInputImage, TOutputImage >.
virtual void itk::VoronoiSegmentationImageFilterBase< TInputImage, TOutputImage, TBinaryPriorImage >::PrintSelf | ( | std::ostream & | os, |
Indent | indent | ||
) | const [protected, virtual] |
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::VoronoiSegmentationRGBImageFilter< TInputImage, TOutputImage >, itk::VoronoiSegmentationImageFilter< TInputImage, TOutputImage, TBinaryPriorImage >, and itk::VoronoiPartitioningImageFilter< TInputImage, TOutputImage >.
void itk::VoronoiSegmentationImageFilterBase< TInputImage, TOutputImage, TBinaryPriorImage >::RunSegment | ( | void | ) |
Perform the segmentation.
void itk::VoronoiSegmentationImageFilterBase< TInputImage, TOutputImage, TBinaryPriorImage >::RunSegmentOneStep | ( | void | ) |
Perform the segmentation.
virtual void itk::VoronoiSegmentationImageFilterBase< TInputImage, TOutputImage, TBinaryPriorImage >::SetInteractiveSegmentation | ( | bool | _arg | ) | [virtual] |
Output the segmentation on every iteration. Useful for iteractive sessions. The setting of OutputBoundary determines the type of output.
virtual void itk::VoronoiSegmentationImageFilterBase< TInputImage, TOutputImage, TBinaryPriorImage >::SetMeanDeviation | ( | double | _arg | ) | [virtual] |
Set/Get the mean deviation.
virtual void itk::VoronoiSegmentationImageFilterBase< TInputImage, TOutputImage, TBinaryPriorImage >::SetMinRegion | ( | int | _arg | ) | [virtual] |
Set/Get the smallest region to be divided.
virtual void itk::VoronoiSegmentationImageFilterBase< TInputImage, TOutputImage, TBinaryPriorImage >::SetNumberOfSeeds | ( | int | _arg | ) | [virtual] |
Set/Get the initial number of seeds for VD.
virtual void itk::VoronoiSegmentationImageFilterBase< TInputImage, TOutputImage, TBinaryPriorImage >::SetOutputBoundary | ( | bool | _arg | ) | [virtual] |
Enable the generation of the output boundary.
void itk::VoronoiSegmentationImageFilterBase< TInputImage, TOutputImage, TBinaryPriorImage >::SetSeeds | ( | int | num, |
SeedsIterator | begin | ||
) | [inline] |
Seeds positions are randomly set. If you need to set seeds position then use the SetSeeds method after the InitializeSegment method .
Definition at line 186 of file itkVoronoiSegmentationImageFilterBase.h.
void itk::VoronoiSegmentationImageFilterBase< TInputImage, TOutputImage, TBinaryPriorImage >::SetSeeds | ( | SeedsType & | seeds | ) | [inline] |
Seeds positions are randomly set. If you need to set seeds position then use the SetSeeds method after the InitializeSegment method .
Definition at line 198 of file itkVoronoiSegmentationImageFilterBase.h.
virtual void itk::VoronoiSegmentationImageFilterBase< TInputImage, TOutputImage, TBinaryPriorImage >::SetSize | ( | SizeType | _arg | ) | [virtual] |
Set/Get the region size.
virtual void itk::VoronoiSegmentationImageFilterBase< TInputImage, TOutputImage, TBinaryPriorImage >::SetSteps | ( | int | _arg | ) | [virtual] |
Set/Get the number of iterations to run (if set to 0: the classification run process runs until no more cells can be divided).
virtual void itk::VoronoiSegmentationImageFilterBase< TInputImage, TOutputImage, TBinaryPriorImage >::SetUseBackgroundInAPrior | ( | bool | _arg | ) | [virtual] |
virtual void itk::VoronoiSegmentationImageFilterBase< TInputImage, TOutputImage, TBinaryPriorImage >::TakeAPrior | ( | const BinaryObjectImage * | ) | [inline, virtual] |
Take a prior from other segmentation node. This should be a binary object.
Definition at line 164 of file itkVoronoiSegmentationImageFilterBase.h.
virtual bool itk::VoronoiSegmentationImageFilterBase< TInputImage, TOutputImage, TBinaryPriorImage >::TestHomogeneity | ( | IndexList & | ) | [inline, protected, virtual] |
Definition at line 264 of file itkVoronoiSegmentationImageFilterBase.h.
const unsigned int itk::VoronoiSegmentationImageFilterBase< TInputImage, TOutputImage, TBinaryPriorImage >::ImageDimension = TInputImage::ImageDimension [static] |
Get the image dimension from the template parameter.
Definition at line 77 of file itkVoronoiSegmentationImageFilterBase.h.
bool itk::VoronoiSegmentationImageFilterBase< TInputImage, TOutputImage, TBinaryPriorImage >::m_InteractiveSegmentation [protected] |
Definition at line 246 of file itkVoronoiSegmentationImageFilterBase.h.
std::vector< unsigned char > itk::VoronoiSegmentationImageFilterBase< TInputImage, TOutputImage, TBinaryPriorImage >::m_Label [protected] |
Definition at line 240 of file itkVoronoiSegmentationImageFilterBase.h.
int itk::VoronoiSegmentationImageFilterBase< TInputImage, TOutputImage, TBinaryPriorImage >::m_LastStepSeeds [protected] |
Definition at line 235 of file itkVoronoiSegmentationImageFilterBase.h.
double itk::VoronoiSegmentationImageFilterBase< TInputImage, TOutputImage, TBinaryPriorImage >::m_MeanDeviation [protected] |
Definition at line 242 of file itkVoronoiSegmentationImageFilterBase.h.
int itk::VoronoiSegmentationImageFilterBase< TInputImage, TOutputImage, TBinaryPriorImage >::m_MinRegion [protected] |
Definition at line 233 of file itkVoronoiSegmentationImageFilterBase.h.
int itk::VoronoiSegmentationImageFilterBase< TInputImage, TOutputImage, TBinaryPriorImage >::m_NumberOfBoundary [protected] |
Definition at line 237 of file itkVoronoiSegmentationImageFilterBase.h.
std::vector< int > itk::VoronoiSegmentationImageFilterBase< TInputImage, TOutputImage, TBinaryPriorImage >::m_NumberOfPixels [protected] |
Definition at line 239 of file itkVoronoiSegmentationImageFilterBase.h.
int itk::VoronoiSegmentationImageFilterBase< TInputImage, TOutputImage, TBinaryPriorImage >::m_NumberOfSeeds [protected] |
Definition at line 232 of file itkVoronoiSegmentationImageFilterBase.h.
int itk::VoronoiSegmentationImageFilterBase< TInputImage, TOutputImage, TBinaryPriorImage >::m_NumberOfSeedsToAdded [protected] |
Definition at line 236 of file itkVoronoiSegmentationImageFilterBase.h.
bool itk::VoronoiSegmentationImageFilterBase< TInputImage, TOutputImage, TBinaryPriorImage >::m_OutputBoundary [protected] |
Definition at line 244 of file itkVoronoiSegmentationImageFilterBase.h.
std::vector< PointType > itk::VoronoiSegmentationImageFilterBase< TInputImage, TOutputImage, TBinaryPriorImage >::m_SeedsToAdded [protected] |
Definition at line 252 of file itkVoronoiSegmentationImageFilterBase.h.
SizeType itk::VoronoiSegmentationImageFilterBase< TInputImage, TOutputImage, TBinaryPriorImage >::m_Size [protected] |
Definition at line 231 of file itkVoronoiSegmentationImageFilterBase.h.
int itk::VoronoiSegmentationImageFilterBase< TInputImage, TOutputImage, TBinaryPriorImage >::m_Steps [protected] |
Definition at line 234 of file itkVoronoiSegmentationImageFilterBase.h.
bool itk::VoronoiSegmentationImageFilterBase< TInputImage, TOutputImage, TBinaryPriorImage >::m_UseBackgroundInAPrior [protected] |
Definition at line 243 of file itkVoronoiSegmentationImageFilterBase.h.
VoronoiDiagramGenerator::Pointer itk::VoronoiSegmentationImageFilterBase< TInputImage, TOutputImage, TBinaryPriorImage >::m_VDGenerator [protected] |
Definition at line 250 of file itkVoronoiSegmentationImageFilterBase.h.
VoronoiDiagram::Pointer itk::VoronoiSegmentationImageFilterBase< TInputImage, TOutputImage, TBinaryPriorImage >::m_WorkingVD [protected] |
Definition at line 248 of file itkVoronoiSegmentationImageFilterBase.h.