1 /*=========================================================================
2 Program: vv http://www.creatis.insa-lyon.fr/rio/vv
5 - University of LYON http://www.universite-lyon.fr/
6 - Léon Bérard cancer center http://www.centreleonberard.fr
7 - CREATIS CNRS laboratory http://www.creatis.insa-lyon.fr
9 This software is distributed WITHOUT ANY WARRANTY; without even
10 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
11 PURPOSE. See the copyright notices for more information.
13 It is distributed under dual licence
15 - BSD See included LICENSE.txt file
16 - CeCILL-B http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html
17 ===========================================================================**/
21 #include "vtkVOXImageWriter.h"
23 #include "vtkCommand.h"
24 #include "vtkErrorCode.h"
25 #include "vtkImageData.h"
26 #include "vtkInformation.h"
27 #include "vtkInformationVector.h"
28 #include "vtkObjectFactory.h"
29 #include "vtkStreamingDemandDrivenPipeline.h"
30 #include "vtkDataSetAttributes.h"
32 #include <vtkstd/string>
36 //----------------------------------------------------------------------------
37 vtkCxxRevisionMacro(vtkVOXImageWriter, "DummyRevision");
38 vtkStandardNewMacro(vtkVOXImageWriter);
40 //----------------------------------------------------------------------------
41 vtkVOXImageWriter::vtkVOXImageWriter()
44 this->FileLowerLeft = 1;
47 //----------------------------------------------------------------------------
48 vtkVOXImageWriter::~vtkVOXImageWriter()
54 //----------------------------------------------------------------------------
55 void vtkVOXImageWriter::Write( )
57 this->SetErrorCode(vtkErrorCode::NoError);
59 this->GetInput()->UpdateInformation();
62 if (this->GetInput() == NULL ) {
63 vtkErrorMacro(<<"Write:Please specify an input!");
67 if ( this->FileName == 0) {
68 vtkErrorMacro("Output file name not specified");
73 int * ext = this->GetInput()->GetWholeExtent();
74 if ( ext[4] == ext[5] ) {
76 if ( ext[2] == ext[3] ) {
81 double * origin = this->GetInput()->GetOrigin();
82 double * spacingDouble = this->GetInput()->GetSpacing();
85 spacing[0] = spacingDouble[0];
86 spacing[1] = spacingDouble[1];
87 spacing[2] = spacingDouble[2];
90 dimSize[0] = ext[1]-ext[0]+1;
91 dimSize[1] = ext[3]-ext[2]+1;
92 dimSize[2] = ext[5]-ext[4]+1;
94 std::string elementType;
96 int scalarType = this->GetInput()->GetScalarType();
97 switch ( scalarType ) {
99 elementType = "schar";
101 case VTK_UNSIGNED_CHAR:
102 elementType = "uchar";
105 elementType = "sshort";
107 case VTK_UNSIGNED_SHORT:
108 elementType = "ushort";
113 case VTK_UNSIGNED_INT:
114 elementType = "uint";
117 elementType = "slong";
119 case VTK_UNSIGNED_LONG:
120 elementType = "ulong";
123 elementType = "float";
126 elementType = "double";
129 vtkErrorMacro("Unknown scalar type." );
133 origin[0] += ext[0] * spacing[0];
134 origin[1] += ext[2] * spacing[1];
135 origin[2] += ext[4] * spacing[2];
137 this->GetInput()->SetUpdateExtent(ext[0], ext[1],
140 this->GetInput()->UpdateData();
143 this->SetFileDimensionality(nDims);
145 this->InvokeEvent(vtkCommand::StartEvent);
146 this->UpdateProgress(0.0);
148 std::cout << "Writing to file " << this->GetFileName() << " ..." << std::endl;
150 fstream out(this->GetFileName(),ios::out|ios::binary);
151 out << "VOX v2\n# Size\n" << dimSize[0] << " " << dimSize[1] << " "
152 << dimSize[2] << std::endl << "# Spacing" << std::endl
153 << spacing[0] << " " << spacing[1] << " " << spacing[2] << std::endl
154 << "# Image dim" << std::endl << nDims << std::endl
155 << "# Image type" << std::endl << elementType << std::endl;
156 out.write((char*)this->GetInput()->GetScalarPointer(),
157 dimSize[0]*dimSize[1]*dimSize[2]*this->GetInput()->GetScalarSize());
160 this->UpdateProgress(1.0);
161 this->InvokeEvent(vtkCommand::EndEvent);
164 //----------------------------------------------------------------------------
165 void vtkVOXImageWriter::PrintSelf(ostream& os, vtkIndent indent)
167 this->Superclass::PrintSelf(os,indent);
168 os << indent << "FileName: " << (this->FileName==0?this->FileName:"(none)") << endl;