ITK
4.1.0
Insight Segmentation and Registration Toolkit
|
#include <itkVTKImageImport.h>
Connect the end of an VTK pipeline to an ITK image pipeline.
VTKImageImport can be used at the beginning of an ITK image pipeline to connect with a VTK pipeline that ends with vtkImageExport. Callbacks provided by VTKImageImport are registered with vtkImageExport to connect the pipeline execution together. Once connected, update requests coming through the ITK pipeline are automatically propagated to the VTK pipeline.
Note that the VTK images are assumed to be of 1, 2, or 3 dimensions. Scalar value types can be one of: float, double, char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long. The images must have pixel types with one component.
Definition at line 56 of file itkVTKImageImport.h.
typedef void*( * itk::VTKImageImport< TOutputImage >::BufferPointerCallbackType)(void *) |
These are function pointer types for the pipeline connection callbacks.
Definition at line 94 of file itkVTKImageImport.h.
typedef int*( * itk::VTKImageImport< TOutputImage >::DataExtentCallbackType)(void *) |
These are function pointer types for the pipeline connection callbacks.
Definition at line 93 of file itkVTKImageImport.h.
typedef float*( * itk::VTKImageImport< TOutputImage >::FloatOriginCallbackType)(void *) |
Compatibility for VTK older than 4.4.
Definition at line 99 of file itkVTKImageImport.h.
typedef float*( * itk::VTKImageImport< TOutputImage >::FloatSpacingCallbackType)(void *) |
Compatibility for VTK older than 4.4.
Definition at line 98 of file itkVTKImageImport.h.
typedef int( * itk::VTKImageImport< TOutputImage >::NumberOfComponentsCallbackType)(void *) |
These are function pointer types for the pipeline connection callbacks.
Definition at line 90 of file itkVTKImageImport.h.
typedef double*( * itk::VTKImageImport< TOutputImage >::OriginCallbackType)(void *) |
These are function pointer types for the pipeline connection callbacks.
Definition at line 88 of file itkVTKImageImport.h.
typedef OutputImageType::Pointer itk::VTKImageImport< TOutputImage >::OutputImagePointer |
Reimplemented from itk::ImageSource< TOutputImage >.
Definition at line 72 of file itkVTKImageImport.h.
typedef TOutputImage itk::VTKImageImport< TOutputImage >::OutputImageType |
Convenient typedefs from the output image.
Reimplemented from itk::ImageSource< TOutputImage >.
Definition at line 68 of file itkVTKImageImport.h.
typedef OutputImageType::IndexType itk::VTKImageImport< TOutputImage >::OutputIndexType |
Definition at line 75 of file itkVTKImageImport.h.
typedef OutputImageType::PixelType itk::VTKImageImport< TOutputImage >::OutputPixelType |
Definition at line 73 of file itkVTKImageImport.h.
typedef OutputImageType::RegionType itk::VTKImageImport< TOutputImage >::OutputRegionType |
Definition at line 76 of file itkVTKImageImport.h.
typedef OutputImageType::SizeType itk::VTKImageImport< TOutputImage >::OutputSizeType |
Definition at line 74 of file itkVTKImageImport.h.
typedef int( * itk::VTKImageImport< TOutputImage >::PipelineModifiedCallbackType)(void *) |
These are function pointer types for the pipeline connection callbacks.
Definition at line 85 of file itkVTKImageImport.h.
typedef SmartPointer< Self > itk::VTKImageImport< TOutputImage >::Pointer |
Reimplemented from itk::ImageSource< TOutputImage >.
Definition at line 62 of file itkVTKImageImport.h.
typedef void( * itk::VTKImageImport< TOutputImage >::PropagateUpdateExtentCallbackType)(void *, int *) |
These are function pointer types for the pipeline connection callbacks.
Definition at line 91 of file itkVTKImageImport.h.
typedef const char*( * itk::VTKImageImport< TOutputImage >::ScalarTypeCallbackType)(void *) |
These are function pointer types for the pipeline connection callbacks.
Definition at line 89 of file itkVTKImageImport.h.
typedef VTKImageImport itk::VTKImageImport< TOutputImage >::Self |
Standard class typedefs.
Reimplemented from itk::ImageSource< TOutputImage >.
Definition at line 60 of file itkVTKImageImport.h.
typedef double*( * itk::VTKImageImport< TOutputImage >::SpacingCallbackType)(void *) |
These are function pointer types for the pipeline connection callbacks.
Definition at line 87 of file itkVTKImageImport.h.
typedef ImageSource< TOutputImage > itk::VTKImageImport< TOutputImage >::Superclass |
Reimplemented from itk::ImageSource< TOutputImage >.
Definition at line 61 of file itkVTKImageImport.h.
typedef void( * itk::VTKImageImport< TOutputImage >::UpdateDataCallbackType)(void *) |
These are function pointer types for the pipeline connection callbacks.
Definition at line 92 of file itkVTKImageImport.h.
typedef void( * itk::VTKImageImport< TOutputImage >::UpdateInformationCallbackType)(void *) |
These are function pointer types for the pipeline connection callbacks.
Definition at line 84 of file itkVTKImageImport.h.
typedef int*( * itk::VTKImageImport< TOutputImage >::WholeExtentCallbackType)(void *) |
These are function pointer types for the pipeline connection callbacks.
Definition at line 86 of file itkVTKImageImport.h.
itk::VTKImageImport< TOutputImage >::VTKImageImport | ( | ) | [protected] |
Specify callback data.
itk::VTKImageImport< TOutputImage >::~VTKImageImport | ( | ) | [inline, protected] |
Specify callback data.
Definition at line 170 of file itkVTKImageImport.h.
itk::VTKImageImport< TOutputImage >::VTKImageImport | ( | const Self & | ) | [private] |
virtual::itk::LightObject::Pointer itk::VTKImageImport< TOutputImage >::CreateAnother | ( | void | ) | const [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.
virtual void itk::VTKImageImport< TOutputImage >::GenerateData | ( | ) | [protected, virtual] |
A version of GenerateData() specific for image processing filters. This implementation will split the processing across multiple threads. The buffer is allocated by this method. Then the BeforeThreadedGenerateData() method is called (if provided). Then, a series of threads are spawned each calling ThreadedGenerateData(). After all the threads have completed processing, the AfterThreadedGenerateData() method is called (if provided). If an image processing filter cannot be threaded, the filter should provide an implementation of GenerateData(). That implementation is responsible for allocating the output buffer. If a filter an be threaded, it should NOT provide a GenerateData() method but should provide a ThreadedGenerateData() instead.
Reimplemented from itk::ImageSource< TOutputImage >.
virtual void itk::VTKImageImport< TOutputImage >::GenerateOutputInformation | ( | ) | [protected, virtual] |
Generate the information decribing 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 BufferPointerCallbackType itk::VTKImageImport< TOutputImage >::GetBufferPointerCallback | ( | ) | const [virtual] |
What to do when receiving BufferPointer().
virtual void* itk::VTKImageImport< TOutputImage >::GetCallbackUserData | ( | ) | const [virtual] |
Specify callback data.
virtual DataExtentCallbackType itk::VTKImageImport< TOutputImage >::GetDataExtentCallback | ( | ) | const [virtual] |
What to do when receiving DataExtent().
virtual FloatOriginCallbackType itk::VTKImageImport< TOutputImage >::GetFloatOriginCallback | ( | ) | const [virtual] |
What to do when receiving SetOrigin().
virtual FloatSpacingCallbackType itk::VTKImageImport< TOutputImage >::GetFloatSpacingCallback | ( | ) | const [virtual] |
What to do when receiving SetSpacing().
virtual const char* itk::VTKImageImport< TOutputImage >::GetNameOfClass | ( | ) | const [virtual] |
Run-time type information (and related methods).
Reimplemented from itk::ImageSource< TOutputImage >.
virtual NumberOfComponentsCallbackType itk::VTKImageImport< TOutputImage >::GetNumberOfComponentsCallback | ( | ) | const [virtual] |
What to do when receiving SetNumberOfComponents().
virtual OriginCallbackType itk::VTKImageImport< TOutputImage >::GetOriginCallback | ( | ) | const [virtual] |
What to do when receiving SetOrigin().
virtual PipelineModifiedCallbackType itk::VTKImageImport< TOutputImage >::GetPipelineModifiedCallback | ( | ) | const [virtual] |
What to do when receiving PipelineModified().
virtual PropagateUpdateExtentCallbackType itk::VTKImageImport< TOutputImage >::GetPropagateUpdateExtentCallback | ( | ) | const [virtual] |
What to do when receiving PropagateUpdateExtent().
virtual ScalarTypeCallbackType itk::VTKImageImport< TOutputImage >::GetScalarTypeCallback | ( | ) | const [virtual] |
What to do when receiving UpdateInformation().
virtual SpacingCallbackType itk::VTKImageImport< TOutputImage >::GetSpacingCallback | ( | ) | const [virtual] |
What to do when receiving SetSpacing().
virtual UpdateDataCallbackType itk::VTKImageImport< TOutputImage >::GetUpdateDataCallback | ( | ) | const [virtual] |
What to do when receiving UpdateData().
virtual UpdateInformationCallbackType itk::VTKImageImport< TOutputImage >::GetUpdateInformationCallback | ( | ) | const [virtual] |
What to do when receiving UpdateInformation().
virtual WholeExtentCallbackType itk::VTKImageImport< TOutputImage >::GetWholeExtentCallback | ( | ) | const [virtual] |
What to do when receiving SetWholeExtent().
itk::VTKImageImport< TOutputImage >::itkSetMacro2 | ( | CallbackUserData | , |
void * | |||
) |
Specify callback data.
static Pointer itk::VTKImageImport< TOutputImage >::New | ( | ) | [static] |
Method for creation through the object factory.
Reimplemented from itk::Object.
void itk::VTKImageImport< TOutputImage >::operator= | ( | const Self & | ) | [private] |
Reimplemented from itk::ImageSource< TOutputImage >.
void itk::VTKImageImport< TOutputImage >::PrintSelf | ( | std::ostream & | os, |
Indent | indent | ||
) | const [protected, virtual] |
Specify callback data.
Reimplemented from itk::ProcessObject.
virtual void itk::VTKImageImport< TOutputImage >::PropagateRequestedRegion | ( | DataObject * | output | ) | [protected, virtual] |
Send the requested region information back up the pipeline (to the filters that preceed this one).
Reimplemented from itk::ProcessObject.
virtual void itk::VTKImageImport< TOutputImage >::SetBufferPointerCallback | ( | BufferPointerCallbackType | _arg | ) | [virtual] |
What to do when receiving BufferPointer().
virtual void itk::VTKImageImport< TOutputImage >::SetDataExtentCallback | ( | DataExtentCallbackType | _arg | ) | [virtual] |
What to do when receiving DataExtent().
virtual void itk::VTKImageImport< TOutputImage >::SetFloatOriginCallback | ( | FloatOriginCallbackType | _arg | ) | [virtual] |
What to do when receiving SetOrigin().
virtual void itk::VTKImageImport< TOutputImage >::SetFloatSpacingCallback | ( | FloatSpacingCallbackType | _arg | ) | [virtual] |
What to do when receiving SetSpacing().
virtual void itk::VTKImageImport< TOutputImage >::SetNumberOfComponentsCallback | ( | NumberOfComponentsCallbackType | _arg | ) | [virtual] |
What to do when receiving SetNumberOfComponents().
virtual void itk::VTKImageImport< TOutputImage >::SetOriginCallback | ( | OriginCallbackType | _arg | ) | [virtual] |
What to do when receiving SetOrigin().
void itk::VTKImageImport< TOutputImage >::SetOriginCallback | ( | FloatOriginCallbackType | f | ) | [inline] |
What to do when receiving SetOrigin().
Definition at line 131 of file itkVTKImageImport.h.
virtual void itk::VTKImageImport< TOutputImage >::SetPipelineModifiedCallback | ( | PipelineModifiedCallbackType | _arg | ) | [virtual] |
What to do when receiving PipelineModified().
virtual void itk::VTKImageImport< TOutputImage >::SetPropagateUpdateExtentCallback | ( | PropagateUpdateExtentCallbackType | _arg | ) | [virtual] |
What to do when receiving PropagateUpdateExtent().
virtual void itk::VTKImageImport< TOutputImage >::SetScalarTypeCallback | ( | ScalarTypeCallbackType | _arg | ) | [virtual] |
What to do when receiving UpdateInformation().
virtual void itk::VTKImageImport< TOutputImage >::SetSpacingCallback | ( | SpacingCallbackType | _arg | ) | [virtual] |
What to do when receiving SetSpacing().
void itk::VTKImageImport< TOutputImage >::SetSpacingCallback | ( | FloatSpacingCallbackType | f | ) | [inline] |
What to do when receiving SetSpacing().
Definition at line 122 of file itkVTKImageImport.h.
virtual void itk::VTKImageImport< TOutputImage >::SetUpdateDataCallback | ( | UpdateDataCallbackType | _arg | ) | [virtual] |
What to do when receiving UpdateData().
virtual void itk::VTKImageImport< TOutputImage >::SetUpdateInformationCallback | ( | UpdateInformationCallbackType | _arg | ) | [virtual] |
What to do when receiving UpdateInformation().
virtual void itk::VTKImageImport< TOutputImage >::SetWholeExtentCallback | ( | WholeExtentCallbackType | _arg | ) | [virtual] |
What to do when receiving SetWholeExtent().
virtual void itk::VTKImageImport< TOutputImage >::UpdateOutputInformation | ( | ) | [protected, virtual] |
Update the information decribing the output data. This method transverses up the pipeline gathering modified time information. On the way back down the pipeline, this method calls GenerateOutputInformation() to set any necessary information about the output data objects. For instance, a filter that shrinks an image will need to provide an implementation for GenerateOutputInformation() that changes the spacing of the pixels. Such filters should call their superclass' implementation of GenerateOutputInformation prior to changing the information values they need (i.e. GenerateOutputInformation() should call Superclass::GenerateOutputInformation() prior to changing the information.
Reimplemented from itk::ProcessObject.
BufferPointerCallbackType itk::VTKImageImport< TOutputImage >::m_BufferPointerCallback [private] |
Definition at line 199 of file itkVTKImageImport.h.
void* itk::VTKImageImport< TOutputImage >::m_CallbackUserData [private] |
Definition at line 186 of file itkVTKImageImport.h.
DataExtentCallbackType itk::VTKImageImport< TOutputImage >::m_DataExtentCallback [private] |
Definition at line 198 of file itkVTKImageImport.h.
FloatOriginCallbackType itk::VTKImageImport< TOutputImage >::m_FloatOriginCallback [private] |
Definition at line 193 of file itkVTKImageImport.h.
FloatSpacingCallbackType itk::VTKImageImport< TOutputImage >::m_FloatSpacingCallback [private] |
Definition at line 191 of file itkVTKImageImport.h.
NumberOfComponentsCallbackType itk::VTKImageImport< TOutputImage >::m_NumberOfComponentsCallback [private] |
Definition at line 195 of file itkVTKImageImport.h.
OriginCallbackType itk::VTKImageImport< TOutputImage >::m_OriginCallback [private] |
Definition at line 192 of file itkVTKImageImport.h.
PipelineModifiedCallbackType itk::VTKImageImport< TOutputImage >::m_PipelineModifiedCallback [private] |
Definition at line 188 of file itkVTKImageImport.h.
PropagateUpdateExtentCallbackType itk::VTKImageImport< TOutputImage >::m_PropagateUpdateExtentCallback [private] |
Definition at line 196 of file itkVTKImageImport.h.
ScalarTypeCallbackType itk::VTKImageImport< TOutputImage >::m_ScalarTypeCallback [private] |
Definition at line 194 of file itkVTKImageImport.h.
std::string itk::VTKImageImport< TOutputImage >::m_ScalarTypeName [private] |
Definition at line 201 of file itkVTKImageImport.h.
SpacingCallbackType itk::VTKImageImport< TOutputImage >::m_SpacingCallback [private] |
Definition at line 190 of file itkVTKImageImport.h.
UpdateDataCallbackType itk::VTKImageImport< TOutputImage >::m_UpdateDataCallback [private] |
Definition at line 197 of file itkVTKImageImport.h.
UpdateInformationCallbackType itk::VTKImageImport< TOutputImage >::m_UpdateInformationCallback [private] |
Definition at line 187 of file itkVTKImageImport.h.
WholeExtentCallbackType itk::VTKImageImport< TOutputImage >::m_WholeExtentCallback [private] |
Definition at line 189 of file itkVTKImageImport.h.
const unsigned int itk::VTKImageImport< TOutputImage >::OutputImageDimension = OutputImageType::ImageDimension [static] |
The output image dimension.
Reimplemented from itk::ImageSource< TOutputImage >.
Definition at line 80 of file itkVTKImageImport.h.