#include <itkVTKImageImport.h>
Inheritance diagram for itk::VTKImageImport< TOutputImage >:
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 55 of file itkVTKImageImport.h.
|
These are function pointer types for the pipeline connection callbacks. Definition at line 93 of file itkVTKImageImport.h. Referenced by itk::VTKImageImport< TOutputImage >::SetOriginCallback(), and itk::VTKImageImport< TOutputImage >::~VTKImageImport(). |
|
These are function pointer types for the pipeline connection callbacks. Definition at line 92 of file itkVTKImageImport.h. Referenced by itk::VTKImageImport< TOutputImage >::SetOriginCallback(), and itk::VTKImageImport< TOutputImage >::~VTKImageImport(). |
|
Compatibility for VTK older than 4.4. Definition at line 98 of file itkVTKImageImport.h. Referenced by itk::VTKImageImport< TOutputImage >::SetSpacingCallback(), and itk::VTKImageImport< TOutputImage >::~VTKImageImport(). |
|
Compatibility for VTK older than 4.4. Definition at line 97 of file itkVTKImageImport.h. Referenced by itk::VTKImageImport< TOutputImage >::~VTKImageImport(). |
|
These are function pointer types for the pipeline connection callbacks. Definition at line 89 of file itkVTKImageImport.h. Referenced by itk::VTKImageImport< TOutputImage >::SetOriginCallback(), and itk::VTKImageImport< TOutputImage >::~VTKImageImport(). |
|
These are function pointer types for the pipeline connection callbacks. Definition at line 87 of file itkVTKImageImport.h. Referenced by itk::VTKImageImport< TOutputImage >::SetSpacingCallback(), and itk::VTKImageImport< TOutputImage >::~VTKImageImport(). |
|
Reimplemented from itk::ImageSource< TOutputImage >. Definition at line 71 of file itkVTKImageImport.h. |
|
Convenient typedefs from the output image. Reimplemented from itk::ImageSource< TOutputImage >. Definition at line 70 of file itkVTKImageImport.h. |
|
Definition at line 74 of file itkVTKImageImport.h. |
|
Definition at line 72 of file itkVTKImageImport.h. |
|
Definition at line 75 of file itkVTKImageImport.h. |
|
Definition at line 73 of file itkVTKImageImport.h. |
|
These are function pointer types for the pipeline connection callbacks. Definition at line 84 of file itkVTKImageImport.h. Referenced by itk::VTKImageImport< TOutputImage >::~VTKImageImport(). |
|
Reimplemented from itk::ImageSource< TOutputImage >. Definition at line 61 of file itkVTKImageImport.h. |
|
These are function pointer types for the pipeline connection callbacks. Definition at line 90 of file itkVTKImageImport.h. Referenced by itk::VTKImageImport< TOutputImage >::SetOriginCallback(), and itk::VTKImageImport< TOutputImage >::~VTKImageImport(). |
|
These are function pointer types for the pipeline connection callbacks. Definition at line 88 of file itkVTKImageImport.h. Referenced by itk::VTKImageImport< TOutputImage >::~VTKImageImport(). |
|
Standard class typedefs. Reimplemented from itk::ImageSource< TOutputImage >. Definition at line 59 of file itkVTKImageImport.h. |
|
These are function pointer types for the pipeline connection callbacks. Definition at line 86 of file itkVTKImageImport.h. Referenced by itk::VTKImageImport< TOutputImage >::~VTKImageImport(). |
|
Reimplemented from itk::ImageSource< TOutputImage >. Definition at line 60 of file itkVTKImageImport.h. |
|
These are function pointer types for the pipeline connection callbacks. Definition at line 91 of file itkVTKImageImport.h. Referenced by itk::VTKImageImport< TOutputImage >::SetOriginCallback(), and itk::VTKImageImport< TOutputImage >::~VTKImageImport(). |
|
These are function pointer types for the pipeline connection callbacks. Definition at line 83 of file itkVTKImageImport.h. |
|
These are function pointer types for the pipeline connection callbacks. Definition at line 85 of file itkVTKImageImport.h. Referenced by itk::VTKImageImport< TOutputImage >::~VTKImageImport(). |
|
|
|
|
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 >. |
|
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. |
|
What to do when receiving BufferPointer(). |
|
Specify callback data. |
|
What to do when receiving DataExtent(). |
|
What to do when receiving SetOrigin(). |
|
What to do when receiving SetSpacing(). |
|
Run-time type information (and related methods). Reimplemented from itk::ImageSource< TOutputImage >. |
|
What to do when receiving SetNumberOfComponents(). |
|
What to do when receiving SetOrigin(). |
|
What to do when receiving PipelineModified(). |
|
What to do when receiving PropagateUpdateExtent(). |
|
What to do when receiving UpdateInformation(). |
|
What to do when receiving SetSpacing(). |
|
What to do when receiving UpdateData(). |
|
What to do when receiving UpdateInformation(). |
|
What to do when receiving SetWholeExtent(). |
|
Specify callback data. |
|
The output image dimension. |
|
Method for creation through the object factory. Reimplemented from itk::Object. |
|
Methods invoked by Print() to print information about the object including superclasses. Typically not called by the user (use Print() instead) but used in the hierarchical print process to combine the output of several classes. Reimplemented from itk::ProcessObject. |
|
Send the requested region information back up the pipeline (to the filters that preceed this one). Reimplemented from itk::ProcessObject. |
|
What to do when receiving BufferPointer(). |
|
What to do when receiving DataExtent(). |
|
What to do when receiving SetOrigin(). |
|
What to do when receiving SetSpacing(). |
|
What to do when receiving SetNumberOfComponents(). |
|
What to do when receiving SetOrigin(). Definition at line 130 of file itkVTKImageImport.h. References itk::VTKImageImport< TOutputImage >::BufferPointerCallbackType, itk::VTKImageImport< TOutputImage >::DataExtentCallbackType, itk::VTKImageImport< TOutputImage >::NumberOfComponentsCallbackType, itk::VTKImageImport< TOutputImage >::PropagateUpdateExtentCallbackType, and itk::VTKImageImport< TOutputImage >::UpdateDataCallbackType. |
|
What to do when receiving SetOrigin(). |
|
What to do when receiving PipelineModified(). |
|
What to do when receiving PropagateUpdateExtent(). |
|
What to do when receiving UpdateInformation(). |
|
What to do when receiving SetSpacing(). Definition at line 121 of file itkVTKImageImport.h. References itk::VTKImageImport< TOutputImage >::FloatOriginCallbackType, and itk::VTKImageImport< TOutputImage >::OriginCallbackType. |
|
What to do when receiving SetSpacing(). |
|
What to do when receiving UpdateData(). |
|
What to do when receiving UpdateInformation(). |
|
What to do when receiving SetWholeExtent(). |
|
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. |