]> Creatis software - bbtk.git/blob - packages/vtk/src/bbvtkInversCrop.cxx
#3467 Bug: InvertCrop Dimension of 2D or 3D
[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                                 pz = k+bbGetInputOrigin()[2];
125                                 if ( (py<dim[1]) && (pz<dim[2]) &&
126                                  (py>=0)    && (pz>=0)  &&
127                                          (sizeXM>0) ) 
128                                 {
129                                         memcpy( _imageoutput->GetScalarPointer(px,py,pz) , bbGetInputImageMove()->GetScalarPointer(spxM,j,k) , sizeXM );
130                                 }
131
132                    } // for j
133                 } // for k
134                 _imageoutput->Modified();
135         } else { // If Image Fixe Move the same GetScalarType
136                    printf ("ERROR: InversCrop  both ImageFixe and ImageMove need the same format.\n");
137                    printf ("       type ImageFix:%d   type ImageMove:%d\n", bbGetInputImageFix()->GetScalarType(), bbGetInputImageMove()->GetScalarType() );
138
139               }  
140             } else { // If Image Fixe Move != NULL
141                         printf ("ERROR: InversCrop  need ImageFixe and ImageMove to run.\n");
142            } 
143          bbSetOutputOut(_imageoutput);
144
145         } // if Active
146 printf("EED InversCrop::Process End \n" );
147
148 }
149
150 //===== 
151 // 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)
152 //===== 
153 void InversCrop::bbUserSetDefaultValues()
154 {
155 //  SET HERE THE DEFAULT INPUT/OUTPUT VALUES OF YOUR BOX 
156 //    Here we initialize the input 'In' to 0
157    bbSetInputActive(true);
158    bbSetInputType(0);
159    bbSetInputImageFix(NULL);
160    bbSetInputImageMove(NULL);
161    std::vector<int> origin;
162    origin.push_back(0);
163    origin.push_back(0);
164    origin.push_back(0);
165    bbSetInputOrigin(origin);
166    _imageoutput=NULL;
167 }
168 //===== 
169 // 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)
170 //===== 
171 void InversCrop::bbUserInitializeProcessing()
172 {
173
174 //  THE INITIALIZATION METHOD BODY :
175 //    Here does nothing 
176 //    but this is where you should allocate the internal/output pointers 
177 //    if any 
178
179   
180 }
181 //===== 
182 // 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)
183 //===== 
184 void InversCrop::bbUserFinalizeProcessing()
185 {
186
187 //  THE FINALIZATION METHOD BODY :
188 //    Here does nothing 
189 //    but this is where you should desallocate the internal/output pointers 
190 //    if any
191   
192 }
193 }
194 // EO namespace bbvtk
195
196