ITK
4.2.0
Insight Segmentation and Registration Toolkit
|
#include <itkScalarToArrayCastImageFilter.h>
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 |
Additional Inherited Members | |
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 > | |
Protected Types inherited from itk::ImageToImageFilter< TInputImage, TOutputImage > | |
typedef ImageToImageFilterDetail::ImageRegionCopier < itkGetStaticConstMacro(OutputImageDimension), itkGetStaticConstMacro(InputImageDimension) > | InputToOutputRegionCopierType |
typedef ImageToImageFilterDetail::ImageRegionCopier < itkGetStaticConstMacro(InputImageDimension), itkGetStaticConstMacro(OutputImageDimension) > | OutputToInputRegionCopierType |
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.
|
protected |
End concept checking
|
inlineprotectedvirtual |
Definition at line 71 of file itkScalarToArrayCastImageFilter.h.
|
private |
|
virtual |
Standard class macros
Reimplemented from itk::Object.
|
virtual |
Standard class macros
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.
|
static |
Standard class macros
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 |
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 > )