2 # ---------------------------------------------------------------------
4 # Copyright (c) CREATIS (Centre de Recherche en Acquisition et Traitement de l'Image
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
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.
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
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 # ------------------------------------------------------------------------ */
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)
31 #include "bbvtkTemporalPicker.h"
32 #include "bbvtkPackage.h"
34 #include "creaVtk_MACROS.h"
39 BBTK_ADD_BLACK_BOX_TO_PACKAGE(vtk,TemporalPicker)
40 BBTK_BLACK_BOX_IMPLEMENTATION(TemporalPicker,bbtk::AtomicBlackBox);
42 // 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)
46 void TemporalPicker::Process_TemporaryPicker3DT()
48 std::vector<double> result;
49 if (bbGetInputInLst().size()>0)
52 int sizeX,sizeY,sizeZ,sizeT=bbGetInputInLst().size();
54 //EED 2017-01-01 Migration VTK7
55 #if VTK_MAJOR_VERSION <= 5
56 bbGetInputInLst()[0]->GetWholeExtent(ext);
58 bbGetInputInLst()[0]->GetExtent(ext);
61 sizeX = ext[1]-ext[0]+1;
62 sizeY = ext[3]-ext[2]+1;
63 sizeZ = ext[5]-ext[4]+1;
65 if (bbGetInputPoint().size()>=3)
67 int px = bbGetInputPoint()[0];
68 int py = bbGetInputPoint()[1];
69 int pz = bbGetInputPoint()[2];
70 int minX = px-bbGetInputSizeRegion()-1;
71 int maxX = px+bbGetInputSizeRegion()-1;
72 int minY = py-bbGetInputSizeRegion()-1;
73 int maxY = py+bbGetInputSizeRegion()-1;
74 int minZ = pz-bbGetInputSizeRegion()-1;
75 int maxZ = pz+bbGetInputSizeRegion()-1;
87 long int index = px + py*sizeX + pz*sizeX*sizeY;
89 DEF_POINTER_IMAGE_VTK_CREA(vIn,ssIn,pIn,stIn,bbGetInputInLst()[0] )
93 pIn=(char*)( bbGetInputInLst()[t]->GetScalarPointer() );
97 GETVALUE2_VTK_CREA(vIn,pIn,stIn,index)
101 printf("EED Warnning !!!!!! TemporalPicker::Process Clean this method region 3D calcule missing ...........\n");
102 printf("EED Warnning !!!!!! TemporalPicker::Process Clean this method region 3D calcule missing ...........\n");
103 printf("EED Warnning !!!!!! TemporalPicker::Process Clean this method region 3D calcule missing ...........\n");
104 printf("EED Warnning !!!!!! TemporalPicker::Process Clean this method region 3D calcule missing ...........\n");
105 printf("EED Warnning !!!!!! TemporalPicker::Process Clean this method region 3D calcule missing ...........\n");
106 printf("EED Warnning !!!!!! TemporalPicker::Process Clean this method region 3D calcule missing ...........\n");
107 printf("EED Warnning !!!!!! TemporalPicker::Process Clean this method region 3D calcule missing ...........\n");
108 printf("EED Warnning !!!!!! TemporalPicker::Process Clean this method region 3D calcule missing ...........\n");
112 for(i=minX;i<=maxX;i++)
114 for(j=minY;j<=maxY;j++)
116 // if ((i>=0) && (i<sizeX) && (j>=0) && (j<sizeY) )
118 acum = acum + bbGetInputIn()->GetScalarComponentAsDouble(i, j, k, 0);
127 result.push_back( acum/numElem ); /// ???????????? Aqui ????
129 result.push_back( 0 );
134 } else {// bbGetInputPoint
135 printf("ERROR: Input:Point is not good defined in TemporalPicker Box..\n ");
137 } else {// bbGetInputIn
138 printf("ERROR: Missing Input:In vtkImageData* in TemporalPicker Box..\n ");
140 bbSetOutputOut(result);
144 //--------------------------------------------------------------------------------------------
145 void TemporalPicker::Process_TemporaryPicker2DT()
147 std::vector<double> result;
148 if (bbGetInputIn()!=NULL)
151 int sizeX,sizeY,sizeZ;
153 //EED 2017-01-01 Migration VTK7
154 #if VTK_MAJOR_VERSION <= 5
155 bbGetInputIn()->GetWholeExtent(ext);
157 bbGetInputIn()->GetExtent(ext);
160 sizeX=ext[1]-ext[0]+1;
161 sizeY=ext[3]-ext[2]+1;
162 sizeZ=ext[5]-ext[4]+1;
165 if (bbGetInputPoint().size()>=2)
167 int px=bbGetInputPoint()[0];
168 int py=bbGetInputPoint()[1];
169 //EED Eraseme int pz=bbGetInputPoint()[2];
171 int minX,maxX,minY,maxY;
172 minX = px-bbGetInputSizeRegion()-1;
173 maxX = px+bbGetInputSizeRegion()-1;
174 minY = py-bbGetInputSizeRegion()-1;
175 maxY = py+bbGetInputSizeRegion()-1;
186 long int index = px+py*sizeX;
187 long int stepIndex = sizeX*sizeY;
188 DEF_POINTER_IMAGE_VTK_CREA(vIn,ssIn,pIn,stIn,bbGetInputIn() )
190 for (t=0;t<sizeZ;t++)
195 GETVALUE2_VTK_CREA(vIn,pIn,stIn,index)
198 index = index + stepIndex;
200 printf("EED Warnning !!!!!! TemporalPicker::Process Clean this method region ....2D...... calcule missing ...........\n");
201 printf("EED Warnning !!!!!! TemporalPicker::Process Clean this method region ....2D...... calcule missing ...........\n");
202 printf("EED Warnning !!!!!! TemporalPicker::Process Clean this method region ....2D...... calcule missing ...........\n");
203 printf("EED Warnning !!!!!! TemporalPicker::Process Clean this method region ....2D...... calcule missing ...........\n");
204 printf("EED Warnning !!!!!! TemporalPicker::Process Clean this method region ....2D...... calcule missing ...........\n");
205 printf("EED Warnning !!!!!! TemporalPicker::Process Clean this method region ....2D...... calcule missing ...........\n");
206 printf("EED Warnning !!!!!! TemporalPicker::Process Clean this method region ....2D...... calcule missing ...........\n");
207 printf("EED Warnning !!!!!! TemporalPicker::Process Clean this method region ....2D...... calcule missing ...........\n");
208 printf("EED Warnning !!!!!! TemporalPicker::Process Clean this method region ....2D...... calcule missing ...........\n");
211 for(i=minX;i<=maxX;i++)
213 for(j=minY;j<=maxY;j++)
215 // if ((i>=0) && (i<sizeX) && (j>=0) && (j<sizeY) )
217 acum = acum + bbGetInputIn()->GetScalarComponentAsDouble(i, j, k, 0);
226 result.push_back( acum/numElem ); /// Aqui ?????
228 result.push_back( 0 );
233 } else {// bbGetInputPoint
234 printf("ERROR: Input:Point is not good defined in TemporalPicker Box..\n ");
236 } else {// bbGetInputIn
237 printf("ERROR: Missing Input:In vtkImageData* in TemporalPicker Box..\n ");
239 bbSetOutputOut(result);
242 void TemporalPicker::Process()
245 // THE MAIN PROCESSING METHOD BODY
246 // Here we simply set the input 'In' value to the output 'Out'
247 // And print out the output value
248 // INPUT/OUTPUT ACCESSORS ARE OF THE FORM :
249 // void bbSet{Input|Output}NAME(const TYPE&)
250 // const TYPE& bbGet{Input|Output}NAME() const
252 // * NAME is the name of the input/output
253 // (the one provided in the attribute 'name' of the tag 'input')
254 // * TYPE is the C++ type of the input/output
255 // (the one provided in the attribute 'type' of the tag 'input')
258 if (bbGetInputInLst().size()>0)
260 Process_TemporaryPicker3DT();
262 Process_TemporaryPicker2DT();
267 // 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)
269 void TemporalPicker::bbUserSetDefaultValues()
272 // SET HERE THE DEFAULT INPUT/OUTPUT VALUES OF YOUR BOX
273 // Here we initialize the input 'In' to 0
275 bbSetInputSizeRegion(1);
279 // 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)
281 void TemporalPicker::bbUserInitializeProcessing()
284 // THE INITIALIZATION METHOD BODY :
286 // but this is where you should allocate the internal/output pointers
292 // 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)
294 void TemporalPicker::bbUserFinalizeProcessing()
297 // THE FINALIZATION METHOD BODY :
299 // but this is where you should desallocate the internal/output pointers
304 // EO namespace bbvtk