]> Creatis software - gdcm.git/blob - Example/exGC.cxx
Begin of kosherization of Example
[gdcm.git] / Example / exGC.cxx
1 /*=========================================================================
2                                                                                 
3   Program:   gdcm
4   Module:    $RCSfile: exGC.cxx,v $
5   Language:  C++
6   Date:      $Date: 2005/07/07 17:31:54 $
7   Version:   $Revision: 1.5 $
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 #include <stdlib.h> // for exit
27
28 typedef struct  // Maybe we should add it to gdcm ?
29 {
30    uint8_t r;
31    uint8_t g;
32    uint8_t b;
33 } rgb8_t;
34
35
36 // This small application, for a given Creatis user (G.C.)
37 // may be taken as an example
38
39 int main(int argc, char *argv[])
40 {
41
42    // we need a user friendly way for passign parameters on the command line !
43
44    std::cout << "------------------------------------------------" << std::endl;
45    std::cout << "Transforms a full gdcm-readable 'color' Dicom image "
46           << " (e.g Palette Color, YBR, 3-Planes RGB) "
47           << " into an 'RGB_Pixels' Dicom Image " << std::endl
48           << " Blacks out any 'grey' pixel (r=g=b) "
49           << " Blacks out any 'dark' pixel (r,g,b < threshold) " 
50           << " "            << std::endl;
51    std::cout << "------------------------------------------------" << std::endl;
52
53    if (argc < 3)
54    {
55       std::cerr << "Usage :" << std::endl << 
56       argv[0] << " input_dicom output_dicom threshold background" << std::endl;
57       return 1;
58    }
59
60    std::string fileName = argv[1];
61    std::string output   = argv[2];
62
63    int threshold = 0;
64    if (argc > 3)
65       threshold        = atoi( argv[3] );
66   
67    int background = 0;
68    if (argc > 4)
69       background        = atoi( argv[4] );
70
71 // ============================================================
72 //   Read the input image.
73 // ============================================================
74    // a gdcm::File contains all the Dicom Field but the Pixels Element
75
76    std::cout << argv[1] << std::endl;
77
78    gdcm::File *f = new gdcm::File();
79    f->SetLoadMode( 0x00000000);
80    f->SetFileName( fileName );
81    bool res = f->Load();        
82
83    if (!res) {
84        std::cerr << "Sorry, " << fileName <<"  not a gdcm-readable "
85                  << "DICOM / ACR File"
86                  <<std::endl;
87        return 0;
88    }
89    std::cout << " ... is readable " << std::endl;
90
91 /*
92    if (!f->IsMonochrome()) {
93        std::cerr << "Sorry, " << fileName <<"  not a 'color' File "
94            << " "
95                  <<std::endl;
96        return 0;
97    }
98 */
99
100 // ============================================================
101 //   Load the pixels in memory.
102 // ============================================================
103
104    // We need a gdcm::FileHelper, since we want to load the pixels        
105    gdcm::FileHelper *fh = new gdcm::FileHelper(f);
106
107    // (unit8_t DOESN'T mean it's mandatory for the image to be a 8 bits one) 
108
109    uint8_t *imageData = fh->GetImageData();
110
111    if ( imageData == 0 )
112    {
113        std::cerr << "Sorry, Pixels of" << fileName <<"  are not "
114                  << " gdcm-readable."  << std::endl;
115        return 0;
116    }
117
118    // ------ User wants write a new image without shadow groups -------------
119    // ------                              without Sequences     -------------
120
121  
122    gdcm::FileHelper *copy = new gdcm::FileHelper( output );
123  
124    gdcm::DocEntry *d = f->GetFirstEntry();
125    while(d)
126    {
127       // We skip SeqEntries, since user cannot do much with them
128       if ( !(dynamic_cast<gdcm::SeqEntry*>(d))
129       // We skip Shadow Groups, since nobody knows what they mean
130            && !( d->GetGroup()%2 ) )
131       { 
132
133          if ( gdcm::BinEntry *b = dynamic_cast<gdcm::BinEntry*>(d) )
134          {              
135             copy->GetFile()->InsertBinEntry( b->GetBinArea(),b->GetLength(),
136                                              b->GetGroup(),b->GetElement(),
137                                              b->GetVR() );
138          }
139          else if ( gdcm::ValEntry *v = dynamic_cast<gdcm::ValEntry*>(d) )
140          {   
141              copy->GetFile()->InsertValEntry( v->GetValue(),
142                                               v->GetGroup(),v->GetElement(),
143                                               v->GetVR() ); 
144          }
145          else
146          {
147           // We skip gdcm::SeqEntries
148          }
149       }
150       d = f->GetNextEntry();
151    }
152
153    int imageSize = fh->GetImageDataSize();
154 // Black up all 'grey' pixels
155    int i;
156    int n = 0;
157    for (i = 0; i<imageSize/3; i++)
158    {
159       if ( ((rgb8_t *)imageData)[i].r == ((rgb8_t *)imageData)[i].g
160          &&
161            ((rgb8_t *)imageData)[i].r == ((rgb8_t *)imageData)[i].b )
162       {
163          n++;
164          ((rgb8_t *)imageData)[i].r = (unsigned char)background;
165          ((rgb8_t *)imageData)[i].g = (unsigned char)background;
166          ((rgb8_t *)imageData)[i].b = (unsigned char)background;
167       }
168    }
169    
170     std::cout << n << " points put to black (within " 
171               << imageSize/3 << ")" << std::endl;
172
173    n = 0;
174    for (i = 0; i<imageSize/3; i++)
175    {
176    if ( ((rgb8_t *)imageData)[i].r < threshold
177      &&
178         ((rgb8_t *)imageData)[i].g < threshold
179      &&
180         ((rgb8_t *)imageData)[i].b < threshold )
181       {
182          n++;
183         ((rgb8_t *)imageData)[i].r = (unsigned char)background;
184         ((rgb8_t *)imageData)[i].g = (unsigned char)background;
185         ((rgb8_t *)imageData)[i].b = (unsigned char)background;  
186       }
187    }
188    
189    std::cout << n << " points put to black (within " 
190              << imageSize/3 << ")" << std::endl; 
191    // User knows the image is a 'color' one -RGB, YBR, Palette Color-
192    // and wants to write it as RGB
193    copy->SetImageData(imageData, imageSize);
194    copy->SetWriteModeToRGB();
195
196    copy->WriteDcmExplVR( output );
197
198    delete f;
199    delete fh;
200    delete copy;
201
202    exit (0);
203 }