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)
4 #include "bbvtkInversCrop.h"
5 #include "bbvtkPackage.h"
9 BBTK_ADD_BLACK_BOX_TO_PACKAGE(vtk,InversCrop)
10 BBTK_BLACK_BOX_IMPLEMENTATION(InversCrop,bbtk::AtomicBlackBox);
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)
14 void InversCrop::Process()
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
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')
29 printf("\n\n EED InversCrop::Process Start \n" );
31 if (bbGetInputActive()==true)
33 if ( (bbGetInputImageFix()!=NULL) && (bbGetInputImageMove()!=NULL) )
35 if ( bbGetInputImageFix()->GetScalarType()==bbGetInputImageMove()->GetScalarType() )
41 //EED 2017-01-01 Migration VTK7
42 #if (VTK_MAJOR_VERSION <= 5)
43 bbGetInputImageFix()->GetWholeExtent(ext);
45 #if (VTK_MAJOR_VERSION >= 6)
46 bbGetInputImageFix()->GetExtent(ext);
48 dim[0]= ext[1]-ext[0]+1;
49 dim[1]= ext[3]-ext[2]+1;
51 if (bbGetInputImageFix()->GetDataDimension()==3)
53 dim[2] = ext[5]-ext[4]+1;
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] );
59 if (bbGetInputType()==0)
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();
70 #if (VTK_MAJOR_VERSION >= 6)
71 _imageoutput->AllocateScalars(bbGetInputImageFix()->GetScalarType() , 1);
74 // Duplicating Fix Image
75 long sizeimage = dim[0]*dim[1]*dim[2]*bbGetInputImageFix()->GetScalarSize();
76 memcpy( _imageoutput->GetScalarPointer() , bbGetInputImageFix()->GetScalarPointer() , sizeimage);
78 if (bbGetInputType()==1)
80 _imageoutput=bbGetInputImageFix();
83 // Copy the Move Image
87 //EED 2017-01-01 Migration VTK7
88 #if (VTK_MAJOR_VERSION <= 5)
89 bbGetInputImageMove()->GetWholeExtent(ext);
91 #if (VTK_MAJOR_VERSION >= 6)
92 bbGetInputImageMove()->GetExtent(ext);
94 int dimMoveX = ext[1]-ext[0]+1;
95 int dimMoveY = ext[3]-ext[2]+1;
97 if (bbGetInputImageMove()->GetDataDimension()==3)
99 dimMoveZ = ext[5]-ext[4]+1;
103 printf("EED InversCrop::Process 3 %d %d %d \n",dimMoveX,dimMoveY,dimMoveZ );
107 int spxM = 0; // start px MoveImage
108 int sizeXM = 0; // sizeX MoveImage
109 printf("EED InversCrop::Process 3.1 sizeOrigin %d \n", bbGetInputOrigin().size() );
110 printf("EED InversCrop::Process 3.1 Origin %d %d %d\n", bbGetInputOrigin()[0],bbGetInputOrigin()[1],bbGetInputOrigin()[2] );
112 px = bbGetInputOrigin()[0];
119 sizeXM = dimMoveX-spxM;
120 if (px+sizeXM>=dim[0]) { sizeXM=dim[0]-px; }
121 sizeXM = sizeXM * bbGetInputImageFix()->GetScalarSize();
122 for (k=0; k<dimMoveZ; k++)
124 for (j=0; j<dimMoveY; j++)
126 py = j+bbGetInputOrigin()[1];
127 if (bbGetInputImageMove()->GetDataDimension()==3)
129 pz = k+bbGetInputOrigin()[2];
133 if ( (py<dim[1]) && (pz<dim[2]) &&
134 (py>=0) && (pz>=0) &&
137 memcpy( _imageoutput->GetScalarPointer(px,py,pz) , bbGetInputImageMove()->GetScalarPointer(spxM,j,k) , sizeXM );
142 printf("EED InversCrop::Process 4 %d %d %d \n",px,py,pz );
144 _imageoutput->Modified();
145 } else { // If Image Fixe Move the same GetScalarType
146 printf ("ERROR: InversCrop both ImageFixe and ImageMove need the same format.\n");
147 printf (" type ImageFix:%d type ImageMove:%d\n", bbGetInputImageFix()->GetScalarType(), bbGetInputImageMove()->GetScalarType() );
150 } else { // If Image Fixe Move != NULL
151 printf ("ERROR: InversCrop need ImageFixe and ImageMove to run.\n");
153 bbSetOutputOut(_imageoutput);
156 printf("EED InversCrop::Process End \n" );
161 // 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)
163 void InversCrop::bbUserSetDefaultValues()
165 // SET HERE THE DEFAULT INPUT/OUTPUT VALUES OF YOUR BOX
166 // Here we initialize the input 'In' to 0
167 bbSetInputActive(true);
169 bbSetInputImageFix(NULL);
170 bbSetInputImageMove(NULL);
171 std::vector<int> origin;
175 bbSetInputOrigin(origin);
179 // 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)
181 void InversCrop::bbUserInitializeProcessing()
184 // THE INITIALIZATION METHOD BODY :
186 // but this is where you should allocate the internal/output pointers
192 // 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)
194 void InversCrop::bbUserFinalizeProcessing()
197 // THE FINALIZATION METHOD BODY :
199 // but this is where you should desallocate the internal/output pointers
204 // EO namespace bbvtk