]> Creatis software - bbtk.git/blob - packages/itkvtk/src/bbitkvtkitkImageVector2vtkImageDataVector.h
Feature #1774
[bbtk.git] / packages / itkvtk / src / bbitkvtkitkImageVector2vtkImageDataVector.h
1 /*
2 # ---------------------------------------------------------------------
3 #
4 # Copyright (c) CREATIS (Centre de Recherche en Acquisition et Traitement de l'Image
5 #                        pour la SantÈ)
6 # Authors : Eduardo Davila, Frederic Cervenansky, Claire Mouton
7 # Previous Authors : Laurent Guigues, Jean-Pierre Roux
8 # CreaTools website : www.creatis.insa-lyon.fr/site/fr/creatools_accueil
9 #
10 #  This software is governed by the CeCILL-B license under French law and
11 #  abiding by the rules of distribution of free software. You can  use,
12 #  modify and/ or redistribute the software under the terms of the CeCILL-B
13 #  license as circulated by CEA, CNRS and INRIA at the following URL
14 #  http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html
15 #  or in the file LICENSE.txt.
16 #
17 #  As a counterpart to the access to the source code and  rights to copy,
18 #  modify and redistribute granted by the license, users are provided only
19 #  with a limited warranty  and the software's author,  the holder of the
20 #  economic rights,  and the successive licensors  have only  limited
21 #  liability.
22 #
23 #  The fact that you are presently reading this means that you have had
24 #  knowledge of the CeCILL-B license and that you accept its terms.
25 # ------------------------------------------------------------------------ */
26
27
28 /*=========================================================================
29   Program:   bbtk
30   Module:    $RCSfile: bbitkvtkitkImageVector2vtkImageDataVector.h,v $
31   Language:  C++
32   Date:      $Date: 2012/11/16 08:50:49 $
33   Version:   $Revision: 1.2 $
34 =========================================================================*/
35                                                                         
36
37 /**
38  * \file 
39  * \brief class itkImage2vtkImageData : converts a std::vector of generic itkImage to a std::vector of vtkImageData*
40  */
41 /**
42  * \class itkImage2vtkImageData 
43  * \brief converts a std::vector of generic itkImage to a std::vector of vtkImageData*
44  */
45 #ifdef _USE_ITK_
46 #ifdef _USE_VTK_
47
48 #ifndef __bbitkvtkitkImageVector2vtkImageDataVector_h__
49 #define __bbitkvtkitkImageVector2vtkImageDataVector_h__
50
51 #include "bbtkAtomicBlackBox.h"
52 #include "bbitkImage.h"
53 #include "vtkImageData.h"
54
55 namespace bbitkvtk
56 {
57
58   class itkImageVector2vtkImageDataVector : public bbtk::AtomicBlackBox  
59   {
60     
61     BBTK_BLACK_BOX_INTERFACE(itkImageVector2vtkImageDataVector,
62                              bbtk::AtomicBlackBox);
63
64     BBTK_DECLARE_INPUT(In,   std::vector<bbitk::anyImagePointer>);
65     BBTK_DECLARE_OUTPUT(Out, std::vector<vtkImageData*>);
66     BBTK_PROCESS(Convert);
67     void Convert();
68   private:
69     // Convert method template on type of the itk image 
70     // embedded in the input itkImage*
71     template<class T> void Convert();
72     // stores the pointer on the template itk::ImageToVTKImageFilter 
73     itk::ProcessObject::Pointer mConverter;
74     std::vector<vtkImageData*> m_Output_Vector;
75   }; 
76   
77
78   //=================================================================
79   // AtomicBlackBox description
80   BBTK_BEGIN_DESCRIBE_BLACK_BOX(itkImageVector2vtkImageDataVector,bbtk::AtomicBlackBox);
81   BBTK_NAME("itkImageVector2vtkImageDataVector");
82   BBTK_AUTHOR("jpr@creatis.insa-lyon.fr");
83   BBTK_DESCRIPTION("Converts a std::vector of generic itkImage to a std::vector of vtkImageData*");
84   BBTK_DEFAULT_ADAPTOR();
85   BBTK_INPUT(itkImageVector2vtkImageDataVector,In,
86              "Input std::vector of itkImage",std::vector<bbitk::anyImagePointer>,"");
87   BBTK_OUTPUT(itkImageVector2vtkImageDataVector,Out,
88               "Output std::vector of vtkImageData*",
89               std::vector<vtkImageData*>,"");
90   BBTK_END_DESCRIBE_BLACK_BOX(itkImageVector2vtkImageDataVector);
91   //=================================================================
92    
93
94 }
95 //namespace bbitkvtk
96 #endif
97 // _USE_VTK_
98 #endif
99 // _USE_ITK_
100
101 #endif