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 "bbvtkMetaImageWriter.h"
5 #include "bbvtkPackage.h"
7 #include <vtkExtractVOI.h>
8 #include <vtkMetaImageWriter.h>
10 #include "vtkJSONImageWriter.h"
11 #include "vtkXMLImageDataWriter.h"
12 #include "vtkXMLDataSetWriter.h"
13 #include "vtkDataSetWriter.h"
14 #include "vtkPDataSetWriter.h"
15 #include "vtkXMLWriter.h"
21 BBTK_ADD_BLACK_BOX_TO_PACKAGE(vtk,MetaImageWriter)
22 BBTK_BLACK_BOX_IMPLEMENTATION(MetaImageWriter,bbtk::AtomicBlackBox);
26 void MetaImageWriter::Save_mhdb( std::string filename , vtkImageData* img ,int sizeB)
31 int elementType=img->GetScalarType();
34 dim[0] = ext[1]-ext[0]+1;
35 dim[1] = ext[3]-ext[2]+1;
36 dim[2] = ext[5]-ext[4]+1;
37 int bsx = ceil((double)dim[0]/(double)sizeB);
38 int bsy = ceil((double)dim[1]/(double)sizeB);
39 int bsz = ceil((double)dim[2]/(double)sizeB);
41 std::string filenameBlock;
42 std::string filenameBlockVti;
43 if (filename.substr(filename.size()-5) == ".mhdb")
46 // cmd="rm -rf "+filename;
47 system( cmd.c_str() );
48 cmd="mkdir "+filename;
49 system( cmd.c_str() );
52 std::string fileinfoname=filename+"/info.dat";
53 FILE *ff=fopen(fileinfoname.c_str(),"w");
54 fprintf(ff,"SizeBlock = %d\n",sizeB);
55 fprintf(ff,"DimSize = %d %d %d\n" , dim[0],dim[1],dim[2] );
56 fprintf(ff,"ElementType = %d\n", elementType );
66 voi[1] = voi[0]+(sizeB-1);
68 voi[3] = voi[2]+(sizeB-1);
70 voi[5] = voi[4]+(sizeB-1);
71 if (voi[1]>=dim[0]) { voi[1]=dim[0]-1; }
72 if (voi[3]>=dim[1]) { voi[3]=dim[1]-1; }
73 if (voi[5]>=dim[2]) { voi[5]=dim[2]-1; }
74 vtkExtractVOI *extract = vtkExtractVOI::New();
75 extract->SetInputData( img );
77 extract->UpdateWholeExtent();
80 filenameBlock =filename+"/mhdb-"+ std::to_string(i)+"-"+ std::to_string(j)+"-"+ std::to_string(k)+".mha";
81 vtkMetaImageWriter* w = vtkMetaImageWriter::New();
82 w->SetInputData( extract->GetOutput() );
83 w->SetCompression(true);
84 w->SetFileDimensionality(bbGetInputIn()->GetDataDimension()); // NTU
85 w->SetFileName( filenameBlock.c_str() );
90 filenameBlockVti=filenameBlock+"-ZLib.vti";
91 vtkXMLImageDataWriter *writer = vtkXMLImageDataWriter::New();
92 writer->SetDataModeToBinary();
93 // writer->SetCompressionLevel(5);
94 writer->SetCompressorTypeToZLib();
95 writer->SetFileName( filenameBlockVti.c_str() );
96 writer->SetInputData( bbGetInputIn() );
109 // 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)
111 void MetaImageWriter::Process()
113 // THE MAIN PROCESSING METHOD BODY
114 // Here we simply set the input 'In' value to the output 'Out'
115 // And print out the output value
116 // INPUT/OUTPUT ACCESSORS ARE OF THE FORM :
117 // void bbSet{Input|Output}NAME(const TYPE&)
118 // const TYPE& bbGet{Input|Output}NAME() const
120 // * NAME is the name of the input/output
121 // (the one provided in the attribute 'name' of the tag 'input')
122 // * TYPE is the C++ type of the input/output
123 // (the one provided in the attribute 'type' of the tag 'input')
125 //EED 2017-01-01 Migration VTK7
126 #if VTK_MAJOR_VERSION <= 5
127 bbGetInputIn()->Update();
131 std::string userGivenName = bbGetInputFilename();
132 if (bbGetInputIn()!=NULL)
134 if (userGivenName.substr(userGivenName.size()-5) == ".mhdb")
136 Save_mhdb( userGivenName , bbGetInputIn() , bbGetInputSizeBlock() );
138 if (!((userGivenName.substr(userGivenName.size()-4) == ".mhd") || (userGivenName.substr(userGivenName.size()-4) == ".mha"))) //JPR
140 userGivenName += ".mhd";
142 vtkMetaImageWriter* w = vtkMetaImageWriter::New();
143 //EED 2017-01-01 Migration VTK7
144 #if VTK_MAJOR_VERSION <= 5
145 w->SetInput(bbGetInputIn());
147 w->SetInputData(bbGetInputIn());
149 w->SetCompression(bbGetInputCompression());
150 w->SetFileDimensionality(bbGetInputIn()->GetDataDimension()); // NTU
151 w->SetFileName(userGivenName.c_str());
152 //w->SetFileName(bbGetInputFilename().c_str()); // JPR
156 } // bbGetInputIn()!=NULL
160 // 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)
162 void MetaImageWriter::bbUserSetDefaultValues()
165 // SET HERE THE DEFAULT INPUT/OUTPUT VALUES OF YOUR BOX
166 // Here we initialize the input 'In' to 0
167 bbSetInputCompression(false);
168 bbSetInputSizeBlock(20);
172 // 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)
174 void MetaImageWriter::bbUserInitializeProcessing()
176 // THE INITIALIZATION METHOD BODY :
178 // but this is where you should allocate the internal/output pointers
183 // 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)
185 void MetaImageWriter::bbUserFinalizeProcessing()
187 // THE FINALIZATION METHOD BODY :
189 // but this is where you should desallocate the internal/output pointers
193 } // EO namespace bbvtk