]> Creatis software - gdcm.git/blob - Testing/TestReadWriteJPEG2000ReadCompare.cxx
Fix mistypings
[gdcm.git] / Testing / TestReadWriteJPEG2000ReadCompare.cxx
1 /*=========================================================================
2
3   Program:   gdcm
4   Module:    $RCSfile: TestReadWriteJPEG2000ReadCompare.cxx,v $
5   Language:  C++
6   Date:      $Date: 2007/09/05 09:55:01 $
7   Version:   $Revision: 1.6 $
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 "gdcmDebug.h"
21
22 #include "gdcmGlobal.h"
23 #include "gdcmTS.h"
24
25 //Generated file:
26 #include "gdcmDataImages.h"
27
28
29 const unsigned int MAX_NUMBER_OF_DIFFERENCE = 10;
30
31 int nb_of_success2000___;
32 int nb_of_failure2000___;
33 int nb_of_diffPM12000___;
34 static int CompareInternalJPEG2000(std::string const &filename, std::string const &output)
35 {
36    std::cout << "----------------------------------------------------------------------" << std::endl
37              << "   Testing: " << filename << std::endl;
38
39    //////////////// Step 1 (see above description):
40
41    GDCM_NAME_SPACE::File *file = GDCM_NAME_SPACE::File::New( );
42    file->SetFileName( filename );
43    file->Load ();
44    if( !file->IsReadable() )
45    {
46       std::cout << "Failed" << std::endl
47                 << "Test::TestReadWriteJPEG2000ReadCompare: Image not gdcm compatible:"
48                 << filename << std::endl;
49       file->Delete();
50       nb_of_failure2000___++;
51       return 1;
52    }
53    std::cout << "           step 1...";
54
55    //////////////// Step 2:
56    GDCM_NAME_SPACE::FileHelper *filehelper = GDCM_NAME_SPACE::FileHelper::New( file );
57    int dataSize       = filehelper->GetImageDataRawSize();
58    uint8_t *imageData = filehelper->GetImageDataRaw(); //EXTREMELY IMPORTANT
59           // Sure, it is : It's up to the user to decide if he wants to
60           // GetImageData or if he wants to GetImageDataRaw
61           // (even if we do it by setting a flag, *he* will have to decide)
62
63    //filehelper->SetImageData(imageData, dataSize);
64  
65    filehelper->SetContentType(GDCM_NAME_SPACE::UNMODIFIED_PIXELS_IMAGE); // lossless compression : pixels reain unimpared
66    filehelper->SetWriteModeToRaw();  
67    filehelper->SetWriteTypeToJPEG2000(  ); 
68    
69    filehelper->SetUserData(imageData,dataSize); // This one ensures the compression
70    filehelper->Write( output ); 
71
72    std::cout << "2...";
73
74    //////////////// Step 3:
75    GDCM_NAME_SPACE::File *fileout = GDCM_NAME_SPACE::File::New();
76    fileout->SetFileName( output );
77    fileout->Load();
78
79    if( !fileout->IsReadable() )
80    {
81       std::cout << "Failed" << std::endl
82                 << "Test::TestReadWriteJPEG2000ReadCompare: Could not parse the newly "
83                 << "written image:" << filename << std::endl;
84       file->Delete();
85       filehelper->Delete();
86       fileout->Delete();
87       nb_of_failure2000___++;
88       return 1;
89    }
90
91    if ( file->GetBitsAllocated()>16 )
92    {
93       std::cout << "=============== 32 bits, not checked...OK." << std::endl ;
94       //////////////// Clean up:
95       file->Delete();
96       filehelper->Delete();
97       fileout->Delete();
98       return 0;   
99    }
100    
101    
102    GDCM_NAME_SPACE::FileHelper *reread = GDCM_NAME_SPACE::FileHelper::New( fileout );
103
104    std::cout << "3...";
105    // For the next step:
106    int     dataSizeWritten   = reread->GetImageDataRawSize();
107    uint8_t *imageDataWritten = reread->GetImageDataRaw();
108  
109    //////////////// Step 4:
110    // Test the image size
111    if (file->GetXSize() != reread->GetFile()->GetXSize() ||
112        file->GetYSize() != reread->GetFile()->GetYSize() ||
113        file->GetZSize() != reread->GetFile()->GetZSize())
114    {
115       std::cout << "Failed" << std::endl
116          << "        Size differs: "
117          << "X: " << file->GetXSize() << " # "
118                   << reread->GetFile()->GetXSize() << " | "
119          << "Y: " << file->GetYSize() << " # "
120                   << reread->GetFile()->GetYSize() << " | "
121          << "Z: " << file->GetZSize() << " # "
122                   << reread->GetFile()->GetZSize() << std::endl;
123       file->Delete();
124       filehelper->Delete();
125       fileout->Delete();
126       reread->Delete();
127       nb_of_failure2000___++;      
128       return 1;
129    }
130
131    // Test the data size
132    // beware of odd length Pixel Element!
133    if (dataSize != dataSizeWritten)
134       std::cout << std::endl << "dataSize:" << dataSize << " dataSizeWritten:" << dataSizeWritten << std::endl;
135       
136    int dataSizeFixed = dataSize - dataSize%2;
137    int dataSizeWrittenFixed = dataSizeWritten - dataSizeWritten%2;
138
139    if (dataSizeFixed != dataSizeWrittenFixed)
140    {
141       std::cout << "Failed" << std::endl
142          << "        Pixel areas lengths differ: "
143          << dataSize << " # " << dataSizeWritten << std::endl;
144       file->Delete();
145       filehelper->Delete();
146       fileout->Delete();
147       reread->Delete();
148       nb_of_failure2000___++;      
149       return 1;
150    }
151
152    // Test the data content
153    
154    unsigned int j  =0;
155    unsigned int nbDiff =0;  
156    if (memcmp(imageData, imageDataWritten, dataSizeFixed) !=0)
157    {   
158       std::string PixelType = filehelper->GetFile()->GetPixelType();
159       std::string ts        = filehelper->GetFile()->GetTransferSyntax();
160
161        for(int i1=0; i1<dataSizeFixed; i1++)
162          if (abs ((int)imageData[i1]-(int)imageDataWritten[i1]) > 2) {
163             nbDiff++;
164            // break; // at debug time, keep line commented out; (uncommenting will save CPU time)
165          }
166
167        if (nbDiff!=0)
168        {
169           std::cout << std::endl << filename << " Failed : "
170                     << nbDiff/(file->GetBitsAllocated()/8) << " Pixels -amongst "
171                     << dataSizeFixed/(file->GetBitsAllocated()/8) << "- (" 
172                     << PixelType << " bAlloc:" << file->GetBitsAllocated() << " bStored:" << file->GetBitsStored()
173                     << ") differ (as expanded in memory)."
174                     << std::endl
175                     << "        compression : " 
176                     << GDCM_NAME_SPACE::Global::GetTS()->GetValue(ts) << std::endl;
177
178           std::cout << "   list of the first " << MAX_NUMBER_OF_DIFFERENCE
179                     << " bytes differing (pos : original - written) :"
180                     << std::endl;
181
182           for(int i=0, j=0; i<dataSizeFixed && j<MAX_NUMBER_OF_DIFFERENCE; i++)
183           {
184              if (abs ((int)imageData[i]-(int)imageDataWritten[i]) > 2)
185              {
186                 if (j<MAX_NUMBER_OF_DIFFERENCE)
187                    std::cout << std::dec << "(" << i << " : "
188                      << std::hex
189                      << (int)(imageData[i]) << " - "
190                      << (int)(imageDataWritten[i]) << ") "
191                      << std::dec;
192                 ++j;
193               }
194           }
195           std::cout << std::endl;
196
197           file->Delete();
198           filehelper->Delete();
199           fileout->Delete();
200           reread->Delete();
201           nb_of_failure2000___++;
202   
203           if (nbDiff/2 > 8 )  // last pixel of (DermaColorLossLess.dcm) is diferent. ?!?
204                               // I don't want it to break the testsuite
205              return 1;
206           else
207              return 0;
208        }      
209        else
210        {
211           std::cout << std::endl << filename << " : some pixels"
212                     << "  ("
213                     << PixelType << " bAlloc:" << file->GetBitsAllocated() << " bStored:" << file->GetBitsStored()
214                     << ") differ +/-1 (as expanded in memory)."
215                     << std::endl
216                     << "        compression : "
217                     << GDCM_NAME_SPACE::Global::GetTS()->GetValue(ts) << std::endl;
218
219           std::cout << "   list of the first " << MAX_NUMBER_OF_DIFFERENCE
220                     << " bytes differing (pos : original - written) :"
221                     << std::endl;
222
223           for(int i=0, j=0; i<dataSizeFixed && j<MAX_NUMBER_OF_DIFFERENCE; i++)
224           {
225              if (imageData[i] != imageDataWritten[i])
226              {
227                 std::cout << std::hex << "(" << i << " : " 
228                          << std::hex << (int)(imageData[i]) << " - "
229                          << std::hex << (int)(imageDataWritten[i]) << ") "
230                          << std::dec;
231                 ++j;
232               }
233           }
234           std::cout << std::endl;
235           nb_of_diffPM12000___++;
236        }
237    }
238    else
239    {
240       nb_of_success2000___ ++;
241    }
242    std::cout << "=============== 4...OK." << std::endl ;
243    //////////////// Clean up:
244    file->Delete();
245    filehelper->Delete();
246    fileout->Delete();
247    reread->Delete();
248
249    return 0;
250 }
251
252 // -------------------------------------------------------------------------------------------
253
254 int TestReadWriteJPEG2000ReadCompare(int argc, char *argv[]) 
255 {
256    int result = 0;
257    nb_of_success2000___ = 0;
258    nb_of_failure2000___ = 0;
259    nb_of_diffPM12000___ = 0;
260    
261    if (argc == 4)
262       GDCM_NAME_SPACE::Debug::DebugOn();
263
264    if (argc >= 3)
265    {
266       const std::string input  = argv[1];
267       const std::string output = argv[2];
268       result += CompareInternalJPEG2000(input, output);
269    }
270    else if( argc > 4 || argc == 2 )
271    {
272       std::cout << "Please read the manual" << std::endl;
273    }
274    else
275    {
276       std::cout<< "Test::TestReadWriteJPEG2000ReadCompare: description " << std::endl;
277       std::cout << "   For all images in gdcmData (and not blacklisted in "
278                    "Test/CMakeLists.txt)" << std::endl;
279       std::cout << "   apply the following multistep test: " << std::endl;
280       std::cout << "   step 1: parse the image (as gdcmFile) and call"
281                 << " IsReadable(). " << std::endl;
282       std::cout << "   step 2: write the corresponding image in JPEG2000 DICOM V3 "
283                 << "with explicit Value Representation " << std::endl
284                 << "            in temporary file "
285                 << "TestReadWriteJPEG2000ReadCompare.dcm." << std::endl;
286       std::cout << "   step 3: read the image written on step2 and call "
287                 << " IsReadable(). " << std::endl;
288       std::cout << "   step 4: compare (in memory with memcmp) that the two "
289                 << "images " << std::endl
290                 << "           match (as expanded by gdcm)." << std::endl;
291    
292       int i = 0;
293       int res =0;
294       while( gdcmDataImages[i] != 0 )
295       {
296          std::string filename = GDCM_DATA_ROOT;
297          filename += "/";
298          filename += gdcmDataImages[i];
299          res = CompareInternalJPEG2000(filename, "TestReadWriteJPEG2000ReadCompare.dcm");
300
301          if (res == 1)
302          {
303             std::cout << "=============================== Failure on: " << gdcmDataImages[i] << std::endl;
304             result ++;
305          }
306          i ++;
307       }
308    }
309    std::cout << "==================================" << std::endl;
310    std::cout << "nb of success  " << nb_of_success2000___ << std::endl;
311    std::cout << "nb of failure  " << nb_of_failure2000___ << std::endl;
312    std::cout << "nb of diff+/-1 " << nb_of_diffPM12000___ << std::endl;   
313    return result;
314 }