]> Creatis software - bbtk.git/blob - packages/vtk/src/bbvtkCreateImage.cxx
007c34718cc779e17897a44f3ddd81ec35f4dddc
[bbtk.git] / packages / vtk / src / bbvtkCreateImage.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 // Before editing this file, make sure it's a file of your own (i.e.: it wasn't generated from xml description; if so : your modifications will be lost)
30 //===== 
31 #include "bbvtkCreateImage.h"
32 #include "bbvtkPackage.h"
33 namespace bbvtk
34 {
35
36 BBTK_ADD_BLACK_BOX_TO_PACKAGE(vtk,CreateImage)
37 BBTK_BLACK_BOX_IMPLEMENTATION(CreateImage,bbtk::AtomicBlackBox);
38 //===== 
39 // Before editing this file, make sure it's a file of your own (i.e.: it wasn't generated from xml description; if so : your modifications will be lost)
40 //===== 
41 void CreateImage::Process()
42 {
43
44 // THE MAIN PROCESSING METHOD BODY
45 //   Here we simply set the input 'In' value to the output 'Out'
46 //   And print out the output value
47 // INPUT/OUTPUT ACCESSORS ARE OF THE FORM :
48 //    void bbSet{Input|Output}NAME(const TYPE&)
49 //    const TYPE& bbGet{Input|Output}NAME() const 
50 //    Where :
51 //    * NAME is the name of the input/output
52 //      (the one provided in the attribute 'name' of the tag 'input')
53 //    * TYPE is the C++ type of the input/output
54 //      (the one provided in the attribute 'type' of the tag 'input')
55
56         double  spc[3];
57         int             dim[3]; 
58         int             outputformat = VTK_UNSIGNED_SHORT;
59         
60         if (bbGetInputOutputFormat()=="VTK_BIT")                                        outputformat = VTK_BIT;                 // 1
61         else if (bbGetInputOutputFormat()=="VTK_CHAR")                          outputformat = VTK_CHAR;                                // 2
62         else if (bbGetInputOutputFormat()=="MET_CHAR")                          outputformat = VTK_CHAR;                                // 2
63         else if (bbGetInputOutputFormat()=="VTK_SIGNED_CHAR")           outputformat = VTK_SIGNED_CHAR;         // 15
64         else if (bbGetInputOutputFormat()=="MET_UCHAR")                         outputformat = VTK_UNSIGNED_CHAR;       // 3
65         else if (bbGetInputOutputFormat()=="VTK_UNSIGNED_CHAR")         outputformat = VTK_UNSIGNED_CHAR;       // 3
66         else if (bbGetInputOutputFormat()=="VTK_SHORT")                         outputformat = VTK_SHORT;               // 4
67         else if (bbGetInputOutputFormat()=="MET_SHORT")                         outputformat = VTK_SHORT;               // 4
68         else if (bbGetInputOutputFormat()=="VTK_UNSIGNED_SHORT")        outputformat = VTK_UNSIGNED_SHORT;      // 5
69         else if (bbGetInputOutputFormat()=="MET_USHORT")                        outputformat = VTK_UNSIGNED_SHORT;      // 5
70         else if (bbGetInputOutputFormat()=="VTK_INT")                           outputformat = VTK_INT;                 // 6
71         else if (bbGetInputOutputFormat()=="MET_INT")                           outputformat = VTK_INT;                 // 6
72         else if (bbGetInputOutputFormat()=="VTK_UNSIGNED_INT")          outputformat = VTK_UNSIGNED_INT;        // 7 
73         else if (bbGetInputOutputFormat()=="MEY_UINT")                          outputformat = VTK_UNSIGNED_INT;        // 7 
74         else if (bbGetInputOutputFormat()=="VTK_LONG")                          outputformat = VTK_LONG;                // 8
75         else if (bbGetInputOutputFormat()=="MET_LONG")                          outputformat = VTK_LONG;                // 8
76         else if (bbGetInputOutputFormat()=="VTK_UNSIGNED_LONG")         outputformat = VTK_UNSIGNED_LONG;       // 9
77         else if (bbGetInputOutputFormat()=="MET_ULONG")                         outputformat = VTK_UNSIGNED_LONG;       // 9
78         else if (bbGetInputOutputFormat()=="VTK_FLOAT")                         outputformat = VTK_FLOAT;               // 10
79         else if (bbGetInputOutputFormat()=="MET_FLOAT")                         outputformat = VTK_FLOAT;               // 10
80         else if (bbGetInputOutputFormat()=="VTK_DOUBLE")                        outputformat = VTK_DOUBLE;              // 11           
81         else if (bbGetInputOutputFormat()=="MET_DOUBLE")                        outputformat = VTK_DOUBLE;              // 11  
82
83         spc[0] = bbGetInputSpacing()[0];
84         spc[1] = bbGetInputSpacing()[1];
85         spc[2] = bbGetInputSpacing()[2];
86         dim[0] =  bbGetInputDimensions()[0];
87         dim[1] =  bbGetInputDimensions()[1];
88         dim[2] =  bbGetInputDimensions()[2];
89         if ((dim[0]<=0)||(dim[1]<=0)||(dim[2]<=0))
90         {
91                 dim[0]=1;
92                 dim[1]=1;
93                 dim[2]=1;
94         }
95         if ((spc[0]<=0)||(spc[1]<=0)||(spc[2]<=0))
96         {
97                 spc[0]=1;
98                 spc[1]=1;
99                 spc[2]=1;
100         }
101 //EED 2017-12-7
102         if (imageoutput!=NULL) 
103         {
104                 imageoutput->Delete();
105         }       
106         imageoutput = vtkImageData::New();
107         imageoutput->Initialize();
108         imageoutput->SetSpacing( spc );
109         imageoutput->SetDimensions(  dim[0], dim[1], dim[2] );
110
111 //EED 2017-01-01 Migration VTK7
112 #if (VTK_MAJOR_VERSION <= 5) 
113         imageoutput->SetScalarType( outputformat );     
114         imageoutput->AllocateScalars();
115 #endif
116 #if (VTK_MAJOR_VERSION >= 6) 
117         imageoutput->AllocateScalars( outputformat,1 );
118 #endif
119         
120         int i,j,k;
121         long sizeBlock; 
122
123         for (i=0; i<dim[0]; i++)
124         {
125                 imageoutput->SetScalarComponentFromDouble(i,0,0, 0, bbGetInputInitialValue() );
126         } // for i
127         
128         sizeBlock= dim[0] * imageoutput->GetScalarSize();
129     for (j=1; j<dim[1]; j++)
130         {
131                 memcpy(  imageoutput->GetScalarPointer(0,j,0), imageoutput->GetScalarPointer()  , sizeBlock );
132         } // for j              
133
134         sizeBlock= dim[0] * dim[1] * imageoutput->GetScalarSize();
135         for (k=0; k<dim[2]; k++)
136         {
137                 memcpy(  imageoutput->GetScalarPointer(0,0,k) ,imageoutput->GetScalarPointer()  , sizeBlock );
138         } // for k
139         
140
141 //EED 2017-01-01 Migration VTK7
142 #if (VTK_MAJOR_VERSION <= 5) 
143         imageoutput->Update();
144 #endif
145 #if (VTK_MAJOR_VERSION >= 6) 
146         // ..
147 #endif
148
149         imageoutput->Modified();
150         bbSetOutputOut(imageoutput);
151 }       
152         
153 //===== 
154 // Before editing this file, make sure it's a file of your own (i.e.: it wasn't generated from xml description; if so : your modifications will be lost)
155 //===== 
156 void CreateImage::bbUserSetDefaultValues()
157 {
158         imageoutput=NULL;
159
160 //  SET HERE THE DEFAULT INPUT/OUTPUT VALUES OF YOUR BOX 
161         std::vector<int> dim;
162         dim.push_back(250);
163         dim.push_back(250);
164         dim.push_back(250);
165         std::vector<double> spc;
166         spc.push_back(1.0);
167         spc.push_back(1.0);
168         spc.push_back(1.0);
169         
170         bbSetInputDimensions(dim);
171         bbSetInputSpacing(spc);
172         bbSetInputOutputFormat("VTK_UNSIGNED_SHORT");
173         bbSetInputInitialValue(0);
174 }
175         
176 //===== 
177 // Before editing this file, make sure it's a file of your own (i.e.: it wasn't generated from xml description; if so : your modifications will be lost)
178 //===== 
179 void CreateImage::bbUserInitializeProcessing()
180 {
181
182 //  THE INITIALIZATION METHOD BODY :
183 //    Here does nothing 
184 //    but this is where you should allocate the internal/output pointers 
185 //    if any 
186
187 //EED 2017-12-7         imageoutput = vtkImageData::New();
188
189 }
190         
191 //===== 
192 // Before editing this file, make sure it's a file of your own (i.e.: it wasn't generated from xml description; if so : your modifications will be lost)
193 //===== 
194 void CreateImage::bbUserFinalizeProcessing()
195 {
196
197 //  THE FINALIZATION METHOD BODY :
198 //    Here does nothing 
199 //    but this is where you should desallocate the internal/output pointers 
200 //    if any
201         imageoutput->Delete();
202 }
203
204 }// EO namespace bbvtk
205
206