]> Creatis software - bbtk.git/blob - packages/vtk/src/bbvtkRescaleSlopeIntercept.cxx
#3107 BBTK Bug New Normal - branch vtk7itk4 compilation with vtk7
[bbtk.git] / packages / vtk / src / bbvtkRescaleSlopeIntercept.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 // Don't edit this file. This file is generated from xml description.. 
30 //===== 
31 #include "bbvtkRescaleSlopeIntercept.h"
32 #include "bbvtkPackage.h"
33
34 #include "bbtkStaticLecture.h"
35
36 namespace bbvtk
37 {
38
39 BBTK_ADD_BLACK_BOX_TO_PACKAGE(vtk,RescaleSlopeIntercept)
40 BBTK_BLACK_BOX_IMPLEMENTATION(RescaleSlopeIntercept,bbtk::AtomicBlackBox);
41 //===== 
42 // Don't edit this file. This file is generated from xml description.. 
43 //===== 
44 void RescaleSlopeIntercept::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 //    bbSetOutputOut( bbGetInputIn() );
59 //    std::cout << "Output value = " <<bbGetOutputOut() << std::endl;
60   
61         double range[2];
62         double spc[3];
63         int ext[6];
64         double A=bbGetInputA();
65         double B=bbGetInputB();
66         
67         if (bbGetInputIn()!=0)
68         {
69
70
71                 int outputformat = bbtkStaticLecture::GetTypeFormat( bbGetInputOutputFormat() , bbGetInputIn() );
72                 
73                 
74                 bbGetInputIn()->GetScalarRange(range);
75                 bbGetInputIn()->GetSpacing(spc);
76                 bbGetInputIn()->GetExtent( ext );                               
77                 
78                 double range0plusrange1 = range[0]+range[1];
79                 double difrange                 = range[1]-range[0];
80                 double newdifrange              = B-A;
81                 
82                 double shift;
83                 double scale;
84                 
85                 if (bbGetInputType()==0) // Rescale Slope/Intercept
86                 { 
87                         //                      newValue = value*A+B;
88                         scale = A;
89                         shift = B;
90                 } // if type 0
91                 
92                 if (bbGetInputType()==1) // Invert
93                 { 
94                         //                      newValue = value*(-1) + (range0plusrange1);
95                         scale=-1;
96                         shift=range0plusrange1;
97                 } // if type 1
98                 
99                 if (bbGetInputType()==2) // Redimension
100                 { 
101                         //                      newValue = ((value-range[0])/difrange)*newdifrange + A;
102                         scale=newdifrange/difrange;
103                         shift= A - (range[0]*newdifrange/difrange);
104                 } // if type 2
105                 
106                 if (bbGetInputType()==3) // Invert redimension
107                 { 
108                         //                      newValue = ((value*(-1)+range[1])/difrange)*newdifrange + A;
109                         scale=-newdifrange/difrange;
110                         shift= A + (range[1]*newdifrange/difrange);
111                 } // if type 3
112                 
113
114 //EED 2017-01-01 Migration VTK7
115 #if VTK_MAJOR_VERSION <= 5
116                 filter1->SetInput( bbGetInputIn() );
117 #else
118                 filter1->SetInputData( bbGetInputIn() );
119 #endif
120
121                 filter1->SetOutputScalarType( VTK_DOUBLE );
122                 filter1->SetShift( 0 );
123                 filter1->SetScale( scale );
124                 
125 //EED 2017-01-01 Migration VTK7
126 #if VTK_MAJOR_VERSION <= 5
127                 filter2->SetInput( filter1->GetOutput() );
128 #else
129                 filter2->SetInputData( filter1->GetOutput() );
130 #endif
131
132                 filter2->SetOutputScalarType( outputformat );
133                 filter2->SetShift( shift );
134                 filter2->SetScale( 1 );
135                 
136 //EED 2017-01-01 Migration VTK7
137 #if VTK_MAJOR_VERSION <= 5
138                 mchange->SetInput( filter2->GetOutput() );
139 #else
140                 mchange->SetInputData( filter2->GetOutput() );
141 #endif
142
143                 mchange->SetExtentTranslation( -ext[0], -ext[2], -ext[4] );
144                 mchange->SetOutputSpacing (spc);
145                 mchange->Update();    //important
146                 bbSetOutputOut( mchange->GetOutput() );
147                 
148         } else  {
149                 bbSetOutputOut( NULL );
150         }               // if bbGetInputIn      
151 }
152         
153         
154 //===== 
155 // Don't edit this file. This file is generated from xml description.. 
156 //===== 
157 void RescaleSlopeIntercept::bbUserSetDefaultValues()
158 {
159
160 //  SET HERE THE DEFAULT INPUT/OUTPUT VALUES OF YOUR BOX 
161 //    Here we initialize the input 'In' to 0
162         bbSetInputIn(NULL);
163         bbSetInputType(0);
164         bbSetInputA(1);
165         bbSetInputB(0);
166         bbSetInputOutputFormat("SAME");
167
168         filter1 = NULL;
169         filter2 = NULL;
170         mchange = NULL;
171 }
172 //===== 
173 // Don't edit this file. This file is generated from xml description.. 
174 //===== 
175 void RescaleSlopeIntercept::bbUserInitializeProcessing()
176 {
177
178 //  THE INITIALIZATION METHOD BODY :
179 //    Here does nothing 
180 //    but this is where you should allocate the internal/output pointers 
181 //    if any 
182
183         filter1 = vtkImageShiftScale::New();
184         filter2 = vtkImageShiftScale::New();
185         mchange = vtkImageChangeInformation::New();
186
187   
188 }
189 //===== 
190 // Don't edit this file. This file is generated from xml description.. 
191 //===== 
192 void RescaleSlopeIntercept::bbUserFinalizeProcessing()
193 {
194
195 //  THE FINALIZATION METHOD BODY :
196 //    Here does nothing 
197 //    but this is where you should desallocate the internal/output pointers 
198 //    if any
199         mchange->Delete();              
200         filter1->Delete();
201         filter2->Delete();
202 }
203         
204 }
205 // EO namespace bbvtk
206
207