]> Creatis software - bbtk.git/blob - packages/vtk/src/bbvtkTemporalPicker.cxx
Clean code
[bbtk.git] / packages / vtk / src / bbvtkTemporalPicker.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 "bbvtkTemporalPicker.h"
32 #include "bbvtkPackage.h"
33
34 #include "creaVtk_MACROS.h"
35
36 namespace bbvtk
37 {
38
39 BBTK_ADD_BLACK_BOX_TO_PACKAGE(vtk,TemporalPicker)
40 BBTK_BLACK_BOX_IMPLEMENTATION(TemporalPicker,bbtk::AtomicBlackBox);
41 //===== 
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)
43 //===== 
44 void TemporalPicker::Process()
45 {
46
47 // THE MAIN PROCESSING METHOD BODY
48 //   Here we simply set the input 'In' value to the output 'Out'
49 //   And print out the output value
50 // INPUT/OUTPUT ACCESSORS ARE OF THE FORM :
51 //    void bbSet{Input|Output}NAME(const TYPE&)
52 //    const TYPE& bbGet{Input|Output}NAME() const 
53 //    Where :
54 //    * NAME is the name of the input/output
55 //      (the one provided in the attribute 'name' of the tag 'input')
56 //    * TYPE is the C++ type of the input/output
57 //      (the one provided in the attribute 'type' of the tag 'input')
58
59         std::vector<double> result;
60         if (bbGetInputIn()!=NULL)
61         {
62                 int ext[6];
63                 int sizeX,sizeY,sizeZ;
64
65 //EED 2017-01-01 Migration VTK7
66 #if VTK_MAJOR_VERSION <= 5
67                 bbGetInputIn()->GetWholeExtent(ext);
68 #else
69                 bbGetInputIn()->GetExtent(ext);
70 #endif
71
72                 sizeX=ext[1]-ext[0]+1;
73                 sizeY=ext[3]-ext[2]+1;
74                 sizeZ=ext[5]-ext[4]+1;
75                 
76
77                 if (bbGetInputPoint().size()>=2)
78                 {
79                         int px=bbGetInputPoint()[0];
80                         int py=bbGetInputPoint()[1];
81 //EED Eraseme                   int pz=bbGetInputPoint()[2];
82
83                         int minX,maxX,minY,maxY;
84                         minX = px-bbGetInputSizeRegion()-1;
85                         maxX = px+bbGetInputSizeRegion()-1;
86                         minY = py-bbGetInputSizeRegion()-1;
87                         maxY = py+bbGetInputSizeRegion()-1;
88                         
89                         if ( (minX>=0)     && 
90                  (maxX<sizeX)  && 
91                                  (minY>=0)     && 
92                  (maxY<sizeY) )
93                         {
94                                 int i,j,k;
95                                 int numElem;
96                                 double acum;
97
98                                 long int index          = px+py*sizeX;
99                                 long int stepIndex      = sizeX*sizeY;
100                                 DEF_POINTER_IMAGE_VTK_CREA(vIn,ssIn,pIn,stIn,bbGetInputIn() )
101
102                                 for (k=0;k<sizeZ;k++)
103                                 {
104                                         acum    = 0;
105                                         numElem = 0;
106
107                                         GETVALUE2_VTK_CREA(vIn,pIn,stIn,index)
108                                         numElem++;
109                                         acum    = acum  + vIn;
110                                         index   = index + stepIndex;
111 /*
112                                         for(i=minX;i<=maxX;i++)
113                                         { 
114                                                 for(j=minY;j<=maxY;j++)
115                                                 { 
116 //                                                      if ((i>=0) && (i<sizeX)  && (j>=0) && (j<sizeY) )
117 //                                                      { 
118                                                                 acum = acum + bbGetInputIn()->GetScalarComponentAsDouble(i, j, k, 0);
119                                                                 numElem++;
120 //                                                      }// if i j
121                                                 }// for j
122                                         } // for i
123                                         
124 */
125                                         if (numElem>0) 
126                                         {
127                                                 result.push_back( acum/numElem );
128                                         } else {
129                                                 result.push_back( 0 );
130                                         } // numElem
131                                         
132                                 } // for k
133                         } // px py
134                 } else {// bbGetInputPoint
135                         printf("ERROR:  Input:Point is not good defined in TemporalPicker Box..\n ");
136                 } // bbGetInputPoint
137         } else {// bbGetInputIn
138                 printf("ERROR:  Missing Input:In vtkImageData* in TemporalPicker Box..\n ");
139         } // bbGetInputIn
140         bbSetOutputOut(result);
141 }
142 //===== 
143 // 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)
144 //===== 
145 void TemporalPicker::bbUserSetDefaultValues()
146 {
147
148 //  SET HERE THE DEFAULT INPUT/OUTPUT VALUES OF YOUR BOX 
149 //    Here we initialize the input 'In' to 0
150         bbSetInputIn(NULL);
151         bbSetInputSizeRegion(1);
152   
153 }
154 //===== 
155 // 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)
156 //===== 
157 void TemporalPicker::bbUserInitializeProcessing()
158 {
159
160 //  THE INITIALIZATION METHOD BODY :
161 //    Here does nothing 
162 //    but this is where you should allocate the internal/output pointers 
163 //    if any 
164
165   
166 }
167 //===== 
168 // 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)
169 //===== 
170 void TemporalPicker::bbUserFinalizeProcessing()
171 {
172
173 //  THE FINALIZATION METHOD BODY :
174 //    Here does nothing 
175 //    but this is where you should desallocate the internal/output pointers 
176 //    if any
177   
178 }
179 }
180 // EO namespace bbvtk
181
182