]> Creatis software - creaRigidRegistration.git/blob - PackRecalage/src/bbPackRecalageTransform2DBox.cxx
Feature #1766 Add licence terms for all files.
[creaRigidRegistration.git] / PackRecalage / src / bbPackRecalageTransform2DBox.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 #
8 #  This software is governed by the CeCILL-B license under French law and 
9 #  abiding by the rules of distribution of free software. You can  use, 
10 #  modify and/ or redistribute the software under the terms of the CeCILL-B 
11 #  license as circulated by CEA, CNRS and INRIA at the following URL 
12 #  http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html 
13 #  or in the file LICENSE.txt.
14 #
15 #  As a counterpart to the access to the source code and  rights to copy,
16 #  modify and redistribute granted by the license, users are provided only
17 #  with a limited warranty  and the software's author,  the holder of the
18 #  economic rights,  and the successive licensors  have only  limited
19 #  liability. 
20 #
21 #  The fact that you are presently reading this means that you have had
22 #  knowledge of the CeCILL-B license and that you accept its terms.
23 # ------------------------------------------------------------------------   
24 */
25
26
27 #include "bbPackRecalageTransform2DBox.h"
28 #include "bbPackRecalagePackage.h"
29 namespace bbPackRecalage
30 {
31
32 BBTK_ADD_BLACK_BOX_TO_PACKAGE(PackRecalage,Transform2DBox)
33 BBTK_BLACK_BOX_IMPLEMENTATION(Transform2DBox,bbtk::AtomicBlackBox);
34 void Transform2DBox::Process()
35 {
36         if(!bbGetInputCenterPoint().empty())
37                 {
38                         //      The inputs are set in the library transformer
39                         transformer->SetCenterPoint( bbGetInputCenterPoint() );
40                         transformer->SetAngle( bbGetInputAngle() );
41                         transformer->SetScaleX( bbGetInputScaleX() );
42                         transformer->SetScaleY( bbGetInputScaleY() );
43                         transformer->SetScaleZ( bbGetInputScaleZ() );
44
45                         // The calculation of the transformations are made
46                         transformer->Run();
47                         // We get the results of transformer and set it as result of this box
48                         bbSetOutputOut( transformer->GetResult() );                     
49                 }
50                 else
51                 {
52                         bbSetOutputOut( NULL );
53                 }
54   
55 }
56 void Transform2DBox::bbUserSetDefaultValues()
57 {
58                 //We initialize the points with an empty vector, the angle in 0 and the scales in 1   
59                 std::vector<int> nuevo(3,0);
60                 nuevo.push_back(0);
61                 bbSetInputCenterPoint(nuevo); 
62                 bbSetInputAngle(0); 
63                 bbSetInputScaleX(100);
64                 bbSetInputScaleY(100);
65                 bbSetInputScaleZ(100);
66                 bbSetOutputOut(NULL);           
67   
68 }
69 void Transform2DBox::bbUserInitializeProcessing()
70 {
71                 //We initialize the transformer
72                 transformer=new Transformer();
73  
74   
75 }
76 void Transform2DBox::bbUserFinalizeProcessing()
77 {
78                 //We delete the transformer
79                 delete transformer;
80   
81 }
82 }
83 // EO namespace bbPackRecalage