2 # ---------------------------------------------------------------------
4 # Copyright (c) CREATIS (Centre de Recherche en Acquisition et Traitement de l'Image
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
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.
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
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 # ------------------------------------------------------------------------ */
29 // Don't edit this file. This file is generated from xml description..
31 #include "bbvtkRescaleSlopeIntercept.h"
32 #include "bbvtkPackage.h"
34 #include "bbtkStaticLecture.h"
39 BBTK_ADD_BLACK_BOX_TO_PACKAGE(vtk,RescaleSlopeIntercept)
40 BBTK_BLACK_BOX_IMPLEMENTATION(RescaleSlopeIntercept,bbtk::AtomicBlackBox);
42 // Don't edit this file. This file is generated from xml description..
44 void RescaleSlopeIntercept::Process()
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
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;
63 double A=bbGetInputA();
64 double B=bbGetInputB();
66 if (bbGetInputIn()!=0)
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;
78 if (bbGetInputType()==0) // Rescale Slope/Intercept
80 // newValue = value*A+B;
85 if (bbGetInputType()==1) // Invert
87 // newValue = value*(-1) + (range0plusrange1);
89 shift=range0plusrange1;
92 if (bbGetInputType()==2) // Redimension
94 // newValue = ((value-range[0])/difrange)*newdifrange + A;
95 scale=newdifrange/difrange;
96 shift= A - (range[0]*newdifrange/difrange);
99 if (bbGetInputType()==3) // Invert redimension
101 // newValue = ((value*(-1)+range[1])/difrange)*newdifrange + A;
102 scale=-newdifrange/difrange;
103 shift= A + (range[1]*newdifrange/difrange);
107 //EED 2017-01-01 Migration VTK7
108 #if VTK_MAJOR_VERSION <= 5
109 filter1->SetInput( bbGetInputIn() );
111 filter1->SetInputData( bbGetInputIn() );
114 filter1->SetOutputScalarType( VTK_DOUBLE );
115 filter1->SetShift( 0 );
116 filter1->SetScale( scale );
118 //EED 2017-01-01 Migration VTK7
119 #if VTK_MAJOR_VERSION <= 5
120 filter2->SetInput( filter1->GetOutput() );
122 filter2->SetInputData( filter1->GetOutput() );
125 filter2->SetOutputScalarType( outputformat );
126 filter2->SetShift( shift );
127 filter2->SetScale( 1 );
129 //EED 2017-01-01 Migration VTK7
130 #if VTK_MAJOR_VERSION <= 5
131 mchange->SetInput( filter2->GetOutput() );
133 mchange->SetInputData( filter2->GetOutput() );
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() );
143 bbSetOutputOut( NULL );
148 // Don't edit this file. This file is generated from xml description..
150 void RescaleSlopeIntercept::bbUserSetDefaultValues()
153 // SET HERE THE DEFAULT INPUT/OUTPUT VALUES OF YOUR BOX
154 // Here we initialize the input 'In' to 0
159 bbSetInputOutputFormat("SAME");
165 // Don't edit this file. This file is generated from xml description..
167 void RescaleSlopeIntercept::bbUserInitializeProcessing()
169 // THE INITIALIZATION METHOD BODY :
171 // but this is where you should allocate the internal/output pointers
173 filter1 = vtkImageShiftScale::New();
174 filter2 = vtkImageShiftScale::New();
175 mchange = vtkImageChangeInformation::New();
178 // Don't edit this file. This file is generated from xml description..
180 void RescaleSlopeIntercept::bbUserFinalizeProcessing()
183 // THE FINALIZATION METHOD BODY :
185 // but this is where you should desallocate the internal/output pointers
193 // EO namespace bbvtk