]> Creatis software - bbtk.git/blob - packages/vtk/src/bbvtkAutoCrop.cxx
25ce22cec908d03e4c456c0dc8e1e55b5e0a2e89
[bbtk.git] / packages / vtk / src / bbvtkAutoCrop.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 "bbvtkAutoCrop.h"
32 #include "bbvtkPackage.h"
33 namespace bbvtk
34 {
35
36 BBTK_ADD_BLACK_BOX_TO_PACKAGE(vtk,AutoCrop)
37 BBTK_BLACK_BOX_IMPLEMENTATION(AutoCrop,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 AutoCrop::Process()
42 {
43
44         printf("EED  AutoCrop::Process Start\n");               
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
58         double value;
59         int i,j,k;
60         int sizeX,sizeY,sizeZ;
61
62         if (bbGetInputIn()!=NULL){
63                 bbGetInputIn()->Update();
64                 int ext[6];
65                 bbGetInputIn()->GetWholeExtent(ext);
66                 sizeX=ext[1]-ext[0]+1;
67                 sizeY=ext[3]-ext[2]+1;
68                 sizeZ=ext[5]-ext[4]+1;
69                 
70                 sizeX=(sizeX/2)*2;
71                 sizeY=(sizeY/2)*2;
72 //              if (_newImage==NULL)
73 //              {
74                         _newImage = vtkImageData::New();
75                         _newImage->Initialize();
76                         _newImage->SetScalarType( bbGetInputIn()->GetScalarType() );
77                         _newImage->SetSpacing( bbGetInputIn()->GetSpacing() );
78                         _newImage->SetNumberOfScalarComponents( bbGetInputIn()->GetNumberOfScalarComponents() );
79                         _newImage->SetDimensions(  sizeX,sizeY,sizeZ );
80                     _newImage->SetWholeExtent(0,sizeX-1,0,sizeY-1,0,sizeZ-1);
81                         _newImage->AllocateScalars();
82 //              }
83         
84
85                 
86                 for (i=0; i<sizeX; i++) 
87                 {
88                          for (j=0; j<sizeY; j++)
89                          {
90                                 for (k=0; k<sizeZ; k++)
91                                 {
92                                         value = bbGetInputIn()->GetScalarComponentAsDouble(i,j,k, 0 );
93                                         _newImage->SetScalarComponentFromDouble(i,j,k, 0, value );
94                                 } // for k
95                         } // for j
96                 } // for i
97                          
98         }// bbGetInputIn
99                          
100    bbSetOutputOut(_newImage);
101                 
102 }
103 //===== 
104 // 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)
105 //===== 
106 void AutoCrop::bbUserSetDefaultValues()
107 {
108
109 //  SET HERE THE DEFAULT INPUT/OUTPUT VALUES OF YOUR BOX 
110 //    Here we initialize the input 'In' to 0
111                  _newImage=NULL;
112                  bbSetInputIn(NULL);
113                  bbSetInputType(0);
114   
115 }
116 //===== 
117 // 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)
118 //===== 
119 void AutoCrop::bbUserInitializeProcessing()
120 {
121
122 //  THE INITIALIZATION METHOD BODY :
123 //    Here does nothing 
124 //    but this is where you should allocate the internal/output pointers 
125 //    if any 
126
127   
128 }
129 //===== 
130 // 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)
131 //===== 
132 void AutoCrop::bbUserFinalizeProcessing()
133 {
134
135 //  THE FINALIZATION METHOD BODY :
136 //    Here does nothing 
137 //    but this is where you should desallocate the internal/output pointers 
138 //    if any
139   
140 }
141 }
142 // EO namespace bbvtk
143
144