]> Creatis software - bbtk.git/blob - packages/itkvtk/src/bbitkvtkvtkImageDataVector2itkImageVector.cxx
678d43c8120ead4b0aa3f2be70cf12d02cafcfa5
[bbtk.git] / packages / itkvtk / src / bbitkvtkvtkImageDataVector2itkImageVector.cxx
1 /*=========================================================================
2                                                                                
3   Program:   bbtk
4   Module:    $RCSfile: bbitkvtkvtkImageDataVector2itkImageVector.cxx,v $
5   Language:  C++
6   Date:      $Date: 2011/06/16 12:28:57 $
7   Version:   $Revision: 1.1 $
8
9 =========================================================================*/
10
11 /* ---------------------------------------------------------------------
12
13 * Copyright (c) CREATIS-LRMN (Centre de Recherche en Imagerie Medicale)
14 * Authors : Eduardo Davila, Laurent Guigues, Jean-Pierre Roux
15 *
16 *  This software is governed by the CeCILL-B license under French law and 
17 *  abiding by the rules of distribution of free software. You can  use, 
18 *  modify and/ or redistribute the software under the terms of the CeCILL-B 
19 *  license as circulated by CEA, CNRS and INRIA at the following URL 
20 *  http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html 
21 *  or in the file LICENSE.txt.
22 *
23 *  As a counterpart to the access to the source code and  rights to copy,
24 *  modify and redistribute granted by the license, users are provided only
25 *  with a limited warranty  and the software's author,  the holder of the
26 *  economic rights,  and the successive licensors  have only  limited
27 *  liability.
28 *
29 *  The fact that you are presently reading this means that you have had
30 *  knowledge of the CeCILL-B license and that you accept its terms.
31 * ------------------------------------------------------------------------ */
32
33 /**
34  *  \file 
35  *  \brief 
36  */
37 #ifdef _USE_ITK_
38 #ifdef _USE_VTK_
39
40 #include "bbitkvtkvtkImageDataVector2itkImageVector.h"
41 #include "bbitkvtkPackage.h"
42 #include "itkVTKImageToImageFilter.h"
43
44
45 namespace bbitkvtk 
46 {
47
48   BBTK_BLACK_BOX_IMPLEMENTATION(vtkImageDataVector2itkImageVector,bbtk::AtomicBlackBox);
49
50   BBTK_ADD_BLACK_BOX_TO_PACKAGE(itkvtk,vtkImageDataVector2itkImageVector);
51
52 #define BBTK_TEMPLATE_VTK_IMAGE_DATA_SWITCH_DIM(I,DIM,M)                        \
53   if (I->GetDataDimension()==DIM)                                               \
54     {                                                                           \
55       if      (I->GetScalarType()==VTK_CHAR) M<char,DIM>();                     \
56       else if (I->GetScalarType()==VTK_SIGNED_CHAR) M<signed char,DIM>();       \
57       else if (I->GetScalarType()==VTK_UNSIGNED_CHAR) M<unsigned char,DIM>();   \
58       else if (I->GetScalarType()==VTK_SHORT) M<short,DIM>();                   \
59       else if (I->GetScalarType()==VTK_UNSIGNED_SHORT) M<unsigned short,DIM>(); \
60       else if (I->GetScalarType()==VTK_INT) M<int,DIM>();                       \
61       else if (I->GetScalarType()==VTK_UNSIGNED_INT) M<unsigned int,DIM>();     \
62       else if (I->GetScalarType()==VTK_LONG) M<long,DIM>();                     \
63       else if (I->GetScalarType()==VTK_UNSIGNED_LONG) M<unsigned long,DIM>();   \
64       else if (I->GetScalarType()==VTK_FLOAT) M<float,DIM>();                   \
65       else if (I->GetScalarType()==VTK_DOUBLE) M<double,DIM>();                 \
66     }
67
68 #define BBTK_TEMPLATE_VTK_IMAGE_DATA_SWITCH(I,M) \
69   BBTK_TEMPLATE_VTK_IMAGE_DATA_SWITCH_DIM(I,2,M) \
70   BBTK_TEMPLATE_VTK_IMAGE_DATA_SWITCH_DIM(I,3,M)
71
72   void vtkImageDataVector2itkImageVector::Convert()
73   {
74      BBTK_TEMPLATE_VTK_IMAGE_DATA_SWITCH(bbGetInputIn(),Convert)
75   }
76
77
78    template<class T, unsigned int D>
79    void vtkImageDataVector2itkImageVector::Convert()
80    {
81     bbtkDebugMessage("process",5,"==> ["<<bbGetFullName()<<"] : Convert<"
82                         <<bbtk::TypeName<T>()<<","<<D
83                         <<">()"<<std::endl);
84
85
86     typedef itk::Image<T,D> itkImageType;
87     typedef itk::VTKImageToImageFilter< itkImageType > VtkToItkConnection;
88     typename VtkToItkConnection::Pointer conv;
89
90  int vectorSize = bbGetInputIn().size();
91  std::cout << " vtkImageDataVector2itkImageVector vector size :" << vectorSize << std::endl;    
92  for (int i=0; i< vectorSize ; i++)
93  {
94     
95     // No converter yet : create it and set its input
96     if (!mConverter) 
97       {
98         bbtkDebugMessage("process",5,"    ["<<bbGetFullName()<<"] : No converter yet : creating it"<<std::endl);
99         conv = VtkToItkConnection::New();
100         mConverter = conv;
101         conv->SetInput( this->bbGetInputIn()[i] );
102       }
103     else 
104       {
105         bbtkDebugMessage("process",5,"    ["<<bbGetFullName()<<"] : Converter ok "<<std::endl);
106         // Input vtkImage type changed ? 
107         // Have to change the converter and set its input
108         conv = dynamic_cast<VtkToItkConnection*>
109                            ((itk::ProcessObject*)mConverter);
110         if (!conv) 
111           {
112             bbtkDebugMessage("process",5,"    ["<<bbGetFullName()<<"] : Converter of wrong input type : reacreating it "<<std::endl);
113
114             mConverter->UnRegister();
115             conv = VtkToItkConnection::New();
116             mConverter = conv;
117             conv->SetInput( this->bbGetInputIn()[i] );
118           }
119         // Input image type did not change but input image pointer did:
120         // set new input
121         else if ( this->bbGetInputIn()[i] != conv->GetExporter()->GetInput())
122           {
123             bbtkDebugMessage("process",5,"    ["<<bbGetFullName()<<"] : Converter input changed : resetting it"<<std::endl);
124
125             conv->SetInput( this->bbGetInputIn()[i] );
126           }
127         else 
128           {
129             bbtkDebugMessage("process",5,"    ["<<bbGetFullName()<<"] : Nothing changed"<<std::endl);     
130           }
131       }
132     try
133       {
134         
135         bbtkDebugMessage("process",5,"    ["<<bbGetFullName()<<"] : Trying update"<<std::endl);  
136         conv->Update();
137         itkImageType* out = const_cast<itkImageType*>(conv->GetOutput());
138         m_Output_Vector.push_back(conv->GetOutput());   
139
140       }
141     catch( itk::ExceptionObject & e) 
142       {
143         bbtkError("vtkImageDataVector2itkImageVector<"
144                   <<bbtk::TypeName<T>()<<","<<D
145                   <<">::Convert() : "<<e);
146       } 
147     bbtkDebugMessage("process",5,"<== ["<<bbGetFullName()<<"] : Convert<"
148                      <<bbtk::TypeName<T>()<<","<<D
149                      <<">() *DONE*"<<std::endl);
150 } // end iterate on vector size
151
152 bbSetOutputOut(m_Output_Vector);
153
154 }
155
156
157   void vtkImageDataVector2itkImageVector::bbUserSetDefaultValues()
158   {
159     //    bbSetOutputOut(NULL);
160     mConverter = 0;
161   }
162
163   void vtkImageDataVector2itkImageVector::bbUserInitializeProcessing()
164   {
165   }
166
167   void vtkImageDataVector2itkImageVector::bbUserFinalizeProcessing()
168   {
169   }
170
171
172 }
173 // eo namespace bbtk
174
175 #endif
176 // _USE_VTK_
177 #endif
178 // _USE_ITK_