ITK
4.3.0
Insight Segmentation and Registration Toolkit
|
#include <itkPhysicalPointImageSource.h>
Generate an image of the physical locations of each pixel.
This image source supports image which have a multi-component pixel equal to the image dimension, and variable length VectorImages. It is recommented that the component type be a real valued type.
Definition at line 38 of file itkPhysicalPointImageSource.h.
Public Types | |
typedef SmartPointer< const Self > | ConstPointer |
typedef OutputImageType::DirectionType | DirectionType |
typedef TOutputImage | OutputImageType |
typedef OutputImageType::PixelType | PixelType |
typedef SmartPointer< Self > | Pointer |
typedef OutputImageType::PointType | PointType |
typedef OutputImageType::RegionType | RegionType |
typedef PhysicalPointImageSource | Self |
typedef RegionType::SizeType | SizeType |
typedef OutputImageType::SpacingType | SpacingType |
typedef GenerateImageSource < TOutputImage > | Superclass |
Public Types inherited from itk::GenerateImageSource< TOutputImage > | |
typedef SmartPointer< const Self > | ConstPointer |
typedef OutputImageType::DirectionType | DirectionType |
typedef TOutputImage | OutputImageType |
typedef OutputImageType::PixelType | PixelType |
typedef SmartPointer< Self > | Pointer |
typedef OutputImageType::PointType | PointType |
typedef OutputImageType::RegionType | RegionType |
typedef GenerateImageSource | Self |
typedef TOutputImage::SizeType | SizeType |
typedef TOutputImage::SizeValueType | SizeValueType |
typedef OutputImageType::SpacingType | SpacingType |
typedef ImageSource< TOutputImage > | Superclass |
Public Types inherited from itk::ImageSource< TOutputImage > | |
typedef SmartPointer< const Self > | ConstPointer |
typedef Superclass::DataObjectIdentifierType | DataObjectIdentifierType |
typedef DataObject::Pointer | DataObjectPointer |
typedef Superclass::DataObjectPointerArraySizeType | DataObjectPointerArraySizeType |
typedef OutputImageType::PixelType | OutputImagePixelType |
typedef OutputImageType::Pointer | OutputImagePointer |
typedef OutputImageType::RegionType | OutputImageRegionType |
typedef TOutputImage | OutputImageType |
typedef SmartPointer< Self > | Pointer |
typedef ImageSource | Self |
typedef ProcessObject | Superclass |
Public Types inherited from itk::ProcessObject | |
typedef SmartPointer< const Self > | ConstPointer |
typedef DataObject::DataObjectIdentifierType | DataObjectIdentifierType |
typedef DataObject::Pointer | DataObjectPointer |
typedef std::vector < DataObjectPointer > | DataObjectPointerArray |
typedef DataObjectPointerArray::size_type | DataObjectPointerArraySizeType |
typedef std::vector < DataObjectIdentifierType > | NameArray |
typedef SmartPointer< Self > | Pointer |
typedef ProcessObject | Self |
typedef Object | Superclass |
Public Types inherited from itk::Object | |
typedef SmartPointer< const Self > | ConstPointer |
typedef SmartPointer< Self > | Pointer |
typedef Object | Self |
typedef LightObject | Superclass |
Public Types inherited from itk::LightObject | |
typedef SmartPointer< const Self > | ConstPointer |
typedef SmartPointer< Self > | Pointer |
typedef LightObject | Self |
Static Public Member Functions | |
static Pointer | New () |
Private Member Functions | |
void | operator= (const PhysicalPointImageSource &) |
PhysicalPointImageSource (const PhysicalPointImageSource &) | |
Additional Inherited Members | |
Static Public Attributes inherited from itk::GenerateImageSource< TOutputImage > | |
static const unsigned int | NDimensions = TOutputImage::ImageDimension |
Protected Types inherited from itk::LightObject | |
typedef int | InternalReferenceCountType |
Static Protected Member Functions inherited from itk::ImageSource< TOutputImage > | |
static ITK_THREAD_RETURN_TYPE | ThreaderCallback (void *arg) |
Protected Attributes inherited from itk::ProcessObject | |
TimeStamp | m_OutputInformationMTime |
bool | m_Updating |
typedef SmartPointer< const Self> itk::PhysicalPointImageSource< TOutputImage >::ConstPointer |
Definition at line 45 of file itkPhysicalPointImageSource.h.
typedef OutputImageType::DirectionType itk::PhysicalPointImageSource< TOutputImage >::DirectionType |
Definition at line 53 of file itkPhysicalPointImageSource.h.
typedef TOutputImage itk::PhysicalPointImageSource< TOutputImage >::OutputImageType |
Output image typedefs
Definition at line 48 of file itkPhysicalPointImageSource.h.
typedef OutputImageType::PixelType itk::PhysicalPointImageSource< TOutputImage >::PixelType |
Definition at line 49 of file itkPhysicalPointImageSource.h.
typedef SmartPointer< Self > itk::PhysicalPointImageSource< TOutputImage >::Pointer |
Definition at line 44 of file itkPhysicalPointImageSource.h.
typedef OutputImageType::PointType itk::PhysicalPointImageSource< TOutputImage >::PointType |
Definition at line 52 of file itkPhysicalPointImageSource.h.
typedef OutputImageType::RegionType itk::PhysicalPointImageSource< TOutputImage >::RegionType |
Definition at line 50 of file itkPhysicalPointImageSource.h.
typedef PhysicalPointImageSource itk::PhysicalPointImageSource< TOutputImage >::Self |
Definition at line 42 of file itkPhysicalPointImageSource.h.
typedef RegionType::SizeType itk::PhysicalPointImageSource< TOutputImage >::SizeType |
Definition at line 56 of file itkPhysicalPointImageSource.h.
typedef OutputImageType::SpacingType itk::PhysicalPointImageSource< TOutputImage >::SpacingType |
Definition at line 51 of file itkPhysicalPointImageSource.h.
typedef GenerateImageSource< TOutputImage > itk::PhysicalPointImageSource< TOutputImage >::Superclass |
Definition at line 43 of file itkPhysicalPointImageSource.h.
|
inlineprotected |
Definition at line 65 of file itkPhysicalPointImageSource.h.
|
private |
|
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::GenerateImageSource< TOutputImage >.
|
virtual |
Run-time type information (and related methods).
Reimplemented from itk::GenerateImageSource< TOutputImage >.
|
static |
Method for creation through the object factory.
|
private |
|
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 >.