ITK
4.1.0
Insight Segmentation and Registration Toolkit
|
#include <itkScalarToArrayCastImageFilter.h>
Public Types | |
typedef SmartPointer< const Self > | ConstPointer |
typedef TOutputImage::PixelType | OutputImagePixelType |
typedef Superclass::OutputImageRegionType | OutputImageRegionType |
typedef SmartPointer< Self > | Pointer |
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 |
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.
typedef SmartPointer< const Self > itk::ScalarToArrayCastImageFilter< TInputImage, TOutputImage >::ConstPointer |
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.
Definition at line 50 of file itkScalarToArrayCastImageFilter.h.
typedef TOutputImage::PixelType itk::ScalarToArrayCastImageFilter< TInputImage, TOutputImage >::OutputImagePixelType |
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.
Definition at line 58 of file itkScalarToArrayCastImageFilter.h.
typedef Superclass::OutputImageRegionType itk::ScalarToArrayCastImageFilter< TInputImage, TOutputImage >::OutputImageRegionType |
Superclass typedefs.
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.
Definition at line 54 of file itkScalarToArrayCastImageFilter.h.
typedef SmartPointer< Self > itk::ScalarToArrayCastImageFilter< TInputImage, TOutputImage >::Pointer |
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.
Definition at line 49 of file itkScalarToArrayCastImageFilter.h.
typedef ScalarToArrayCastImageFilter itk::ScalarToArrayCastImageFilter< TInputImage, TOutputImage >::Self |
Standard class typedefs.
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.
Definition at line 47 of file itkScalarToArrayCastImageFilter.h.
typedef ImageToImageFilter< TInputImage, TOutputImage > itk::ScalarToArrayCastImageFilter< TInputImage, TOutputImage >::Superclass |
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.
Definition at line 48 of file itkScalarToArrayCastImageFilter.h.
itk::ScalarToArrayCastImageFilter< TInputImage, TOutputImage >::ScalarToArrayCastImageFilter | ( | ) | [protected] |
End concept checking
virtual itk::ScalarToArrayCastImageFilter< TInputImage, TOutputImage >::~ScalarToArrayCastImageFilter | ( | ) | [inline, protected, virtual] |
Definition at line 71 of file itkScalarToArrayCastImageFilter.h.
itk::ScalarToArrayCastImageFilter< TInputImage, TOutputImage >::ScalarToArrayCastImageFilter | ( | const Self & | ) | [private] |
virtual::itk::LightObject::Pointer itk::ScalarToArrayCastImageFilter< TInputImage, TOutputImage >::CreateAnother | ( | void | ) | const [virtual] |
Standard class macros
Reimplemented from itk::Object.
virtual const char* itk::ScalarToArrayCastImageFilter< TInputImage, TOutputImage >::GetNameOfClass | ( | ) | const [virtual] |
Standard class macros
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.
static Pointer itk::ScalarToArrayCastImageFilter< TInputImage, TOutputImage >::New | ( | ) | [static] |
Standard class macros
Reimplemented from itk::Object.
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 >.
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).
Reimplemented from itk::ImageSource< 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 > )
itk::ScalarToArrayCastImageFilter< TInputImage, TOutputImage >::typedef | ( | Concept::HasPixelTraits< OutputImagePixelType > | ) |
This class requires OutputHasPixelTraitsCheck in the form of ( Concept::HasPixelTraits< OutputImagePixelType > )