]> Creatis software - gdcm.git/blob - Testing/TestCopyRescaleDicom.cxx
Should suppress some warnings from Borland compiler
[gdcm.git] / Testing / TestCopyRescaleDicom.cxx
1 /*=========================================================================
2                                                                                 
3   Program:   gdcm
4   Module:    $RCSfile: TestCopyRescaleDicom.cxx,v $
5   Language:  C++
6   Date:      $Date: 2005/04/19 10:02:40 $
7   Version:   $Revision: 1.18 $
8                                                                                 
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.
12                                                                                 
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.
16                                                                                 
17 =========================================================================*/
18 #include "gdcmFile.h"
19 #include "gdcmFileHelper.h"
20 #include "gdcmValEntry.h"
21 #include "gdcmBinEntry.h"
22
23 //Generated file:
24 #include "gdcmDataImages.h"
25
26 #ifndef _WIN32
27 #include <unistd.h> //for access, unlink
28 #else
29 #include <io.h> //for _access on Win32
30 #endif
31
32 bool FileExists(const char *filename)
33 {
34 #ifdef _MSC_VER
35 # define access _access
36 #endif
37 #ifndef R_OK
38 # define R_OK 04
39 #endif
40   if ( access(filename, R_OK) != 0 )
41     {
42     return false;
43     }
44   else
45     {
46     return true;
47     }
48 }
49
50 bool RemoveFile(const char *source)
51 {
52 #ifdef _MSC_VER
53 #define _unlink unlink
54 #endif
55   return unlink(source) != 0 ? false : true;
56 }
57
58 int CopyRescaleDicom(std::string const &filename, 
59                      std::string const &output )
60 {
61    std::cout << "   Testing: " << filename << std::endl;
62    if( FileExists( output.c_str() ) )
63    {
64      // std::cerr << "Don't try to cheat, I am removing the file anyway" << std::endl;
65       if( !RemoveFile( output.c_str() ) )
66       {
67          std::cout << "Ouch, the file exist, but I cannot remove it" << std::endl;
68          return 1;
69       }
70    }
71
72    //////////////// Step 1:
73    std::cout << "      1...";
74    gdcm::File originalF = gdcm::File( filename );
75    gdcm::File copyF     = gdcm::File( );
76
77    //First of all copy the file, field by field
78
79    //////////////// Step 2:
80    std::cout << "2...";
81    // Copy of the file content
82    gdcm::DocEntry *d = originalF.GetFirstEntry();
83    while(d)
84    {
85       if ( gdcm::BinEntry *b = dynamic_cast<gdcm::BinEntry*>(d) )
86       {
87          copyF.InsertBinEntry( b->GetBinArea(),b->GetLength(),
88                                b->GetGroup(),b->GetElement(),
89                                b->GetVR() );
90       }
91       else if ( gdcm::ValEntry *v = dynamic_cast<gdcm::ValEntry*>(d) )
92       {   
93           copyF.InsertValEntry( v->GetValue(),
94                                 v->GetGroup(),v->GetElement(),
95                                 v->GetVR() ); 
96       }
97       else
98       {
99        // We skip pb of SQ recursive exploration
100       }
101
102       d = originalF.GetNextEntry();
103    }
104
105    gdcm::FileHelper original = gdcm::FileHelper( &originalF );
106    gdcm::FileHelper copy     = gdcm::FileHelper( &copyF );
107
108    size_t dataSize = original.GetImageDataSize();
109
110    size_t rescaleSize;
111    uint8_t *rescaleImage;
112
113    const std::string &bitsStored = originalF.GetEntryValue(0x0028,0x0101);
114    if( bitsStored == "16" )
115    {
116       std::cout << "Rescale...";
117       copyF.InsertValEntry( "8", 0x0028, 0x0100); // Bits Allocated
118       copyF.InsertValEntry( "8", 0x0028, 0x0101); // Bits Stored
119       copyF.InsertValEntry( "7", 0x0028, 0x0102); // High Bit
120       copyF.InsertValEntry( "0", 0x0028, 0x0103); // Pixel Representation
121
122       // We assume the value were from 0 to uint16_t max
123       rescaleSize = dataSize / 2;
124       rescaleImage = new uint8_t[dataSize];
125
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++)
130       {
131          *tmpRescale = (uint8_t)( (*tmpImage)>>8 );
132          tmpImage++;
133          tmpRescale++;
134       }
135    }
136    else
137    {
138       std::cout << "Same...";
139       rescaleSize = dataSize;
140       rescaleImage = new uint8_t[dataSize];
141       memcpy(rescaleImage,original.GetImageData(),dataSize);
142    }
143
144    copy.SetImageData(rescaleImage, rescaleSize);
145
146    //////////////// Step 3:
147    std::cout << "3...";
148    copy.SetWriteModeToRGB();
149    if( !copy.WriteDcmExplVR(output) )
150    {
151       std::cout << " Failed" << std::endl
152                 << "        " << output << " not written" << std::endl;
153
154       delete[] rescaleImage;
155
156       return 1;
157    }
158
159    //////////////// Step 4:
160    std::cout << "4...";
161    gdcm::FileHelper copy2 = gdcm::FileHelper( output );
162
163    //Is the file written still gdcm parsable ?
164    if ( !copy2.GetFile()->IsReadable() )
165    { 
166       std::cout << " Failed" << std::endl
167                 << "        " << output << " not readable" << std::endl;
168
169       delete[] rescaleImage;
170
171       return 1;
172    }
173
174    //////////////// Step 5:
175    std::cout << "5...";
176    size_t    dataSizeWritten = copy2.GetImageDataSize();
177    uint8_t *imageDataWritten = copy2.GetImageData();
178
179    if (originalF.GetXSize() != copy2.GetFile()->GetXSize() ||
180        originalF.GetYSize() != copy2.GetFile()->GetYSize() ||
181        originalF.GetZSize() != copy2.GetFile()->GetZSize())
182    {
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;
192
193       return 1;
194    }
195
196    if (rescaleSize != dataSizeWritten)
197    {
198       std::cout << " Failed" << std::endl
199                 << "        Pixel areas lengths differ: "
200                 << dataSize << " # " << dataSizeWritten << std::endl;
201
202       delete[] rescaleImage;
203
204       return 1;
205    }
206
207    if (int res = memcmp(rescaleImage, imageDataWritten, rescaleSize) !=0)
208    {
209       (void)res;
210       std::cout << " Failed" << std::endl
211                 << "        Pixel differ (as expanded in memory)." << std::endl;
212
213       delete[] rescaleImage;
214
215       return 1;
216    }
217    std::cout << "OK." << std::endl ;
218
219    delete[] rescaleImage;
220
221    return 0;
222 }
223
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
226
227 int TestCopyRescaleDicom(int argc, char *argv[])
228 {
229    if ( argc == 3 )
230    {
231       // The test is specified a specific filename, use it instead of looping
232       // over all images
233       const std::string input     = argv[1];
234       const std::string reference = argv[2];
235       return CopyRescaleDicom( input, reference );
236    }
237    else if ( argc > 3 || argc == 2 )
238    {
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;
243       return 1;
244    }
245    // else other cases:
246
247    std::cout << "   Description (Test::TestCopyDicom): "
248              << std::endl;
249    std::cout << "   For all images in gdcmData (and not blacklisted in "
250                 "Test/CMakeLists.txt)"
251              << std::endl;
252    std::cout << "   apply the following to each filename.xxx: "
253              << std::endl;
254    std::cout << "   step 1: parse the image (as gdcmFile) and call"
255              << " IsReadable(). After that, call GetImageData() and "
256              << "GetImageDataSize() "
257              << std::endl;
258    std::cout << "   step 2: create a copy of the readed file and the new"
259              << " pixel data are set to the copy"
260              << std::endl;
261    std::cout << "   step 3: write the copy of the image"
262              << std::endl;
263    std::cout << "   step 4: read the copy and call IsReadable()"
264              << std::endl;
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;
269
270    int i =0;
271    int retVal = 0;  //by default this is an error
272    while( gdcmDataImages[i] != 0 )
273    {
274       std::string filename = GDCM_DATA_ROOT;
275       filename += "/";  //doh!
276       filename += gdcmDataImages[i];
277
278       std::string output = "output.dcm";
279
280       if( CopyRescaleDicom( filename, output ) != 0 )
281       {
282          retVal++;
283       }
284
285       i++;
286    }
287    return retVal;
288 }
289