ITK
4.2.0
Insight Segmentation and Registration Toolkit
|
#include <itkLabelImageToLabelMapFilter.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 Public Attributes inherited from itk::ImageToImageFilter< TInputImage, TOutputImage > | |
Static Public Attributes inherited from itk::ImageSource< TOutputImage > |
Private Member Functions | |
LabelImageToLabelMapFilter (const Self &) | |
void | operator= (const Self &) |
Private Attributes | |
OutputImagePixelType | m_BackgroundValue |
std::vector< OutputImagePointer > | m_TemporaryImages |
Additional Inherited Members | |
Protected Types inherited from itk::ImageToImageFilter< TInputImage, TOutputImage > | |
typedef ImageToImageFilterDetail::ImageRegionCopier < itkGetStaticConstMacro(OutputImageDimension), itkGetStaticConstMacro(InputImageDimension) > | InputToOutputRegionCopierType |
typedef ImageToImageFilterDetail::ImageRegionCopier < itkGetStaticConstMacro(InputImageDimension), itkGetStaticConstMacro(OutputImageDimension) > | OutputToInputRegionCopierType |
convert a labeled image to a label collection image
LabelImageToLabelMapFilter converts a label image to a label collection image. The labels are the same in the input and the output image.
This implementation was taken from the Insight Journal paper: http://hdl.handle.net/1926/584 or http://www.insight-journal.org/browse/publication/176
Definition at line 50 of file itkLabelImageToLabelMapFilter.h.
typedef SmartPointer< const Self > itk::LabelImageToLabelMapFilter< TInputImage, TOutputImage >::ConstPointer |
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.
Definition at line 58 of file itkLabelImageToLabelMapFilter.h.
typedef InputImageType::IndexType itk::LabelImageToLabelMapFilter< TInputImage, TOutputImage >::IndexType |
Definition at line 67 of file itkLabelImageToLabelMapFilter.h.
typedef InputImageType::ConstPointer itk::LabelImageToLabelMapFilter< TInputImage, TOutputImage >::InputImageConstPointer |
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.
Definition at line 64 of file itkLabelImageToLabelMapFilter.h.
typedef InputImageType::PixelType itk::LabelImageToLabelMapFilter< TInputImage, TOutputImage >::InputImagePixelType |
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.
Definition at line 66 of file itkLabelImageToLabelMapFilter.h.
typedef InputImageType::Pointer itk::LabelImageToLabelMapFilter< TInputImage, TOutputImage >::InputImagePointer |
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.
Definition at line 63 of file itkLabelImageToLabelMapFilter.h.
typedef InputImageType::RegionType itk::LabelImageToLabelMapFilter< TInputImage, TOutputImage >::InputImageRegionType |
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.
Definition at line 65 of file itkLabelImageToLabelMapFilter.h.
typedef TInputImage itk::LabelImageToLabelMapFilter< TInputImage, TOutputImage >::InputImageType |
Some convenient typedefs.
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.
Definition at line 61 of file itkLabelImageToLabelMapFilter.h.
typedef OutputImageType::LabelObjectType itk::LabelImageToLabelMapFilter< TInputImage, TOutputImage >::LabelObjectType |
Definition at line 73 of file itkLabelImageToLabelMapFilter.h.
typedef LabelObjectType::LengthType itk::LabelImageToLabelMapFilter< TInputImage, TOutputImage >::LengthType |
Definition at line 74 of file itkLabelImageToLabelMapFilter.h.
typedef OutputImageType::ConstPointer itk::LabelImageToLabelMapFilter< TInputImage, TOutputImage >::OutputImageConstPointer |
Definition at line 70 of file itkLabelImageToLabelMapFilter.h.
typedef OutputImageType::PixelType itk::LabelImageToLabelMapFilter< TInputImage, TOutputImage >::OutputImagePixelType |
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.
Definition at line 72 of file itkLabelImageToLabelMapFilter.h.
typedef OutputImageType::Pointer itk::LabelImageToLabelMapFilter< TInputImage, TOutputImage >::OutputImagePointer |
Reimplemented from itk::ImageSource< TOutputImage >.
Definition at line 69 of file itkLabelImageToLabelMapFilter.h.
typedef OutputImageType::RegionType itk::LabelImageToLabelMapFilter< TInputImage, TOutputImage >::OutputImageRegionType |
Superclass typedefs.
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.
Definition at line 71 of file itkLabelImageToLabelMapFilter.h.
typedef TOutputImage itk::LabelImageToLabelMapFilter< TInputImage, TOutputImage >::OutputImageType |
Some convenient typedefs.
Reimplemented from itk::ImageSource< TOutputImage >.
Definition at line 62 of file itkLabelImageToLabelMapFilter.h.
typedef SmartPointer< Self > itk::LabelImageToLabelMapFilter< TInputImage, TOutputImage >::Pointer |
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.
Definition at line 57 of file itkLabelImageToLabelMapFilter.h.
typedef LabelImageToLabelMapFilter itk::LabelImageToLabelMapFilter< TInputImage, TOutputImage >::Self |
Standard class typedefs.
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.
Definition at line 55 of file itkLabelImageToLabelMapFilter.h.
typedef ImageToImageFilter< TInputImage, TOutputImage > itk::LabelImageToLabelMapFilter< TInputImage, TOutputImage >::Superclass |
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.
Definition at line 56 of file itkLabelImageToLabelMapFilter.h.
|
protected |
|
inlineprotected |
Definition at line 104 of file itkLabelImageToLabelMapFilter.h.
|
private |
|
protectedvirtual |
If an imaging filter needs to perform processing after all processing threads have completed, the filter can can provide an implementation for AfterThreadedGenerateData(). The execution flow in the default GenerateData() method will be: 1) Allocate the output buffer 2) Call BeforeThreadedGenerateData() 3) Spawn threads, calling ThreadedGenerateData() in each thread. 4) Call AfterThreadedGenerateData() Note that this flow of control is only available if a filter provides a ThreadedGenerateData() method and NOT a GenerateData() method.
Reimplemented from itk::ImageSource< TOutputImage >.
|
protectedvirtual |
If an imaging filter needs to perform processing after the buffer has been allocated but before threads are spawned, the filter can can provide an implementation for BeforeThreadedGenerateData(). The execution flow in the default GenerateData() method will be: 1) Allocate the output buffer 2) Call BeforeThreadedGenerateData() 3) Spawn threads, calling ThreadedGenerateData() in each thread. 4) Call AfterThreadedGenerateData() Note that this flow of control is only available if a filter provides a ThreadedGenerateData() method and NOT a GenerateData() method.
Reimplemented from itk::ImageSource< TOutputImage >.
|
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.
|
protectedvirtual |
LabelImageToLabelMapFilter will produce the entire output.
Reimplemented from itk::ProcessObject.
|
protectedvirtual |
LabelImageToLabelMapFilter needs the entire input be available. Thus, it needs to provide an implementation of GenerateInputRequestedRegion().
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.
|
virtual |
Set/Get the value used as "background" in the output image. Defaults to NumericTraits<PixelType>::NonpositiveMin().
|
virtual |
Runtime information support.
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.
|
static |
Standard New method.
Reimplemented from itk::Object.
|
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 >.
|
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::ImageToImageFilter< TInputImage, TOutputImage >.
|
virtual |
Set/Get the value used as "background" in the output image. Defaults to NumericTraits<PixelType>::NonpositiveMin().
|
protectedvirtual |
If an imaging filter can be implemented as a multithreaded algorithm, the filter will provide an implementation of ThreadedGenerateData(). This superclass will automatically split the output image into a number of pieces, spawn multiple threads, and call ThreadedGenerateData() in each thread. Prior to spawning threads, the BeforeThreadedGenerateData() method is called. After all the threads have completed, the AfterThreadedGenerateData() method is called. If an image processing filter cannot support threading, that filter should provide an implementation of the GenerateData() method instead of providing an implementation of ThreadedGenerateData(). If a filter provides a GenerateData() method as its implementation, then the filter is responsible for allocating the output data. If a filter provides a ThreadedGenerateData() method as its implementation, then the output memory will allocated automatically by this superclass. The ThreadedGenerateData() method should only produce the output specified by "outputThreadRegion" parameter. ThreadedGenerateData() cannot write to any other portion of the output image (as this is responsibility of a different thread).
Reimplemented from itk::ImageSource< TOutputImage >.
itk::LabelImageToLabelMapFilter< TInputImage, TOutputImage >::typedef | ( | Concept::SameDimension< InputImageDimension, OutputImageDimension > | ) |
This class requires SameDimensionCheck in the form of ( Concept::SameDimension< InputImageDimension, OutputImageDimension > )
|
static |
ImageDimension constants
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.
Definition at line 78 of file itkLabelImageToLabelMapFilter.h.
|
private |
Definition at line 125 of file itkLabelImageToLabelMapFilter.h.
|
private |
Definition at line 127 of file itkLabelImageToLabelMapFilter.h.
|
static |
ImageDimension constants
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.
Definition at line 80 of file itkLabelImageToLabelMapFilter.h.