/*========================================================================= Program: bbtk Module: $RCSfile: bbitkvtkitkImageVector2vtkImageDataVector.cxx,v $ Language: C++ Date: $Date: 2011/06/16 12:28:57 $ Version: $Revision: 1.1 $ =========================================================================*/ /* --------------------------------------------------------------------- * Copyright (c) CREATIS-LRMN (Centre de Recherche en Imagerie Medicale) * Authors : Eduardo Davila, Laurent Guigues, Jean-Pierre Roux * * This software is governed by the CeCILL-B license under French law and * abiding by the rules of distribution of free software. You can use, * modify and/ or redistribute the software under the terms of the CeCILL-B * license as circulated by CEA, CNRS and INRIA at the following URL * http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html * or in the file LICENSE.txt. * * As a counterpart to the access to the source code and rights to copy, * modify and redistribute granted by the license, users are provided only * with a limited warranty and the software's author, the holder of the * economic rights, and the successive licensors have only limited * liability. * * The fact that you are presently reading this means that you have had * knowledge of the CeCILL-B license and that you accept its terms. * ------------------------------------------------------------------------ */ /** * \file * \brief */ #ifdef _USE_ITK_ #ifdef _USE_VTK_ #include "bbitkvtkitkImageVector2vtkImageDataVector.h" #include "bbitkvtkPackage.h" #include "itkImageToVTKImageFilter.h" namespace bbitkvtk { BBTK_BLACK_BOX_IMPLEMENTATION(itkImageVector2vtkImageDataVector,bbtk::AtomicBlackBox); BBTK_ADD_BLACK_BOX_TO_PACKAGE(itkvtk,itkImageVector2vtkImageDataVector); void itkImageVector2vtkImageDataVector::Convert() { // suppose *all* the images have the same type // JPR bbtk::TypeInfo t = bbGetInputIn()[0].type(); BBTK_TEMPLATE_ITK_IMAGE_SWITCH(t,Convert); } template void itkImageVector2vtkImageDataVector::Convert() { bbtkDebugMessage("process",5,"==> ["<() <<">()"< ItkToVtkConnection; typename ItkToVtkConnection::Pointer conv; int vectorSize = bbGetInputIn().size(); std::cout << " itkImageVector2vtkImageDataVector vector size :" << vectorSize << std::endl; for (int i=0; i< vectorSize ; i++) { // No converter yet : create it and set its input if (!mConverter) { bbtkDebugMessage("process",5," ["<SetInput( this->bbGetInputIn()[i].get< itkImageTypePointer >() ); } else { bbtkDebugMessage("process",5," ["< ((itk::ProcessObject*)mConverter); if (!conv) { bbtkDebugMessage("process",5," ["<UnRegister(); conv = ItkToVtkConnection::New(); mConverter = conv; conv->SetInput( this->bbGetInputIn()[i].get() ); } // Input image type did not change but input image pointer did: // set new input else if ( this->bbGetInputIn()[i].get() != (itkImageType*)(conv->GetExporter()->GetInputs()[0].GetPointer())) { bbtkDebugMessage("process",5," ["<SetInput( this->bbGetInputIn()[i].get() ); } else { bbtkDebugMessage("process",5," ["<Update(); m_Output_Vector.push_back(conv->GetOutput()); } catch( itk::ExceptionObject & e) { bbtkError("itkImageVector2vtkImageDataVector<" <() <<">::Convert() : "<() <<">() *DONE*"<); // syntax? JPR mConverter = 0; } void itkImageVector2vtkImageDataVector::bbUserInitializeProcessing() { } void itkImageVector2vtkImageDataVector::bbUserFinalizeProcessing() { } } // eo namespace bbitkvtk #endif // _USE_VTK_ #endif // _USE_ITK_