1 /*=========================================================================
4 Module: $RCSfile: TestCopyRescaleDicom.cxx,v $
6 Date: $Date: 2006/04/11 16:05:03 $
7 Version: $Revision: 1.22 $
9 Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
10 l'Image). All rights reserved. See Doc/License.txt or
11 http://www.creatis.insa-lyon.fr/Public/Gdcm/License.html for details.
13 This software is distributed WITHOUT ANY WARRANTY; without even
14 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15 PURPOSE. See the above copyright notices for more information.
17 =========================================================================*/
19 #include "gdcmFileHelper.h"
20 #include "gdcmDataEntry.h"
23 #include <sys/times.h>
24 #include <iomanip> // for std::ios::left, ...
27 #include "gdcmDataImages.h"
30 #include <unistd.h> //for access, unlink
32 #include <io.h> //for _access on Win32
35 bool FileExists(const char *filename)
38 # define access _access
43 if ( access(filename, R_OK) != 0 )
53 bool RemoveFile(const char *source)
56 #define _unlink unlink
58 return unlink(source) != 0 ? false : true;
61 int CopyRescaleDicom(std::string const &filename,
62 std::string const &output )
64 std::cout << " Testing: " << filename << std::endl;
65 if( FileExists( output.c_str() ) )
67 // std::cerr << "Don't try to cheat, I am removing the file anyway" << std::endl;
68 if( !RemoveFile( output.c_str() ) )
70 std::cout << "Ouch, the file exist, but I cannot remove it" << std::endl;
75 //////////////// Step 1:
77 gdcm::File originalF = gdcm::File( );
78 originalF.SetFileName( filename );
81 gdcm::File copyF = gdcm::File( );
83 //First of all copy the file, field by field
85 //////////////// Step 2:
87 // Copy of the file content
88 gdcm::DocEntry *d = originalF.GetFirstEntry();
91 if ( gdcm::DataEntry *de = dynamic_cast<gdcm::DataEntry *>(d) )
93 copyF.InsertEntryBinArea( de->GetBinArea(),de->GetLength(),
94 de->GetGroup(),de->GetElement(),
99 // We skip pb of SQ recursive exploration
102 d = originalF.GetNextEntry();
105 gdcm::FileHelper original = gdcm::FileHelper( &originalF );
106 gdcm::FileHelper copy = gdcm::FileHelper( ©F );
108 size_t dataSize = original.GetImageDataSize();
111 uint8_t *rescaleImage;
113 const std::string &bitsStored = originalF.GetEntryValue(0x0028,0x0101);
114 if( bitsStored == "16" )
116 std::cout << "Rescale...";
117 copyF.InsertEntryString( "8", 0x0028, 0x0100, "US"); // Bits Allocated
118 copyF.InsertEntryString( "8", 0x0028, 0x0101, "US"); // Bits Stored
119 copyF.InsertEntryString( "7", 0x0028, 0x0102, "US"); // High Bit
120 copyF.InsertEntryString( "0", 0x0028, 0x0103, "US"); // Pixel Representation
122 // We assume the value were from 0 to uint16_t max
123 rescaleSize = dataSize / 2;
124 rescaleImage = new uint8_t[dataSize];
126 uint16_t *imageData16 = (uint16_t*)original.GetImageData();
127 uint16_t *tmpImage = imageData16;
128 uint8_t *tmpRescale = rescaleImage;
129 for(unsigned int i=0; i<rescaleSize; i++)
131 *tmpRescale = (uint8_t)( (*tmpImage)>>8 );
138 std::cout << "Same...";
139 rescaleSize = dataSize;
140 rescaleImage = new uint8_t[dataSize];
141 memcpy(rescaleImage,original.GetImageData(),dataSize);
144 copy.SetImageData(rescaleImage, rescaleSize);
146 //////////////// Step 3:
148 copy.SetWriteModeToRGB();
149 if( !copy.WriteDcmExplVR(output) )
151 std::cout << " Failed" << std::endl
152 << " " << output << " not written" << std::endl;
154 delete[] rescaleImage;
159 //////////////// Step 4:
161 gdcm::FileHelper copy2 = gdcm::FileHelper( output );
163 //Is the file written still gdcm parsable ?
164 if ( !copy2.GetFile()->IsReadable() )
166 std::cout << " Failed" << std::endl
167 << " " << output << " not readable" << std::endl;
169 delete[] rescaleImage;
174 //////////////// Step 5:
176 size_t dataSizeWritten = copy2.GetImageDataSize();
177 uint8_t *imageDataWritten = copy2.GetImageData();
179 if (originalF.GetXSize() != copy2.GetFile()->GetXSize() ||
180 originalF.GetYSize() != copy2.GetFile()->GetYSize() ||
181 originalF.GetZSize() != copy2.GetFile()->GetZSize())
183 std::cout << "Failed" << std::endl
184 << " X Size differs: "
185 << "X: " << originalF.GetXSize() << " # "
186 << copy2.GetFile()->GetXSize() << " | "
187 << "Y: " << originalF.GetYSize() << " # "
188 << copy2.GetFile()->GetYSize() << " | "
189 << "Z: " << originalF.GetZSize() << " # "
190 << copy2.GetFile()->GetZSize() << std::endl;
191 delete[] rescaleImage;
196 if (rescaleSize != dataSizeWritten)
198 std::cout << " Failed" << std::endl
199 << " Pixel areas lengths differ: "
200 << dataSize << " # " << dataSizeWritten << std::endl;
202 delete[] rescaleImage;
207 if (int res = memcmp(rescaleImage, imageDataWritten, rescaleSize) !=0)
210 std::cout << " Failed" << std::endl
211 << " Pixel differ (as expanded in memory)." << std::endl;
213 delete[] rescaleImage;
217 std::cout << "OK." << std::endl ;
219 delete[] rescaleImage;
224 // Here we load a gdcmFile and then try to create from scratch a copy of it,
225 // copying field by field the dicom image
227 int TestCopyRescaleDicom(int argc, char *argv[])
231 // The test is specified a specific filename, use it instead of looping
233 const std::string input = argv[1];
234 const std::string reference = argv[2];
235 return CopyRescaleDicom( input, reference );
237 else if ( argc > 3 || argc == 2 )
239 std::cout << " Usage: " << argv[0]
240 << " (no arguments needed)." << std::endl;
241 std::cout << "or Usage: " << argv[0]
242 << " filename.dcm reference.dcm" << std::endl;
247 std::cout << " Description (Test::TestCopyDicom): "
249 std::cout << " For all images in gdcmData (and not blacklisted in "
250 "Test/CMakeLists.txt)"
252 std::cout << " apply the following to each filename.xxx: "
254 std::cout << " step 1: parse the image (as gdcmFile) and call"
255 << " IsReadable(). After that, call GetImageData() and "
256 << "GetImageDataSize() "
258 std::cout << " step 2: create a copy of the readed file and the new"
259 << " pixel data are set to the copy"
261 std::cout << " step 3: write the copy of the image"
263 std::cout << " step 4: read the copy and call IsReadable()"
265 std::cout << " step 5: compare (in memory with memcmp) that the two "
266 << "images " << std::endl
267 << " match (as expanded by gdcm)." << std::endl;
268 std::cout << std::endl;
271 clock_t r1,r2, r3,r4;
272 struct tms tms1,tms2, tms3,tms4;
276 int retVal = 0; //by default this is an error
277 while( gdcmDataImages[i] != 0 )
279 std::string filename = GDCM_DATA_ROOT;
280 filename += "/"; //doh!
281 filename += gdcmDataImages[i];
283 std::string output = "output.dcm";
286 if( CopyRescaleDicom( filename, output ) != 0 )
293 << std::setw(150-strlen(gdcmDataImages[i]))
294 << gdcmDataImages[i] << " user time: "
295 << (long) ((tms2.tms_utime) - (tms1.tms_utime))
297 << (long) ((tms2.tms_stime) - (tms1.tms_stime))
298 << "\t elapsed time: " << r2 - r1
306 << std::setw(150-strlen("Gross Total")) << " --> "
307 << "Gross Total" << " user time: "
308 << (long) ((tms4.tms_utime) - (tms3.tms_utime))
310 << (long) ((tms4.tms_stime) - (tms3.tms_stime))
311 << "\t elapsed time: " << (long) (r4 - r3)