]> Creatis software - bbtk.git/blob - packages/itkvtk/src/bbitkvtkitkImage2vtkImageData.cxx
*** empty log message ***
[bbtk.git] / packages / itkvtk / src / bbitkvtkitkImage2vtkImageData.cxx
1 /*=========================================================================                                                                               
2   Program:   bbtk
3   Module:    $RCSfile: bbitkvtkitkImage2vtkImageData.cxx,v $
4   Language:  C++
5   Date:      $Date: 2008/10/17 08:18:24 $
6   Version:   $Revision: 1.5 $
7 =========================================================================*/
8
9 /* ---------------------------------------------------------------------
10
11 * Copyright (c) CREATIS-LRMN (Centre de Recherche en Imagerie Medicale)
12 * Authors : Eduardo Davila, Laurent Guigues, Jean-Pierre Roux
13 *
14 *  This software is governed by the CeCILL-B license under French law and 
15 *  abiding by the rules of distribution of free software. You can  use, 
16 *  modify and/ or redistribute the software under the terms of the CeCILL-B 
17 *  license as circulated by CEA, CNRS and INRIA at the following URL 
18 *  http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html 
19 *  or in the file LICENSE.txt.
20 *
21 *  As a counterpart to the access to the source code and  rights to copy,
22 *  modify and redistribute granted by the license, users are provided only
23 *  with a limited warranty  and the software's author,  the holder of the
24 *  economic rights,  and the successive licensors  have only  limited
25 *  liability. 
26 *
27 *  The fact that you are presently reading this means that you have had
28 *  knowledge of the CeCILL-B license and that you accept its terms.
29 * ------------------------------------------------------------------------ */                                                                         
30
31 /**
32  *  \file 
33  *  \brief 
34  */
35 #ifdef _USE_ITK_
36 #ifdef _USE_VTK_
37
38 #include "bbitkvtkitkImage2vtkImageData.h"
39 #include "bbitkvtkPackage.h"
40 // VtkToItkConnection 
41 //#include "itkVTKImageToImageFilter.h"
42 // ItkToVtkConnection
43 #include "itkImageToVTKImageFilter.h"
44
45
46 namespace bbitkvtk 
47 {
48   BBTK_BLACK_BOX_IMPLEMENTATION(itkImage2vtkImageData,bbtk::AtomicBlackBox);
49
50   BBTK_ADD_BLACK_BOX_TO_PACKAGE(itkvtk,itkImage2vtkImageData);
51
52
53
54
55   void itkImage2vtkImageData::Convert()
56   {
57     bbtk::TypeInfo t = bbGetInputIn().type();
58     BBTK_TEMPLATE_ITK_IMAGE_SWITCH(t,Convert);
59   }
60   
61
62
63    template<class T>
64    void itkImage2vtkImageData::Convert()
65   {
66     bbtkDebugMessage("process",5,"==> ["<<bbGetFullName()<<"] : Convert<"
67                      <<bbtk::TypeName<T>()
68                      <<">()"<<std::endl);
69
70     typedef T itkImageType;
71     typedef itk::ImageToVTKImageFilter< itkImageType > ItkToVtkConnection;
72     typename ItkToVtkConnection::Pointer conv;
73
74     // No converter yet : create it and set its input
75     if (!mConverter) 
76       {
77         bbtkDebugMessage("process",5,"    ["<<bbGetFullName()<<"] : No converter yet : creating it"<<std::endl);
78         conv = ItkToVtkConnection::New();
79         mConverter = conv;
80         conv->SetInput( this->bbGetInputIn().get<itkImageType*>() );
81       }
82     else 
83       {
84         bbtkDebugMessage("process",5,"    ["<<bbGetFullName()<<"] : Converter ok "<<std::endl);
85         
86         // Input itkImageType type changed ? 
87         // Have to change the converter and set its input
88         conv = dynamic_cast<ItkToVtkConnection*>
89           ((itk::ProcessObject*)mConverter);
90         if (!conv) 
91           {
92             bbtkDebugMessage("process",5,"    ["<<bbGetFullName()<<"] : Converter of wrong input type : reacreating it "<<std::endl);
93
94             mConverter->UnRegister();
95             conv = ItkToVtkConnection::New();
96             mConverter = conv;
97             conv->SetInput( this->bbGetInputIn().get<itkImageType*>() );
98           }
99         // Input image type did not change but input image pointer did:
100         // set new input
101         else if ( this->bbGetInputIn().get<itkImageType*>() 
102                   != (itkImageType*)(conv->GetExporter()->GetInputs()[0].GetPointer()))
103           {
104             bbtkDebugMessage("process",5,"    ["<<bbGetFullName()<<"] : Converter input changed : resetting it"<<std::endl);
105
106             conv->SetInput( this->bbGetInputIn().get<itkImageType*>() );
107           }
108         else 
109           {
110             bbtkDebugMessage("process",5,"    ["<<bbGetFullName()<<"] : Nothing changed"<<std::endl);     
111
112           }
113       }
114     try
115       {
116         
117         bbtkDebugMessage("process",5,"    ["<<bbGetFullName()<<"] : Trying update"<<std::endl);  
118
119         conv->Update();
120         bbSetOutputOut(conv->GetOutput());
121       }
122     catch( itk::ExceptionObject & e) 
123       {
124         bbtkError("itkImage2vtkImageData<"
125                   <<bbtk::TypeName<T>()
126                   <<">::Convert() : "<<e);
127       } 
128     bbtkDebugMessage("process",5,"<== ["<<bbGetFullName()<<"] : Convert<"
129                      <<bbtk::TypeName<T>()
130                      <<">() *DONE*"<<std::endl);
131
132
133  }
134
135   void itkImage2vtkImageData::bbUserConstructor()
136   {
137     bbSetOutputOut(NULL);
138     mConverter = 0;
139   }
140   void itkImage2vtkImageData::bbUserCopyConstructor()
141   {
142     bbSetOutputOut(NULL);
143     mConverter = 0;
144   }
145   void itkImage2vtkImageData::bbUserDestructor()
146   {
147   }
148   
149
150 }
151 // eo namespace bbitkvtk
152
153 #endif
154 // _USE_VTK_
155 #endif
156 // _USE_ITK_