]> Creatis software - bbtk.git/blob - packages/vtk/src/bbvtkInversCrop.cxx
8a4bb337ccdb73000ddea1a68143c6d06c1fb42b
[bbtk.git] / packages / vtk / src / bbvtkInversCrop.cxx
1 //===== 
2 // 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)
3 //===== 
4 #include "bbvtkInversCrop.h"
5 #include "bbvtkPackage.h"
6 namespace bbvtk
7 {
8
9 BBTK_ADD_BLACK_BOX_TO_PACKAGE(vtk,InversCrop)
10 BBTK_BLACK_BOX_IMPLEMENTATION(InversCrop,bbtk::AtomicBlackBox);
11 //===== 
12 // 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)
13 //===== 
14 void InversCrop::Process()
15 {
16
17 // THE MAIN PROCESSING METHOD BODY
18 //   Here we simply set the input 'In' value to the output 'Out'
19 //   And print out the output value
20 // INPUT/OUTPUT ACCESSORS ARE OF THE FORM :
21 //    void bbSet{Input|Output}NAME(const TYPE&)
22 //    const TYPE& bbGet{Input|Output}NAME() const 
23 //    Where :
24 //    * NAME is the name of the input/output
25 //      (the one provided in the attribute 'name' of the tag 'input')
26 //    * TYPE is the C++ type of the input/output
27 //      (the one provided in the attribute 'type' of the tag 'input')
28
29 printf("\n\n EED InversCrop::Process Start \n" );
30
31         if (bbGetInputActive()==true)
32         {
33             if ( (bbGetInputImageFix()!=NULL) && (bbGetInputImageMove()!=NULL) )
34             {
35              if ( bbGetInputImageFix()->GetScalarType()==bbGetInputImageMove()->GetScalarType() ) 
36              {
37                 // Creating Image
38                 int dim[3];
39                 int ext[6];
40         
41 //EED 2017-01-01 Migration VTK7
42 #if (VTK_MAJOR_VERSION <= 5) 
43         bbGetInputImageFix()->GetWholeExtent(ext);
44 #endif
45 #if (VTK_MAJOR_VERSION >= 6) 
46         bbGetInputImageFix()->GetExtent(ext);
47 #endif
48                 dim[0]= ext[1]-ext[0]+1;
49                 dim[1]= ext[3]-ext[2]+1;
50                 dim[2] = 1;
51                 if (bbGetInputImageFix()->GetDataDimension()==3) 
52                 {
53                         dim[2] = ext[5]-ext[4]+1;
54                 } 
55                 
56 printf("EED InversCrop::Process 1   %d\n", bbGetInputImageFix()->GetDataDimension()    );
57 printf("EED InversCrop::Process 2   %d %d  %d \n",dim[0],dim[1],dim[2]  );
58
59                 if (bbGetInputType()==0)
60                 {
61                         _imageoutput = vtkImageData::New();
62                         _imageoutput->Initialize();
63                         _imageoutput->SetSpacing( bbGetInputImageFix()->GetSpacing() );
64                         _imageoutput->SetDimensions(  dim[0], dim[1], dim[2] );                 
65 //EED 2017-01-01 Migration VTK7
66 #if (VTK_MAJOR_VERSION <= 5) 
67                         _imageoutput->SetScalarType( bbGetInputImageFix()->GetScalarType() );
68                         _imageoutput->AllocateScalars();
69 #endif
70 #if (VTK_MAJOR_VERSION >= 6) 
71                         _imageoutput->AllocateScalars(bbGetInputImageFix()->GetScalarType() , 1);
72 #endif
73                         
74                         // Duplicating Fix Image
75                         long sizeimage = dim[0]*dim[1]*dim[2]*bbGetInputImageFix()->GetScalarSize();    
76                         memcpy( _imageoutput->GetScalarPointer() , bbGetInputImageFix()->GetScalarPointer() , sizeimage);
77                 }
78                 if (bbGetInputType()==1)
79                 {
80                         _imageoutput=bbGetInputImageFix();
81                 }
82
83                 // Copy the Move Image
84                 int j,k; 
85                 int px,py,pz;
86
87 //EED 2017-01-01 Migration VTK7
88 #if (VTK_MAJOR_VERSION <= 5) 
89                 bbGetInputImageMove()->GetWholeExtent(ext);
90 #endif
91 #if (VTK_MAJOR_VERSION >= 6) 
92                 bbGetInputImageMove()->GetExtent(ext);
93 #endif
94                 int dimMoveX    = ext[1]-ext[0]+1;
95                 int dimMoveY    = ext[3]-ext[2]+1;
96                 int dimMoveZ    = 1;
97                 if (bbGetInputImageMove()->GetDataDimension()==3) 
98                 {
99                         dimMoveZ = ext[5]-ext[4]+1;
100                 } 
101
102                 
103                 printf("EED InversCrop::Process 3   %d %d  %d \n",dimMoveX,dimMoveY,dimMoveZ  );
104
105                 
106                 
107                 int spxM                = 0;  // start px MoveImage
108                 int sizeXM              = 0;  // sizeX MoveImage
109                 px                              = bbGetInputOrigin()[0];
110                 spxM                    = 0;
111                 if (px<0)
112                 { 
113                    spxM = px*(-1);
114                    px   = 0;
115                 }
116                 sizeXM  = dimMoveX-spxM;
117                 if (px+sizeXM>=dim[0]) { sizeXM=dim[0]-px; }
118                 sizeXM  = sizeXM * bbGetInputImageFix()->GetScalarSize();
119                 for (k=0; k<dimMoveZ; k++)
120                 {
121                    for (j=0; j<dimMoveY; j++)
122                    {
123                         py = j+bbGetInputOrigin()[1];
124                                 if (bbGetInputImageMove()->GetDataDimension()==3) 
125                                 {
126                                         pz = k+bbGetInputOrigin()[2];
127                                 } else {
128                                         pz = k;
129                                 }// Dimension 3
130                                 if ( (py<dim[1]) && (pz<dim[2]) &&
131                                  (py>=0)    && (pz>=0)  &&
132                                          (sizeXM>0) ) 
133                                 {
134                                         memcpy( _imageoutput->GetScalarPointer(px,py,pz) , bbGetInputImageMove()->GetScalarPointer(spxM,j,k) , sizeXM );
135                                 }
136
137                    } // for j
138                 } // for k
139 printf("EED InversCrop::Process 4   %d %d  %d \n",px,py,pz  );
140
141                 _imageoutput->Modified();
142         } else { // If Image Fixe Move the same GetScalarType
143                    printf ("ERROR: InversCrop  both ImageFixe and ImageMove need the same format.\n");
144                    printf ("       type ImageFix:%d   type ImageMove:%d\n", bbGetInputImageFix()->GetScalarType(), bbGetInputImageMove()->GetScalarType() );
145
146               }  
147             } else { // If Image Fixe Move != NULL
148                         printf ("ERROR: InversCrop  need ImageFixe and ImageMove to run.\n");
149            } 
150          bbSetOutputOut(_imageoutput);
151
152         } // if Active
153 printf("EED InversCrop::Process End \n" );
154
155 }
156
157 //===== 
158 // 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)
159 //===== 
160 void InversCrop::bbUserSetDefaultValues()
161 {
162 //  SET HERE THE DEFAULT INPUT/OUTPUT VALUES OF YOUR BOX 
163 //    Here we initialize the input 'In' to 0
164    bbSetInputActive(true);
165    bbSetInputType(0);
166    bbSetInputImageFix(NULL);
167    bbSetInputImageMove(NULL);
168    std::vector<int> origin;
169    origin.push_back(0);
170    origin.push_back(0);
171    origin.push_back(0);
172    bbSetInputOrigin(origin);
173    _imageoutput=NULL;
174 }
175 //===== 
176 // 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)
177 //===== 
178 void InversCrop::bbUserInitializeProcessing()
179 {
180
181 //  THE INITIALIZATION METHOD BODY :
182 //    Here does nothing 
183 //    but this is where you should allocate the internal/output pointers 
184 //    if any 
185
186   
187 }
188 //===== 
189 // 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)
190 //===== 
191 void InversCrop::bbUserFinalizeProcessing()
192 {
193
194 //  THE FINALIZATION METHOD BODY :
195 //    Here does nothing 
196 //    but this is where you should desallocate the internal/output pointers 
197 //    if any
198   
199 }
200 }
201 // EO namespace bbvtk
202
203