]> Creatis software - bbtk.git/blob - packages/vtk/src/bbvtkMetaImageWriter.cxx
Clean code
[bbtk.git] / packages / vtk / src / bbvtkMetaImageWriter.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 "bbvtkMetaImageWriter.h"
5 #include "bbvtkPackage.h"
6
7 #include <vtkExtractVOI.h> 
8 #include <vtkMetaImageWriter.h> 
9
10 #include "vtkJSONImageWriter.h"
11 #include "vtkXMLImageDataWriter.h"
12 #include "vtkXMLDataSetWriter.h"
13 #include "vtkDataSetWriter.h"
14 #include "vtkPDataSetWriter.h"
15 #include "vtkXMLWriter.h"
16
17 namespace bbvtk
18 {
19
20 BBTK_ADD_BLACK_BOX_TO_PACKAGE(vtk,MetaImageWriter)
21 BBTK_BLACK_BOX_IMPLEMENTATION(MetaImageWriter,bbtk::AtomicBlackBox);
22
23
24
25 void MetaImageWriter::Save_mhdb( std::string filename  , vtkImageData* img ,int sizeB)
26 {
27         int i,j,k;
28         int ext[6];
29         int dim[3];
30         int elementType=img->GetScalarType();
31         
32         img->GetExtent(ext);
33         dim[0]  = ext[1]-ext[0]+1;
34         dim[1]  = ext[3]-ext[2]+1;
35         dim[2]  = ext[5]-ext[4]+1;
36         int bsx = ceil((double)dim[0]/(double)sizeB);
37         int bsy = ceil((double)dim[1]/(double)sizeB);
38         int bsz = ceil((double)dim[2]/(double)sizeB);
39         int voi[6];
40         std::string filenameBlock;      
41         std::string filenameBlockVti;   
42         if (filename.substr(filename.size()-5) == ".mhdb")  
43         { 
44                 std::string cmd;
45 //              cmd="rm -rf "+filename;
46                 system( cmd.c_str() );
47                 cmd="mkdir "+filename;
48                 system( cmd.c_str() );
49         } 
50         
51         std::string fileinfoname=filename+"/info.dat";
52         FILE *ff=fopen(fileinfoname.c_str(),"w");
53           fprintf(ff,"SizeBlock = %d\n",sizeB);
54           fprintf(ff,"DimSize = %d %d %d\n" , dim[0],dim[1],dim[2] );
55           fprintf(ff,"ElementType = %d\n", elementType );
56         fclose(ff);     
57         
58         for (i=0;i<bsx;i++)
59         {
60                 for (j=0;j<bsy;j++)
61                 {
62                         for (k=0;k<bsz;k++)
63                         {
64                                 voi[0]  = i*sizeB;
65                                 voi[1]  = voi[0]+(sizeB-1);
66                                 voi[2]  = j*sizeB;
67                                 voi[3]  = voi[2]+(sizeB-1);
68                                 voi[4]  = k*sizeB;
69                                 voi[5]  = voi[4]+(sizeB-1);
70                                 if (voi[1]>=dim[0]) { voi[1]=dim[0]-1; } 
71                                 if (voi[3]>=dim[1]) { voi[3]=dim[1]-1; } 
72                                 if (voi[5]>=dim[2]) { voi[5]=dim[2]-1; } 
73                                 vtkExtractVOI *extract = vtkExtractVOI::New();
74                                 extract->SetInputData( img );
75                                 extract->SetVOI(voi);   
76                                 extract->UpdateWholeExtent();
77                                 extract->Modified();
78                                 extract->Update();
79                                 filenameBlock           =filename+"/mhdb-"+ std::to_string(i)+"-"+ std::to_string(j)+"-"+ std::to_string(k)+".mha";
80                                 vtkMetaImageWriter* w = vtkMetaImageWriter::New();
81                                 w->SetInputData( extract->GetOutput() );
82                                 w->SetCompression(true);  
83                                 w->SetFileDimensionality(bbGetInputIn()->GetDataDimension());   // NTU
84                                 w->SetFileName( filenameBlock.c_str() );  
85                                 w->Write();
86                                 w->Delete();
87                                 
88 /* Borrame
89                                 filenameBlockVti=filenameBlock+"-ZLib.vti";
90                                 vtkXMLImageDataWriter *writer = vtkXMLImageDataWriter::New();
91                                 writer->SetDataModeToBinary();
92 //                              writer->SetCompressionLevel(5);
93                                 writer->SetCompressorTypeToZLib();
94                                 writer->SetFileName( filenameBlockVti.c_str() );
95                                 writer->SetInputData( bbGetInputIn() );
96                                 writer->Write();
97 */
98     
99                                 extract->Delete();
100                         } // for k
101                 } // for j
102         } // for i
103 }
104
105
106
107 //===== 
108 // 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)
109 //===== 
110 void MetaImageWriter::Process()
111 {
112 // THE MAIN PROCESSING METHOD BODY
113 //   Here we simply set the input 'In' value to the output 'Out'
114 //   And print out the output value
115 // INPUT/OUTPUT ACCESSORS ARE OF THE FORM :
116 //    void bbSet{Input|Output}NAME(const TYPE&)
117 //    const TYPE& bbGet{Input|Output}NAME() const 
118 //    Where :
119 //    * NAME is the name of the input/output
120 //      (the one provided in the attribute 'name' of the tag 'input')
121 //    * TYPE is the C++ type of the input/output
122 //      (the one provided in the attribute 'type' of the tag 'input')
123
124 //EED 2017-01-01 Migration VTK7
125 #if VTK_MAJOR_VERSION <= 5
126    bbGetInputIn()->Update();
127 #else
128         // ...
129 #endif
130         std::string userGivenName = bbGetInputFilename();
131         if (bbGetInputIn()!=NULL)
132         {
133                 if (userGivenName.substr(userGivenName.size()-5) == ".mhdb")  
134                 { 
135                         Save_mhdb( userGivenName , bbGetInputIn() , bbGetInputSizeBlock() );
136                 } else {
137                                 if (!((userGivenName.substr(userGivenName.size()-4) == ".mhd") || (userGivenName.substr(userGivenName.size()-4) == ".mha")))  //JPR
138                                 { 
139                                         userGivenName += ".mhd";
140                                 } 
141                            vtkMetaImageWriter* w = vtkMetaImageWriter::New();
142         //EED 2017-01-01 Migration VTK7
143         #if VTK_MAJOR_VERSION <= 5
144                                  w->SetInput(bbGetInputIn());
145         #else
146                                  w->SetInputData(bbGetInputIn());
147         #endif
148                                  w->SetCompression(bbGetInputCompression());  
149                                  w->SetFileDimensionality(bbGetInputIn()->GetDataDimension());  // NTU
150                                  w->SetFileName(userGivenName.c_str());  
151                                  //w->SetFileName(bbGetInputFilename().c_str());                                // JPR
152                                  w->Write();
153                                  w->Delete();
154                 } // .mhdb
155         } // bbGetInputIn()!=NULL
156 }
157
158 //===== 
159 // 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)
160 //===== 
161 void MetaImageWriter::bbUserSetDefaultValues()
162 {
163
164 //  SET HERE THE DEFAULT INPUT/OUTPUT VALUES OF YOUR BOX 
165 //    Here we initialize the input 'In' to 0
166    bbSetInputCompression(false);
167    bbSetInputSizeBlock(20);  
168 }
169
170 //===== 
171 // 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)
172 //===== 
173 void MetaImageWriter::bbUserInitializeProcessing()
174 {
175 //  THE INITIALIZATION METHOD BODY :
176 //    Here does nothing 
177 //    but this is where you should allocate the internal/output pointers 
178 //    if any
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 MetaImageWriter::bbUserFinalizeProcessing()
185 {
186 //  THE FINALIZATION METHOD BODY :
187 //    Here does nothing 
188 //    but this is where you should desallocate the internal/output pointers 
189 //    if any
190 }
191
192 } // EO namespace bbvtk
193
194