ITK
4.2.0
Insight Segmentation and Registration Toolkit
|
#include <itkComposeImageFilter.h>
Static Public Member Functions | |
static Pointer | New () |
Static Public Attributes | |
static const unsigned int | Dimension = 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 > |
Private Types | |
typedef std::vector < InputIteratorType > | InputIteratorContainerType |
typedef ImageRegionConstIterator < InputImageType > | InputIteratorType |
Private Member Functions | |
ComposeImageFilter (const Self &) | |
template<class T > | |
void | ComputeOutputPixel (std::complex< T > &pix, InputIteratorContainerType &inputItContainer) |
template<class TPixel > | |
void | ComputeOutputPixel (TPixel &pix, InputIteratorContainerType &inputItContainer) |
void | operator= (const Self &) |
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 |
ComposeImageFilter combine several scalar images into a multicomponent image.
ComposeImageFilter combine several scalar images into an itk::Image of vector pixel (itk::Vector, itk::RGBPixel, ...), of std::complex pixel, or in an itk::VectorImage.
Definition at line 57 of file itkComposeImageFilter.h.
typedef SmartPointer< const Self > itk::ComposeImageFilter< TInputImage, TOutputImage >::ConstPointer |
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.
Definition at line 64 of file itkComposeImageFilter.h.
typedef TInputImage itk::ComposeImageFilter< TInputImage, TOutputImage >::InputImageType |
Some convenient typedefs.
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.
Definition at line 71 of file itkComposeImageFilter.h.
|
private |
Definition at line 105 of file itkComposeImageFilter.h.
|
private |
Definition at line 104 of file itkComposeImageFilter.h.
typedef InputImageType::PixelType itk::ComposeImageFilter< TInputImage, TOutputImage >::InputPixelType |
Definition at line 73 of file itkComposeImageFilter.h.
typedef TOutputImage itk::ComposeImageFilter< TInputImage, TOutputImage >::OutputImageType |
Some convenient typedefs.
Reimplemented from itk::ImageSource< TOutputImage >.
Definition at line 72 of file itkComposeImageFilter.h.
typedef OutputImageType::PixelType itk::ComposeImageFilter< TInputImage, TOutputImage >::OutputPixelType |
Definition at line 74 of file itkComposeImageFilter.h.
typedef SmartPointer< Self > itk::ComposeImageFilter< TInputImage, TOutputImage >::Pointer |
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.
Definition at line 63 of file itkComposeImageFilter.h.
typedef InputImageType::RegionType itk::ComposeImageFilter< TInputImage, TOutputImage >::RegionType |
Definition at line 75 of file itkComposeImageFilter.h.
typedef ComposeImageFilter itk::ComposeImageFilter< TInputImage, TOutputImage >::Self |
Standard class typedefs.
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.
Definition at line 62 of file itkComposeImageFilter.h.
typedef ImageToImageFilter< TInputImage, TOutputImage > itk::ComposeImageFilter< TInputImage, TOutputImage >::Superclass |
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.
Definition at line 65 of file itkComposeImageFilter.h.
|
protected |
End concept checking
|
private |
|
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 >.
|
inlineprivate |
Definition at line 108 of file itkComposeImageFilter.h.
|
inlineprivate |
Definition at line 115 of file itkComposeImageFilter.h.
|
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 |
Generate the information describing the output data. The default implementation of this method will copy information from the input to the output. A filter may override this method if its output will have different information than its input. For instance, a filter that shrinks an image will need to provide an implementation for this method that changes the spacing of the pixels. Such filters should call their superclass' implementation of this method prior to changing the information values they need (i.e. GenerateOutputInformation() should call Superclass::GenerateOutputInformation() prior to changing the information.
Reimplemented from itk::ProcessObject.
|
virtual |
Run-time type information (and related methods).
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.
|
static |
Method for creation through the object factory.
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 >.
void itk::ComposeImageFilter< TInputImage, TOutputImage >::SetInput1 | ( | const InputImageType * | image1 | ) |
void itk::ComposeImageFilter< TInputImage, TOutputImage >::SetInput2 | ( | const InputImageType * | image2 | ) |
void itk::ComposeImageFilter< TInputImage, TOutputImage >::SetInput3 | ( | const InputImageType * | image3 | ) |
|
protectedvirtual |
itk::ComposeImageFilter< TInputImage, TOutputImage >::typedef | ( | Concept::Convertible< InputPixelType, typename NumericTraits< OutputPixelType >::ValueType > | ) |
Begin concept checking This class requires InputCovertibleToOutputCheck in the form of ( Concept::Convertible< InputPixelType, typename NumericTraits<OutputPixelType>::ValueType > )
|
static |
Definition at line 69 of file itkComposeImageFilter.h.