]> Creatis software - bbtk.git/blob - packages/itkvtk/src/bbitkvtkvtkImageData2itkImage.cxx
c1bf73479ebe65c21a13aa7ed165d097dc17880a
[bbtk.git] / packages / itkvtk / src / bbitkvtkvtkImageData2itkImage.cxx
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                                                                                
30   Program:   bbtk
31   Module:    $RCSfile: bbitkvtkvtkImageData2itkImage.cxx,v $
32   Language:  C++
33   Date:      $Date: 2012/11/16 08:50:49 $
34   Version:   $Revision: 1.8 $
35
36 =========================================================================*/
37
38
39 /**
40  *  \file 
41  *  \brief 
42  */
43 #ifdef _USE_ITK_
44 #ifdef _USE_VTK_
45
46 #include "bbitkvtkvtkImageData2itkImage.h"
47 #include "bbitkvtkPackage.h"
48 #include "itkVTKImageToImageFilter.h"
49
50
51 namespace bbitkvtk 
52 {
53
54   BBTK_BLACK_BOX_IMPLEMENTATION(vtkImageData2itkImage,bbtk::AtomicBlackBox);
55
56   BBTK_ADD_BLACK_BOX_TO_PACKAGE(itkvtk,vtkImageData2itkImage);
57
58 #define BBTK_TEMPLATE_VTK_IMAGE_DATA_SWITCH_DIM(I,DIM,M)                        \
59   if (I->GetDataDimension()==DIM)                                               \
60     {                                                                           \
61       if (I->GetScalarType()==VTK_CHAR) M<char,DIM>();                          \
62       else if (I->GetScalarType()==VTK_SIGNED_CHAR) M<signed char,DIM>();       \
63       else if (I->GetScalarType()==VTK_UNSIGNED_CHAR) M<unsigned char,DIM>();   \
64       else if (I->GetScalarType()==VTK_SHORT) M<short,DIM>();                   \
65       else if (I->GetScalarType()==VTK_UNSIGNED_SHORT) M<unsigned short,DIM>(); \
66       else if (I->GetScalarType()==VTK_INT) M<int,DIM>();                       \
67       else if (I->GetScalarType()==VTK_UNSIGNED_INT) M<unsigned int,DIM>();     \
68       else if (I->GetScalarType()==VTK_LONG) M<long,DIM>();                     \
69       else if (I->GetScalarType()==VTK_UNSIGNED_LONG) M<unsigned long,DIM>();   \
70       else if (I->GetScalarType()==VTK_FLOAT) M<float,DIM>();                   \
71       else if (I->GetScalarType()==VTK_DOUBLE) M<double,DIM>();                 \
72     }
73
74 #define BBTK_TEMPLATE_VTK_IMAGE_DATA_SWITCH(I,M) \
75   BBTK_TEMPLATE_VTK_IMAGE_DATA_SWITCH_DIM(I,2,M) \
76   BBTK_TEMPLATE_VTK_IMAGE_DATA_SWITCH_DIM(I,3,M)
77
78   void vtkImageData2itkImage::Convert()
79   {
80      BBTK_TEMPLATE_VTK_IMAGE_DATA_SWITCH(bbGetInputIn(),Convert)
81   }
82
83
84    template<class T, unsigned int D>
85    void vtkImageData2itkImage::Convert()
86    {
87     bbtkDebugMessage("process",5,"==> ["<<bbGetFullName()<<"] : Convert<"
88                         <<bbtk::TypeName<T>()<<","<<D
89                         <<">()"<<std::endl);
90
91
92     typedef itk::Image<T,D> itkImageType;
93     typedef itk::VTKImageToImageFilter< itkImageType > VtkToItkConnection;
94     typename VtkToItkConnection::Pointer conv;
95
96     // No converter yet : create it and set its input
97     if (!mConverter) 
98       {
99         bbtkDebugMessage("process",5,"    ["<<bbGetFullName()<<"] : No converter yet : creating it"<<std::endl);
100         conv = VtkToItkConnection::New();
101         mConverter = conv;
102         conv->SetInput( this->bbGetInputIn() );
103       }
104     else 
105       {
106         bbtkDebugMessage("process",5,"    ["<<bbGetFullName()<<"] : Converter ok "<<std::endl);
107         // Input vtkImage type changed ? 
108         // Have to change the converter and set its input
109         conv = dynamic_cast<VtkToItkConnection*>
110                            ((itk::ProcessObject*)mConverter);
111         if (!conv) 
112           {
113             bbtkDebugMessage("process",5,"    ["<<bbGetFullName()<<"] : Converter of wrong input type : reacreating it "<<std::endl);
114
115             mConverter->UnRegister();
116             conv = VtkToItkConnection::New();
117             mConverter = conv;
118             conv->SetInput( this->bbGetInputIn() );
119           }
120         // Input image type did not change but input image pointer did:
121         // set new input
122         else if ( this->bbGetInputIn() != conv->GetExporter()->GetInput())
123           {
124             bbtkDebugMessage("process",5,"    ["<<bbGetFullName()<<"] : Converter input changed : resetting it"<<std::endl);
125
126             conv->SetInput( this->bbGetInputIn() );
127           }
128         else 
129           {
130             bbtkDebugMessage("process",5,"    ["<<bbGetFullName()<<"] : Nothing changed"<<std::endl);     
131           }
132       }
133     try
134       {
135         
136         bbtkDebugMessage("process",5,"    ["<<bbGetFullName()<<"] : Trying update"<<std::endl);  
137         conv->Update();
138         itkImageType* out = const_cast<itkImageType*>(conv->GetOutput());
139         bbSetOutputOut(out);
140       }
141     catch( itk::ExceptionObject & e) 
142       {
143         bbtkError("vtkImageData2itkImage<"
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 }
151
152
153   void vtkImageData2itkImage::bbUserSetDefaultValues()
154   {
155     //    bbSetOutputOut(NULL);
156     mConverter = 0;
157   }
158
159   void vtkImageData2itkImage::bbUserInitializeProcessing()
160   {
161   }
162
163   void vtkImageData2itkImage::bbUserFinalizeProcessing()
164   {
165   }
166
167
168 }
169 // eo namespace bbtk
170
171 #endif
172 // _USE_VTK_
173 #endif
174 // _USE_ITK_