]> Creatis software - creaRigidRegistration.git/blob - PackRecalage/src/bbPackRecalageTransform3D1PointBox.cxx
Feature #1766 Add licence terms for all files.
[creaRigidRegistration.git] / PackRecalage / src / bbPackRecalageTransform3D1PointBox.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 "bbPackRecalageTransform3D1PointBox.h"
28 #include "bbPackRecalagePackage.h"
29 namespace bbPackRecalage
30 {
31
32 BBTK_ADD_BLACK_BOX_TO_PACKAGE(PackRecalage,Transform3D1PointBox)
33 BBTK_BLACK_BOX_IMPLEMENTATION(Transform3D1PointBox,bbtk::AtomicBlackBox);
34 void Transform3D1PointBox::Process()
35 {
36         if(!bbGetInputCenterPoint().empty())
37         {
38                 //      The inputs are set in the library transformer
39                 transformer->SetCenterPoint( bbGetInputCenterPoint() );
40                 transformer->SetAngleX( bbGetInputAngleX() );
41                 transformer->SetAngleY( bbGetInputAngleY() );
42                 transformer->SetAngleZ( bbGetInputAngleZ() );
43                 transformer->SetScaleX( bbGetInputScaleX() );
44                 transformer->SetScaleY( bbGetInputScaleY() );
45                 transformer->SetScaleZ( bbGetInputScaleZ() );
46
47                 // The calculation of the transformations are made
48                 transformer->Run();
49                 // We get the results of transformer and set it as result of this box
50                 bbSetOutputOut( transformer->GetResult() );                     
51         }
52         else
53         {
54                 bbSetOutputOut( NULL );
55         }
56 }
57 void Transform3D1PointBox::bbUserSetDefaultValues()
58 {
59         //We initialize the points with an empty vector, the angle in 0 and the scales in 1   
60         std::vector<int> nuevo(3,0);
61         nuevo.push_back(0);
62         bbSetInputCenterPoint(nuevo); 
63         bbSetInputAngleX(0);
64         bbSetInputAngleY(0);
65         bbSetInputAngleZ(0);
66         bbSetInputScaleX(100);
67         bbSetInputScaleY(100);
68         bbSetInputScaleZ(100);
69         bbSetOutputOut(NULL);
70 }
71 void Transform3D1PointBox::bbUserInitializeProcessing()
72 {
73         //We initialize the transformer
74         transformer = new Transformer3D1Point();
75 }
76 void Transform3D1PointBox::bbUserFinalizeProcessing()
77 {
78         delete transformer;
79 }
80 }
81 // EO namespace bbPackRecalage
82
83