]> Creatis software - bbtk.git/blob - packages/vtk/src/bbvtkTemporalPicker.cxx
#3348 BBTK Feature New Normal - VectorFilterDouble (find nearest point) WriteColumn...
[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                                 long int index          = px+py*sizeX;
100                                 long int stepIndex      = sizeX*sizeY;
101                                 DEF_POINTER_IMAGE_VTK_CREA(vIn,ssIn,pIn,stIn,bbGetInputIn() )
102
103                                 for (k=0;k<sizeZ;k++)
104                                 {
105                                         acum    = 0;
106                                         numElem = 0;
107
108                                         GETVALUE2_VTK_CREA(vIn,pIn,stIn,index)
109                                         numElem++;
110                                         acum    = acum  + vIn;
111                                         index   = index + stepIndex;
112 /*
113                                         for(i=minX;i<=maxX;i++)
114                                         { 
115                                                 for(j=minY;j<=maxY;j++)
116                                                 { 
117 //                                                      if ((i>=0) && (i<sizeX)  && (j>=0) && (j<sizeY) )
118 //                                                      { 
119                                                                 acum = acum + bbGetInputIn()->GetScalarComponentAsDouble(i, j, k, 0);
120                                                                 numElem++;
121 //                                                      }// if i j
122                                                 }// for j
123                                         } // for i
124                                         
125 */
126                                         if (numElem>0) 
127                                         {
128                                                 result.push_back( acum/numElem );
129                                         } else {
130                                                 result.push_back( 0 );
131                                         } // numElem
132                                         
133                                 } // for k
134                         } // px py
135                 } else {// bbGetInputPoint
136                         printf("ERROR:  Input:Point is not good defined in TemporalPicker Box..\n ");
137                 } // bbGetInputPoint
138         } else {// bbGetInputIn
139                 printf("ERROR:  Missing Input:In vtkImageData* in TemporalPicker Box..\n ");
140         } // bbGetInputIn
141
142         bbSetOutputOut(result);
143 }
144 //===== 
145 // 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)
146 //===== 
147 void TemporalPicker::bbUserSetDefaultValues()
148 {
149
150 //  SET HERE THE DEFAULT INPUT/OUTPUT VALUES OF YOUR BOX 
151 //    Here we initialize the input 'In' to 0
152         bbSetInputIn(NULL);
153         bbSetInputSizeRegion(1);
154   
155 }
156 //===== 
157 // 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)
158 //===== 
159 void TemporalPicker::bbUserInitializeProcessing()
160 {
161
162 //  THE INITIALIZATION METHOD BODY :
163 //    Here does nothing 
164 //    but this is where you should allocate the internal/output pointers 
165 //    if any 
166
167   
168 }
169 //===== 
170 // 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)
171 //===== 
172 void TemporalPicker::bbUserFinalizeProcessing()
173 {
174
175 //  THE FINALIZATION METHOD BODY :
176 //    Here does nothing 
177 //    but this is where you should desallocate the internal/output pointers 
178 //    if any
179   
180 }
181 }
182 // EO namespace bbvtk
183
184