]> Creatis software - gdcm.git/blob - Example/exImageLighten.cxx
Some more examples
[gdcm.git] / Example / exImageLighten.cxx
1 /*=========================================================================
2                                                                                 
3   Program:   gdcm
4   Module:    $RCSfile: exImageLighten.cxx,v $
5   Language:  C++
6   Date:      $Date: 2005/02/09 14:39:49 $
7   Version:   $Revision: 1.1 $
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
19 #include "gdcmFile.h"
20 #include "gdcmFileHelper.h"
21 #include "gdcmDocument.h"
22 #include "gdcmValEntry.h"
23 #include "gdcmBinEntry.h"
24 #include "gdcmSeqEntry.h"
25
26 int main(int argc, char *argv[])
27 {  
28    gdcm::File *f1;
29  
30    std::cout << "-----------------------------------------------" << std::endl;
31    std::cout << "Removes from a full gdcm-readable  Dicom image"  << std::endl;
32    std::cout << " all the 'Shadow groups' and the 'Sequence' entries"
33           << " Warning :  'Compressed images' are uncompressed" 
34           << std::endl
35           << "         :  'YBR images' are converted into 'RGB images'"
36           << std::endl
37           << "         :  'RGB planes' are converted into 'RGB pixels'"
38           << std::endl
39           << "         :  'Palette Color images' are kept 'as is'"
40           << std::endl;
41    std::cout << "-----------------------------------------------" << std::endl;
42
43    if( argc < 3 )
44     {
45        std::cerr << "Usage " << argv[0]  << " Source image.dcm  " 
46                  << " Output image.dcm " << std::endl;
47        return 1;
48     }
49
50    std::string fileName       = argv[1];
51    std::string output         = argv[2];
52
53 // ============================================================
54 //   Read the input image.
55 // ============================================================
56
57    std::cout << argv[1] << std::endl;
58
59    f1 = new gdcm::File( fileName );
60    if (!f1->IsReadable()) {
61        std::cerr << "Sorry, " << fileName <<"  not a gdcm-readable "
62                  << "DICOM / ACR File"
63                  <<std::endl;
64        return 0;
65    }
66    std::cout << " ... is readable " << std::endl;
67
68 // ============================================================
69 //   Read the Pixels
70 //
71 // ============================================================
72  
73    // Pixel Reading must be done here, to be sure 
74    // to load the Palettes Color (if any)
75
76    // First, create a gdcm::FileHelper
77    gdcm::FileHelper *fh1 = new gdcm::FileHelper(f1);
78
79    // Load the pixels, DO NOT transform LUT (if any) into RGB Pixels 
80    uint8_t *imageDataRaw = fh1->GetImageDataRaw();
81    // Get the image data size
82    size_t dataRawSize    = fh1->GetImageDataRawSize();
83
84 // ============================================================
85 //   Create a new gdcm::Filehelper, to hold new image.
86 // ============================================================
87
88    gdcm::FileHelper *copy = new gdcm::FileHelper( output );
89
90 // ============================================================
91 //   Selective copy of the entries (including Pixel Element).
92 // ============================================================
93
94    gdcm::DocEntry *d = f1->GetFirstEntry();
95  
96    d = f1->GetFirstEntry();
97    while(d)
98    {
99       // We skip SeqEntries, since user cannot do much with them
100       if ( !(dynamic_cast<gdcm::SeqEntry*>(d))
101       // We skip Shadow Groups, since nobody knows what they mean
102            && !( d->GetGroup()%2 ) )
103       { 
104
105          if ( gdcm::BinEntry *b = dynamic_cast<gdcm::BinEntry*>(d) )
106          {              
107             copy->GetFile()->InsertBinEntry( b->GetBinArea(),b->GetLength(),
108                                              b->GetGroup(),b->GetElement(),
109                                              b->GetVR() );
110          }
111          else if ( gdcm::ValEntry *v = dynamic_cast<gdcm::ValEntry*>(d) )
112          {   
113              copy->GetFile()->InsertValEntry( v->GetValue(),
114                                               v->GetGroup(),v->GetElement(),
115                                               v->GetVR() ); 
116          }
117          else
118          {
119           // We skip gdcm::SeqEntries
120          }
121       }
122       d = f1->GetNextEntry();
123    }
124    
125    // User wants to keep the Palette Color -if any- 
126    // and write the image as it was
127    copy->SetImageData(imageDataRaw, dataRawSize);
128    copy->SetWriteModeToRaw();
129    copy->WriteDcmExplVR( output );
130
131    std::cout << std::endl
132              << "------------------------------------------------------------"
133              << std::endl;
134    delete f1;
135    delete fh1;
136    delete copy;
137
138    exit (0);
139 }
140