]> Creatis software - gdcm.git/blob - Testing/TestReadWriteReadCompare.cxx
* src/gdcmBinEntry.cxx, gdcmSeqEntry.cxx, gdcmSQItem.cxx, gdcmValEntry.cxx :
[gdcm.git] / Testing / TestReadWriteReadCompare.cxx
1 /*=========================================================================
2                                                                                 
3   Program:   gdcm
4   Module:    $RCSfile: TestReadWriteReadCompare.cxx,v $
5   Language:  C++
6   Date:      $Date: 2004/11/24 16:39:18 $
7   Version:   $Revision: 1.15 $
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 "gdcmHeader.h"
19 #include "gdcmFile.h"
20
21 //Generated file:
22 #include "gdcmDataImages.h"
23
24 int CompareInternal(std::string const & filename, std::string const & output)
25 {
26    std::cout << "   Testing: " << filename << std::endl;
27
28    //////////////// Step 1 (see above description):
29
30    gdcm::Header *header = new gdcm::Header( filename );
31    if( !header->IsReadable() )
32    {
33       std::cerr << "Test::TestReadWriteReadCompare: Image not gdcm compatible:"
34                 << filename << std::endl;
35       delete header;
36       return 1;
37    }
38    std::cout << "           step 1...";
39
40    //////////////// Step 2:
41
42    gdcm::File*  file = new gdcm::File( header );
43    int dataSize    = file->GetImageDataSizeRaw();
44    uint8_t* imageData = file->GetImageDataRaw(); //EXTREMELY IMPORTANT
45           // Sure, it is : It's up to the user to decide if he wants to
46           // GetImageData or if he wants to GetImageDataRaw
47           // (even if we do it by setting a flag, he will have to decide) 
48
49    /// \todo Following line commented out because gdcmFile::SetImageData() is
50    /// brain dead: it sets ImageDataSize to its argument and PixelRead to a.
51    /// Later on, when writing gdcmFile::WriteBase() 
52    /// and because PixelRead == 1 we call
53    ///    PixelElement->SetLength( ImageDataSizeRaw );
54    /// where we use ImageDataSizeRAW instead of ImageDataSize !
55    /// But when the original image made the transformation LUT -> RGB, 
56    /// ImageDataSizeRaw is the third of ImageDataSize, and there is no
57    /// reason (since we called gdcmFile::SetImageData) to use the Raw image
58    /// size... This "bug" in gdcmFile made that we had to black list
59    /// images 8BitsUncompressedColor.dcm, OT-PAL-8-face.dcm and 
60    /// US-PAL-8-10x-echo.dcm...
61    /// In conclusion fix gdcmFile, and then uncomment the following line.
62    
63    // --> I did. ctest doesn't break. But ... is it enought to say it's OK ?
64    
65    file->SetImageData(imageData, dataSize);
66    
67    file->SetWriteModeToRGB();
68    file->WriteDcmExplVR( output );
69    std::cout << "2...";
70  
71    //////////////// Step 3:
72
73    gdcm::File* reread = new gdcm::File( output );
74    if( !reread->GetHeader()->IsReadable() )
75    {
76      std::cerr << "Failed" << std::endl
77                << "Test::TestReadWriteReadCompare: Could not reread image "
78                << "written:" << filename << std::endl;
79      delete header;
80      delete file;
81      delete reread;
82      return 1;
83    }
84    std::cout << "3...";
85    // For the next step:
86    int    dataSizeWritten = reread->GetImageDataSizeRaw();
87    uint8_t* imageDataWritten = reread->GetImageDataRaw();
88
89    //////////////// Step 4:
90
91    if (dataSize != dataSizeWritten)
92    {
93       std::cout << "Failed" << std::endl
94          << "        Pixel areas lengths differ: "
95          << dataSize << " # " << dataSizeWritten << std::endl;
96       delete header;
97       delete file;
98       delete reread;
99       return 1;
100    }
101
102    if (int res = memcmp(imageData, imageDataWritten, dataSize) !=0)
103    {
104       (void)res;
105       std::cout << "Failed" << std::endl
106          << "        Pixel differ (as expanded in memory)." << std::endl;
107       delete header;
108       delete file;
109       delete reread;
110       return 1;
111    }
112    std::cout << "4...OK." << std::endl ;
113
114    //////////////// Clean up:
115    delete header;
116    delete file;
117    delete reread;
118
119    return 0;
120 }
121
122 int TestReadWriteReadCompare(int argc, char* argv[]) 
123 {
124    int result = 0;
125    if (argc == 3)
126    {
127       const std::string input = argv[1];
128       const std::string output = argv[2];
129       result += CompareInternal(input, output);
130    }
131    else if( argc > 3 || argc == 2 )
132    {
133       std::cerr << "Please read the manual" << std::endl;
134    }
135    else
136    {
137       std::cout<< "Test::TestReadWriteReadCompare: description " << std::endl;
138       std::cout << "   For all images in gdcmData (and not blacklisted in "
139                    "Test/CMakeLists.txt)" << std::endl;
140       std::cout << "   apply the following multistep test: " << std::endl;
141       std::cout << "   step 1: parse the image (as gdcmHeader) and call"
142                 << " IsReadable(). " << std::endl;
143       std::cout << "   step 2: write the corresponding image in DICOM V3 "
144                 << "with explicit" << std::endl
145                 << "           Value Representation in temporary file "
146                 << "TestReadWriteReadCompare.dcm." << std::endl;
147       std::cout << "   step 3: read the image written on step2 and call "
148                 << " IsReadable(). " << std::endl;
149       std::cout << "   step 4: compare (in memory with memcmp) that the two "
150                 << "images " << std::endl
151                 << "           match (as expanded by gdcm)." << std::endl;
152    
153       int i = 0;
154       while( gdcmDataImages[i] != 0 )
155       {
156          std::string filename = GDCM_DATA_ROOT;
157          filename += "/";
158          filename += gdcmDataImages[i++];
159          result += CompareInternal(filename, "TestReadWriteReadCompare.dcm"); 
160       }
161    }
162    return result;
163 }