]> Creatis software - bbtk.git/blob - packages/itkvtk/src/bbitkvtkvtkImageData2itkImage.cxx
f12b52566de25d03712a9f53dcc800412f22b9c4
[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        printf("vtkImageData2itkImage::Convert A \n");
88
89     bbtkDebugMessage("process",5,"==> ["<<bbGetFullName()<<"] : Convert<"
90                         <<bbtk::TypeName<T>()<<","<<D
91                         <<">()"<<std::endl);
92
93
94     typedef itk::Image<T,D> itkImageType;
95     typedef itk::VTKImageToImageFilter< itkImageType > VtkToItkConnection;
96     typename VtkToItkConnection::Pointer conv;
97
98        printf("vtkImageData2itkImage::Convert B \n");
99
100     // No converter yet : create it and set its input
101     if (!mConverter) 
102       {
103           printf("vtkImageData2itkImage::Convert C \n");
104         bbtkDebugMessage("process",5,"    ["<<bbGetFullName()<<"] : No converter yet : creating it"<<std::endl);
105         conv = VtkToItkConnection::New();
106         mConverter = conv;
107         conv->SetInput( this->bbGetInputIn() );
108       }
109     else 
110       {
111         bbtkDebugMessage("process",5,"    ["<<bbGetFullName()<<"] : Converter ok "<<std::endl);
112         // Input vtkImage type changed ? 
113         // Have to change the converter and set its input
114         conv = dynamic_cast<VtkToItkConnection*>
115                            ((itk::ProcessObject*)mConverter);
116         if (!conv) 
117           {
118           printf("vtkImageData2itkImage::Convert 1 \n");
119           bbtkDebugMessage("process",5,"    ["<<bbGetFullName()<<"] : Converter of wrong input type : reacreating it "<<std::endl);
120
121             mConverter->UnRegister();
122             conv = VtkToItkConnection::New();
123             mConverter = conv;
124             conv->SetInput( this->bbGetInputIn() );
125           }
126         // Input image type did not change but input image pointer did:
127         // set new input
128         else if ( this->bbGetInputIn() != conv->GetExporter()->GetInput())
129           {
130           printf("vtkImageData2itkImage::Convert 2 \n");
131             bbtkDebugMessage("process",5,"    ["<<bbGetFullName()<<"] : Converter input changed : resetting it"<<std::endl);
132
133             conv->SetInput( this->bbGetInputIn() );
134           }
135         else 
136           {
137           printf("vtkImageData2itkImage::Convert 3 \n");
138             bbtkDebugMessage("process",5,"    ["<<bbGetFullName()<<"] : Nothing changed"<<std::endl);
139           }
140       }
141     try
142       {
143         
144         bbtkDebugMessage("process",5,"    ["<<bbGetFullName()<<"] : Trying update"<<std::endl);  
145
146         conv->Update();
147
148         itkImageType* out = const_cast<itkImageType*>(conv->GetOutput());
149         bbSetOutputOut(out);
150       }
151     catch( itk::ExceptionObject & e) 
152       {
153         bbtkError("vtkImageData2itkImage<"
154                   <<bbtk::TypeName<T>()<<","<<D
155                   <<">::Convert() : "<<e);
156       } 
157     bbtkDebugMessage("process",5,"<== ["<<bbGetFullName()<<"] : Convert<"
158                      <<bbtk::TypeName<T>()<<","<<D
159                      <<">() *DONE*"<<std::endl);
160 }
161
162
163   void vtkImageData2itkImage::bbUserSetDefaultValues()
164   {
165     //    bbSetOutputOut(NULL);
166     mConverter = 0;
167   }
168
169   void vtkImageData2itkImage::bbUserInitializeProcessing()
170   {
171   }
172
173   void vtkImageData2itkImage::bbUserFinalizeProcessing()
174   {
175   }
176
177
178 }
179 // eo namespace bbtk
180
181 #endif
182 // _USE_VTK_
183 #endif
184 // _USE_ITK_