]> Creatis software - bbtk.git/blob - packages/vtk/src/bbvtkTemporalPicker.cxx
0afbc5d7fe318878f5302c457afabe9d8b357043
[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         
60         std::vector<double> result;
61         if (bbGetInputIn()!=NULL)
62         {
63                 int ext[6];
64                 int sizeX,sizeY,sizeZ;
65
66 //EED 2017-01-01 Migration VTK7
67 #if VTK_MAJOR_VERSION <= 5
68                 bbGetInputIn()->GetWholeExtent(ext);
69 #else
70                 bbGetInputIn()->GetExtent(ext);
71 #endif
72
73                 sizeX=ext[1]-ext[0]+1;
74                 sizeY=ext[3]-ext[2]+1;
75                 sizeZ=ext[5]-ext[4]+1;
76                 
77
78                 if (bbGetInputPoint().size()>=2)
79                 {
80                         int px=bbGetInputPoint()[0];
81                         int py=bbGetInputPoint()[1];
82 //EED Eraseme                   int pz=bbGetInputPoint()[2];
83
84                         int minX,maxX,minY,maxY;
85                         minX = px-bbGetInputSizeRegion()-1;
86                         maxX = px+bbGetInputSizeRegion()-1;
87                         minY = py-bbGetInputSizeRegion()-1;
88                         maxY = py+bbGetInputSizeRegion()-1;
89                         
90                         if ( (minX>=0)     && 
91                  (maxX<sizeX)  && 
92                                  (minY>=0)     && 
93                  (maxY<sizeY) )
94                         {
95                                 int i,j,k;
96                                 int numElem;
97                                 double acum;
98
99
100                                 long int index          = px+py*sizeX;
101                                 long int stepIndex      = sizeX*sizeY;
102                                 DEF_POINTER_IMAGE_VTK_CREA(vIn,ssIn,pIn,stIn,bbGetInputIn() )
103
104                                 for (k=0;k<sizeZ;k++)
105                                 {
106                                         acum    = 0;
107                                         numElem = 0;
108
109                                         GETVALUE2_VTK_CREA(vIn,pIn,stIn,index)
110                                         numElem++;
111                                         acum    = acum  + vIn;
112                                         index   = index + stepIndex;
113 /*
114                                         for(i=minX;i<=maxX;i++)
115                                         { 
116                                                 for(j=minY;j<=maxY;j++)
117                                                 { 
118 //                                                      if ((i>=0) && (i<sizeX)  && (j>=0) && (j<sizeY) )
119 //                                                      { 
120                                                                 acum = acum + bbGetInputIn()->GetScalarComponentAsDouble(i, j, k, 0);
121                                                                 numElem++;
122 //                                                      }// if i j
123                                                 }// for j
124                                         } // for i
125                                         
126 */
127
128
129
130                                         if (numElem>0) 
131                                         {
132                                                 result.push_back( acum/numElem );
133                                         } else {
134                                                 result.push_back( 0 );
135                                         } // numElem
136                                         
137                                 } // for k
138                         } // px py
139                 } else {// bbGetInputPoint
140                         printf("ERROR:  Input:Point is not good defined in TemporalPicker Box..\n ");
141                 } // bbGetInputPoint
142         } else {// bbGetInputIn
143                 printf("ERROR:  Missing Input:In vtkImageData* in TemporalPicker Box..\n ");
144         } // bbGetInputIn
145
146         bbSetOutputOut(result);
147 }
148 //===== 
149 // 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)
150 //===== 
151 void TemporalPicker::bbUserSetDefaultValues()
152 {
153
154 //  SET HERE THE DEFAULT INPUT/OUTPUT VALUES OF YOUR BOX 
155 //    Here we initialize the input 'In' to 0
156         bbSetInputIn(NULL);
157         bbSetInputSizeRegion(1);
158   
159 }
160 //===== 
161 // 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)
162 //===== 
163 void TemporalPicker::bbUserInitializeProcessing()
164 {
165
166 //  THE INITIALIZATION METHOD BODY :
167 //    Here does nothing 
168 //    but this is where you should allocate the internal/output pointers 
169 //    if any 
170
171   
172 }
173 //===== 
174 // 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)
175 //===== 
176 void TemporalPicker::bbUserFinalizeProcessing()
177 {
178
179 //  THE FINALIZATION METHOD BODY :
180 //    Here does nothing 
181 //    but this is where you should desallocate the internal/output pointers 
182 //    if any
183   
184 }
185 }
186 // EO namespace bbvtk
187
188