]> Creatis software - bbtk.git/blob - packages/vtk/src/bbvtkRescaleSlopeIntercept.cxx
e9cf56dc03e893b951d6bfd9534afaf84810724e
[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 printf("RescaleSlopeIntercept::Process Start\n");
47
48 // THE MAIN PROCESSING METHOD BODY
49 //   Here we simply set the input 'In' value to the output 'Out'
50 //   And print out the output value
51 // INPUT/OUTPUT ACCESSORS ARE OF THE FORM :
52 //    void bbSet{Input|Output}NAME(const TYPE&)
53 //    const TYPE& bbGet{Input|Output}NAME() const 
54 //    Where :
55 //    * NAME is the name of the input/output
56 //      (the one provided in the attribute 'name' of the tag 'input')
57 //    * TYPE is the C++ type of the input/output
58 //      (the one provided in the attribute 'type' of the tag 'input')
59 //    bbSetOutputOut( bbGetInputIn() );
60 //    std::cout << "Output value = " <<bbGetOutputOut() << std::endl;
61   
62         double range[2];
63         double spc[3];
64         int ext[6];
65         double A=bbGetInputA();
66         double B=bbGetInputB();
67         
68         if (bbGetInputIn()!=0)
69         {
70
71
72                 int outputformat = bbtkStaticLecture::GetTypeFormat( bbGetInputOutputFormat() , bbGetInputIn() );
73                 
74                 
75                 bbGetInputIn()->GetScalarRange(range);
76                 bbGetInputIn()->GetSpacing(spc);
77                 bbGetInputIn()->GetExtent( ext );                               
78                 
79                 double range0plusrange1 = range[0]+range[1];
80                 double difrange                 = range[1]-range[0];
81                 double newdifrange              = B-A;
82                 
83                 double shift;
84                 double scale;
85                 
86                 if (bbGetInputType()==0) // Rescale Slope/Intercept
87                 { 
88                         //                      newValue = value*A+B;
89                         scale = A;
90                         shift = B;
91                 } // if type 0
92                 
93                 if (bbGetInputType()==1) // Invert
94                 { 
95                         //                      newValue = value*(-1) + (range0plusrange1);
96                         scale=-1;
97                         shift=range0plusrange1;
98                 } // if type 1
99                 
100                 if (bbGetInputType()==2) // Redimension
101                 { 
102                         //                      newValue = ((value-range[0])/difrange)*newdifrange + A;
103                         scale=newdifrange/difrange;
104                         shift= A - (range[0]*newdifrange/difrange);
105                 } // if type 2
106                 
107                 if (bbGetInputType()==3) // Invert redimension
108                 { 
109                         //                      newValue = ((value*(-1)+range[1])/difrange)*newdifrange + A;
110                         scale=-newdifrange/difrange;
111                         shift= A + (range[1]*newdifrange/difrange);
112                 } // if type 3
113                 
114
115 //EED 2017-01-01 Migration VTK7
116 #if VTK_MAJOR_VERSION <= 5
117                 filter1->SetInput( bbGetInputIn() );
118 #else
119                 filter1->SetInputData( bbGetInputIn() );
120 #endif
121
122                 filter1->SetOutputScalarType( VTK_DOUBLE );
123                 filter1->SetShift( 0 );
124                 filter1->SetScale( scale );
125                 
126 //EED 2017-01-01 Migration VTK7
127 #if VTK_MAJOR_VERSION <= 5
128                 filter2->SetInput( filter1->GetOutput() );
129 #else
130                 filter2->SetInputData( filter1->GetOutput() );
131 #endif
132
133                 filter2->SetOutputScalarType( outputformat );
134                 filter2->SetShift( shift );
135                 filter2->SetScale( 1 );
136                 
137 //EED 2017-01-01 Migration VTK7
138 #if VTK_MAJOR_VERSION <= 5
139                 mchange->SetInput( filter2->GetOutput() );
140 #else
141                 mchange->SetInputData( filter2->GetOutput() );
142 #endif
143
144                 mchange->SetExtentTranslation( -ext[0], -ext[2], -ext[4] );
145                 mchange->SetOutputSpacing (spc);
146                 filter1->Update();    //important
147                 filter2->Update();    //important
148                 mchange->Update();    //important
149                 bbSetOutputOut( mchange->GetOutput() );
150 printf("RescaleSlopeIntercept::Process A\n");
151                 
152         } else  {
153 printf("RescaleSlopeIntercept::Process B\n");
154                 bbSetOutputOut( NULL );
155         }               // if bbGetInputIn      
156 printf("RescaleSlopeIntercept::Process End\n");
157
158 }
159         
160         
161 //===== 
162 // Don't edit this file. This file is generated from xml description.. 
163 //===== 
164 void RescaleSlopeIntercept::bbUserSetDefaultValues()
165 {
166
167 //  SET HERE THE DEFAULT INPUT/OUTPUT VALUES OF YOUR BOX 
168 //    Here we initialize the input 'In' to 0
169         bbSetInputIn(NULL);
170         bbSetInputType(0);
171         bbSetInputA(1);
172         bbSetInputB(0);
173         bbSetInputOutputFormat("SAME");
174
175         filter1 = NULL;
176         filter2 = NULL;
177         mchange = NULL;
178 }
179 //===== 
180 // Don't edit this file. This file is generated from xml description.. 
181 //===== 
182 void RescaleSlopeIntercept::bbUserInitializeProcessing()
183 {
184
185 //  THE INITIALIZATION METHOD BODY :
186 //    Here does nothing 
187 //    but this is where you should allocate the internal/output pointers 
188 //    if any 
189
190         filter1 = vtkImageShiftScale::New();
191         filter2 = vtkImageShiftScale::New();
192         mchange = vtkImageChangeInformation::New();
193
194   
195 }
196 //===== 
197 // Don't edit this file. This file is generated from xml description.. 
198 //===== 
199 void RescaleSlopeIntercept::bbUserFinalizeProcessing()
200 {
201
202 //  THE FINALIZATION METHOD BODY :
203 //    Here does nothing 
204 //    but this is where you should desallocate the internal/output pointers 
205 //    if any
206         mchange->Delete();              
207         filter1->Delete();
208         filter2->Delete();
209 }
210         
211 }
212 // EO namespace bbvtk
213
214