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