]> Creatis software - bbtk.git/blob - packages/vtk/src/bbvtkImageVtkProperties.cxx
#2841 BBTK Bug New Normal - bbpConfigurator Cleaning string package:boxname ->...
[bbtk.git] / packages / vtk / src / bbvtkImageVtkProperties.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 // Before editing this file, make sure it's a file of your own (i.e.: it wasn't generated from xml description; if so : your modifications will be lost)
30 //===== 
31 #include "bbvtkImageVtkProperties.h"
32 #include "bbvtkPackage.h"
33 namespace bbvtk
34 {
35
36 BBTK_ADD_BLACK_BOX_TO_PACKAGE(vtk,ImageVtkProperties)
37 BBTK_BLACK_BOX_IMPLEMENTATION(ImageVtkProperties,bbtk::AtomicBlackBox);
38 //===== 
39 // Before editing this file, make sure it's a file of your own (i.e.: it wasn't generated from xml description; if so : your modifications will be lost)
40 //===== 
41 void ImageVtkProperties::Process()
42 {
43         unsigned int dim;
44         int ext[6];
45         double spc[3];
46         double range[2];
47         std::string nametype;
48         int numberoOfComponents;
49         std::vector<int> vsize;
50         std::vector<float> vspacing;
51         std::vector<float> vrange;
52
53         if ( bbGetInputIn() )
54         {
55                 bbGetInputIn()->Modified();
56                 bbGetInputIn()->Update();
57                 
58                 bbGetInputIn()->GetWholeExtent(ext);
59                 vsize.push_back(ext[1]-ext[0]+1);
60                 vsize.push_back(ext[3]-ext[2]+1);
61                 vsize.push_back(ext[5]-ext[4]+1);
62                 
63                 dim = 0;
64                 if (vsize[0]>1) dim++;
65                 if (vsize[1]>1) dim++;
66                 if (vsize[2]>1) dim++;
67                 
68                 bbGetInputIn()->GetScalarRange(range);
69                 numberoOfComponents=bbGetInputIn()->GetNumberOfScalarComponents();
70         
71                 bbGetInputIn()->GetSpacing(spc);
72                 for (unsigned int i=0;i<dim;++i) 
73                 {
74                         vspacing.push_back((float)spc[i]);
75                 }
76
77                 vrange.push_back((float)range[0]);
78                 vrange.push_back((float)range[1]);
79
80                 if (bbGetInputIn()->GetScalarType()==VTK_BIT)                           nametype="VTK_BIT";                     // 1
81                 if (bbGetInputIn()->GetScalarType()==VTK_CHAR)                          nametype="VTK_CHAR";                    // 2
82                 if (bbGetInputIn()->GetScalarType()==VTK_SIGNED_CHAR)           nametype="VTK_SIGNED_CHAR";     // 15
83                 if (bbGetInputIn()->GetScalarType()==VTK_UNSIGNED_CHAR)         nametype="VTK_UNSIGNED_CHAR";   // 3
84                 if (bbGetInputIn()->GetScalarType()==VTK_SHORT)                         nametype="VTK_SHORT";                   // 4
85                 if (bbGetInputIn()->GetScalarType()==VTK_UNSIGNED_SHORT)        nametype="VTK_UNSIGNED_SHORT";  // 5
86                 if (bbGetInputIn()->GetScalarType()==VTK_INT)                           nametype="VTK_INT";             // 6
87                 if (bbGetInputIn()->GetScalarType()==VTK_UNSIGNED_INT)          nametype="VTK_UNSIGNED_INT";    // 7
88                 if (bbGetInputIn()->GetScalarType()==VTK_LONG)                          nametype="VTK_LONG";            // 8  
89                 if (bbGetInputIn()->GetScalarType()==VTK_UNSIGNED_LONG)         nametype="VTK_UNSIGNED_LONG";   // 9
90                 if (bbGetInputIn()->GetScalarType()==VTK_FLOAT)                         nametype="VTK_FLOAT";           // 10
91                 if (bbGetInputIn()->GetScalarType()==VTK_DOUBLE)                        nametype="VTK_DOUBLE";          // 11
92         } else {        
93                 dim                                     = 0;            
94                 numberoOfComponents     = 0;
95                 vsize.push_back(0);
96                 vsize.push_back(0);
97                 vsize.push_back(0);
98                 vspacing.push_back(0);
99                 vspacing.push_back(0);
100                 vspacing.push_back(0);
101                 vrange.push_back(0);
102                 vrange.push_back(0);
103                 nametype                        = "VOID";                               
104         }       
105         bbSetOutputDimension( dim );
106         bbSetOutputSize( vsize );
107         bbSetOutputSpacing( vspacing );
108         bbSetOutputMinMax( vrange );
109         bbSetOutputTypeName( nametype );
110         bbSetOutputComponents( numberoOfComponents );
111         
112 }
113 //===== 
114 // Before editing this file, make sure it's a file of your own (i.e.: it wasn't generated from xml description; if so : your modifications will be lost)
115 //===== 
116 void ImageVtkProperties::bbUserSetDefaultValues()
117 {
118
119 //  SET HERE THE DEFAULT INPUT/OUTPUT VALUES OF YOUR BOX 
120 //    Here we initialize the input 'In' to 0
121 //   bbSetInputIn(0);
122   
123 }
124 //===== 
125 // Before editing this file, make sure it's a file of your own (i.e.: it wasn't generated from xml description; if so : your modifications will be lost)
126 //===== 
127 void ImageVtkProperties::bbUserInitializeProcessing()
128 {
129
130 //  THE INITIALIZATION METHOD BODY :
131 //    Here does nothing 
132 //    but this is where you should allocate the internal/output pointers 
133 //    if any 
134
135   
136 }
137 //===== 
138 // Before editing this file, make sure it's a file of your own (i.e.: it wasn't generated from xml description; if so : your modifications will be lost)
139 //===== 
140 void ImageVtkProperties::bbUserFinalizeProcessing()
141 {
142
143 //  THE FINALIZATION METHOD BODY :
144 //    Here does nothing 
145 //    but this is where you should desallocate the internal/output pointers 
146 //    if any
147   
148 }
149 }
150 // EO namespace bbvtk
151
152