itkvtkimagetoimagefilter.txx
来自「DTMK软件开发包,此为开源软件,是一款很好的医学图像开发资源.」· TXX 代码 · 共 145 行
TXX
145 行
/*=========================================================================
Program: Insight Segmentation & Registration Toolkit
Module: $RCSfile: itkVTKImageToImageFilter.txx,v $
Language: C++
Date: $Date: 2006-09-06 20:58:41 $
Version: $Revision: 1.1 $
Copyright (c) 2002 Insight Consortium. All rights reserved.
See ITKCopyright.txt or http://www.itk.org/HTML/Copyright.htm for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notices for more information.
=========================================================================*/
#ifndef _itkVTKImageToImageFilter_txx
#define _itkVTKImageToImageFilter_txx
#include "itkVTKImageToImageFilter.h"
namespace itk
{
/**
* Constructor
*/
template <class TOutputImage>
VTKImageToImageFilter<TOutputImage>
::VTKImageToImageFilter()
{
m_Exporter = vtkImageExport::New();
m_Importer = ImporterFilterType::New();
m_Importer->SetUpdateInformationCallback( m_Exporter->GetUpdateInformationCallback());
m_Importer->SetPipelineModifiedCallback( m_Exporter->GetPipelineModifiedCallback());
m_Importer->SetWholeExtentCallback( m_Exporter->GetWholeExtentCallback());
m_Importer->SetSpacingCallback( m_Exporter->GetSpacingCallback());
m_Importer->SetOriginCallback( m_Exporter->GetOriginCallback());
m_Importer->SetScalarTypeCallback( m_Exporter->GetScalarTypeCallback());
m_Importer->SetNumberOfComponentsCallback( m_Exporter->GetNumberOfComponentsCallback());
m_Importer->SetPropagateUpdateExtentCallback( m_Exporter->GetPropagateUpdateExtentCallback());
m_Importer->SetUpdateDataCallback( m_Exporter->GetUpdateDataCallback());
m_Importer->SetDataExtentCallback( m_Exporter->GetDataExtentCallback());
m_Importer->SetBufferPointerCallback( m_Exporter->GetBufferPointerCallback());
m_Importer->SetCallbackUserData( m_Exporter->GetCallbackUserData());
}
/**
* Destructor
*/
template <class TOutputImage>
VTKImageToImageFilter<TOutputImage>
::~VTKImageToImageFilter()
{
if( m_Exporter )
{
m_Exporter->Delete();
m_Exporter = 0;
}
}
/**
* Set a vtkImageData as input
*/
template <class TOutputImage>
void
VTKImageToImageFilter<TOutputImage>
::SetInput( vtkImageData * inputImage )
{
m_Exporter->SetInput( inputImage );
}
/**
* Get an itk::Image as output
*/
template <class TOutputImage>
const typename VTKImageToImageFilter<TOutputImage>::OutputImageType *
VTKImageToImageFilter<TOutputImage>
::GetOutput() const
{
return m_Importer->GetOutput();
}
/**
* Get the exporter filter
*/
template <class TOutputImage>
vtkImageExport *
VTKImageToImageFilter<TOutputImage>
::GetExporter() const
{
return m_Exporter;
}
/**
* Get the importer filter
*/
template <class TOutputImage>
typename VTKImageToImageFilter<TOutputImage>::ImporterFilterType *
VTKImageToImageFilter<TOutputImage>
::GetImporter() const
{
return m_Importer;
}
/**
* Delegate the Update to the importer
*/
template <class TOutputImage>
void
VTKImageToImageFilter<TOutputImage>
::Update()
{
m_Importer->Update();
}
} // end namespace itk
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?