ITK  4.0.0
Insight Segmentation and Registration Toolkit
Public Types | Public Member Functions | Protected Member Functions | Private Member Functions
itk::ScalarToArrayCastImageFilter< TInputImage, TOutputImage > Class Template Reference

Creates the output image with vector type pixels filled with the intensity values from one or more input images with scalar pixels. More...

#include <itkScalarToArrayCastImageFilter.h>

Inheritance diagram for itk::ScalarToArrayCastImageFilter< TInputImage, TOutputImage >:
Collaboration diagram for itk::ScalarToArrayCastImageFilter< TInputImage, TOutputImage >:

List of all members.

Public Types

typedef SmartPointer< const SelfConstPointer
typedef TOutputImage::PixelType OutputImagePixelType
typedef
Superclass::OutputImageRegionType 
OutputImageRegionType
typedef SmartPointer< SelfPointer
typedef
ScalarToArrayCastImageFilter 
Self
typedef ImageToImageFilter
< TInputImage, TOutputImage > 
Superclass

Public Member Functions

 typedef (Concept::HasNumericTraits< typename OutputImagePixelType::ValueType >) OutputHasNumericTraitsCheck
 typedef (Concept::HasPixelTraits< OutputImagePixelType >) OutputHasPixelTraitsCheck

Protected Member Functions

 ScalarToArrayCastImageFilter ()
void ThreadedGenerateData (const OutputImageRegionType &outputRegionForThread, ThreadIdType threadId)
virtual ~ScalarToArrayCastImageFilter ()

Private Member Functions

void operator= (const Self &)
 ScalarToArrayCastImageFilter (const Self &)
static Pointer New ()
virtual ::itk::LightObject::Pointer CreateAnother (void) const
virtual const char * GetNameOfClass () const

Detailed Description

template<class TInputImage, class TOutputImage>
class itk::ScalarToArrayCastImageFilter< TInputImage, TOutputImage >

Creates the output image with vector type pixels filled with the intensity values from one or more input images with scalar pixels.

This filter is templated over the input image type and output image type. The each dimension of the output image pixel is filled with each input image pixel's scalar pixel value. This filter can be used to cast a scalar image to a vector image if there is only one input image.

Definition at line 42 of file itkScalarToArrayCastImageFilter.h.


Member Typedef Documentation

template<class TInputImage , class TOutputImage >
typedef SmartPointer< const Self > itk::ScalarToArrayCastImageFilter< TInputImage, TOutputImage >::ConstPointer
template<class TInputImage , class TOutputImage >
typedef TOutputImage::PixelType itk::ScalarToArrayCastImageFilter< TInputImage, TOutputImage >::OutputImagePixelType
template<class TInputImage , class TOutputImage >
typedef Superclass::OutputImageRegionType itk::ScalarToArrayCastImageFilter< TInputImage, TOutputImage >::OutputImageRegionType

Superclass typedefs.

Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.

Definition at line 54 of file itkScalarToArrayCastImageFilter.h.

template<class TInputImage , class TOutputImage >
typedef SmartPointer< Self > itk::ScalarToArrayCastImageFilter< TInputImage, TOutputImage >::Pointer
template<class TInputImage , class TOutputImage >
typedef ScalarToArrayCastImageFilter itk::ScalarToArrayCastImageFilter< TInputImage, TOutputImage >::Self

Standard class typedefs.

Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.

Definition at line 47 of file itkScalarToArrayCastImageFilter.h.

template<class TInputImage , class TOutputImage >
typedef ImageToImageFilter< TInputImage, TOutputImage > itk::ScalarToArrayCastImageFilter< TInputImage, TOutputImage >::Superclass

Constructor & Destructor Documentation

template<class TInputImage , class TOutputImage >
itk::ScalarToArrayCastImageFilter< TInputImage, TOutputImage >::ScalarToArrayCastImageFilter ( ) [protected]

End concept checking

template<class TInputImage , class TOutputImage >
virtual itk::ScalarToArrayCastImageFilter< TInputImage, TOutputImage >::~ScalarToArrayCastImageFilter ( ) [inline, protected, virtual]

Definition at line 71 of file itkScalarToArrayCastImageFilter.h.

template<class TInputImage , class TOutputImage >
itk::ScalarToArrayCastImageFilter< TInputImage, TOutputImage >::ScalarToArrayCastImageFilter ( const Self ) [private]

Member Function Documentation

template<class TInputImage , class TOutputImage >
virtual::itk::LightObject::Pointer itk::ScalarToArrayCastImageFilter< TInputImage, TOutputImage >::CreateAnother ( void  ) const [virtual]

Standard class macros

Reimplemented from itk::Object.

template<class TInputImage , class TOutputImage >
virtual const char* itk::ScalarToArrayCastImageFilter< TInputImage, TOutputImage >::GetNameOfClass ( ) const [virtual]

Standard class macros

Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.

template<class TInputImage , class TOutputImage >
static Pointer itk::ScalarToArrayCastImageFilter< TInputImage, TOutputImage >::New ( ) [static]

Standard class macros

Reimplemented from itk::Object.

template<class TInputImage , class TOutputImage >
void itk::ScalarToArrayCastImageFilter< TInputImage, TOutputImage >::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 >.

template<class TInputImage , class TOutputImage >
void itk::ScalarToArrayCastImageFilter< TInputImage, TOutputImage >::ThreadedGenerateData ( const OutputImageRegionType outputRegionForThread,
ThreadIdType  threadId 
) [protected, virtual]

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).

See also:
GenerateData(), SplitRequestedRegion()

Reimplemented from itk::ImageSource< TOutputImage >.

template<class TInputImage , class TOutputImage >
itk::ScalarToArrayCastImageFilter< TInputImage, TOutputImage >::typedef ( Concept::HasPixelTraits< OutputImagePixelType )

This class requires OutputHasPixelTraitsCheck in the form of ( Concept::HasPixelTraits< OutputImagePixelType > )

template<class TInputImage , class TOutputImage >
itk::ScalarToArrayCastImageFilter< TInputImage, TOutputImage >::typedef ( Concept::HasNumericTraits< typename OutputImagePixelType::ValueType >  )

Begin concept checking This class requires OutputHasNumericTraitsCheck in the form of ( Concept::HasNumericTraits< typename OutputImagePixelType::ValueType > )


The documentation for this class was generated from the following file: