15#ifndef __vtkITKImageToImageFilterF2F_h
16#define __vtkITKImageToImageFilterF2F_h
20#include "vtkImageAlgorithm.h"
21#include "itkImageToImageFilter.h"
22#include "itkVTKImageExport.h"
23#include "itkVTKImageImport.h"
34 Superclass::PrintSelf ( os, indent );
58 this->itkImporter = ImageImportType::New();
59 this->itkExporter = ImageExportType::New();
62 this->LinkITKProgressToVTKProgress ( m_Filter );
65 m_Filter->SetInput ( this->itkImporter->GetOutput() );
66 this->itkExporter->SetInput ( m_Filter->GetOutput() );
67 this->vtkCast->SetOutputScalarTypeToFloat();
ImageImportType::Pointer itkImporter
void PrintSelf(ostream &os, vtkIndent indent)
GenericFilterType::Pointer m_Filter
itk::VTKImageImport< InputImageType > ImageImportType
itk::ImageToImageFilter< InputImageType, OutputImageType > GenericFilterType
vtkITKImageToImageFilterF2F(GenericFilterType *filter)
float OutputImagePixelType
itk::VTKImageExport< OutputImageType > ImageExportType
~vtkITKImageToImageFilterF2F()
itk::Image< InputImagePixelType, 3 > InputImageType
itk::Vector< float, 2 > InputImagePixelType
To/from ITK.
ImageExportType::Pointer itkExporter
static vtkITKImageToImageFilterF2F * New()
itk::Image< OutputImagePixelType, 3 > OutputImageType
Abstract base class for connecting ITK and VTK.
void ConnectPipelines(ITK_Exporter exporter, VTK_Importer *importer)