Slicer
5.1
Slicer is a multi-platform, free and open source software package for visualization and medical image computing
|
#include "vtkObjectFactory.h"
#include "vtkSetGet.h"
Go to the source code of this file.
Macros | |
#define | DelegateGetMacro(name) DelegateITKOutputMacro (Get##name) |
#define | DelegateITKInputMacro(name, arg) |
#define | DelegateITKOutputMacro(name) |
#define | DelegateSetMacro(name, arg) DelegateITKInputMacro(Set##name,arg) |
Functions | |
template<typename ITK_Exporter , typename VTK_Importer > | |
void | ConnectPipelines (ITK_Exporter exporter, VTK_Importer *importer) |
template<typename VTK_Exporter , typename ITK_Importer > | |
void | ConnectPipelines (VTK_Exporter *exporter, ITK_Importer importer) |
#define DelegateGetMacro | ( | name | ) | DelegateITKOutputMacro (Get##name) |
Definition at line 76 of file vtkITKUtility.h.
#define DelegateITKInputMacro | ( | name, | |
arg | |||
) |
Definition at line 65 of file vtkITKUtility.h.
#define DelegateITKOutputMacro | ( | name | ) |
Definition at line 77 of file vtkITKUtility.h.
#define DelegateSetMacro | ( | name, | |
arg | |||
) | DelegateITKInputMacro(Set##name,arg) |
Definition at line 64 of file vtkITKUtility.h.
void ConnectPipelines | ( | ITK_Exporter | exporter, |
VTK_Importer * | importer | ||
) |
This function will connect the given itk::VTKImageExport filter to the given vtkImageImport filter.
Definition at line 26 of file vtkITKUtility.h.
void ConnectPipelines | ( | VTK_Exporter * | exporter, |
ITK_Importer | importer | ||
) |
This function will connect the given vtkImageExport filter to the given itk::VTKImageImport filter.
Definition at line 47 of file vtkITKUtility.h.