]> Creatis software - gdcm.git/blob - Example/PrintFile.cxx
a89c6260a9f8ec2e7880ffea56b3b98faf0e5350
[gdcm.git] / Example / PrintFile.cxx
1 /*=========================================================================
2                                                                                 
3   Program:   gdcm
4   Module:    $RCSfile: PrintFile.cxx,v $
5   Language:  C++
6   Date:      $Date: 2009/03/04 08:57:40 $
7   Version:   $Revision: 1.92 $
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 "gdcmDocument.h"
20 #include "gdcmSeqEntry.h"
21 #include "gdcmSQItem.h"
22 #include "gdcmDataEntry.h"
23
24 #include "gdcmFileHelper.h"
25 #include "gdcmDebug.h"
26 #include "gdcmDirList.h"
27 #include "gdcmGlobal.h"
28 #include "gdcmDictSet.h"
29 #include "gdcmArgMgr.h"
30 #include "gdcmOrientation.h"
31 #include <iostream>
32
33 /// \todo : code factorization, for 'single file' an 'whole directory' processing
34
35 void ShowLutData(GDCM_NAME_SPACE::File *f);
36
37      // Nothing is written yet to get LUT Data user friendly
38      // The following is to be moved into a PixelReadConvert method
39      // Let here, waiting for a clever idea on the way to do it.
40
41 void ShowLutData(GDCM_NAME_SPACE::File *f)
42 {  
43    GDCM_NAME_SPACE::SeqEntry *modLutSeq = f->GetSeqEntry(0x0028,0x3000);
44    if ( modLutSeq !=0 )
45    {
46       GDCM_NAME_SPACE::SQItem *sqi= modLutSeq->GetFirstSQItem();
47       if ( sqi != 0 )
48       {
49          std::string lutDescriptor = sqi->GetEntryString(0x0028,0x3002);
50          if (   /*lutDescriptor   == GDCM_UNFOUND*/ 0 )
51          {
52             std::cout << "LUT Descriptor is missing" << std::endl;
53             return;
54          }
55          int length;   // LUT length in Bytes
56          int deb;      // Subscript of the first Lut Value
57          int nbits;    // Lut item size (in Bits)
58
59          int nbRead;    // nb of items in LUT descriptor (must be = 3)
60
61          nbRead = sscanf( lutDescriptor.c_str(),
62                            "%d\\%d\\%d",
63                               &length, &deb, &nbits );
64          std::cout << "length " << length 
65                   << " deb " << deb 
66                   << " nbits " << nbits
67                   << std::endl;
68          if ( nbRead != 3 )
69          {
70             std::cout << "Wrong LUT descriptor" << std::endl;
71          }
72          //LUT Data (CTX dependent)    
73          GDCM_NAME_SPACE::DataEntry *b = sqi->GetDataEntry(0x0028,0x3006); 
74          if ( b != 0 )
75          { 
76             int BitsAllocated = f->GetBitsAllocated();
77             if ( BitsAllocated <= 8 )
78             { 
79                int mult;
80                if ( ( nbits == 16 ) && ( BitsAllocated == 8 ) )
81                {
82                // when LUT item size is different than pixel size
83                   mult = 2; // high byte must be = low byte
84                }
85                else
86                {
87                // See PS 3.3-2003 C.11.1.1.2 p 619
88                   mult = 1;
89                }
90                uint8_t *lut = b->GetBinArea();
91                for( int i=0; i < length; ++i )
92                {
93                   std::cout << i+deb << " : \t"
94                               << (int) (lut[i*mult + 1]) << std::endl;
95                }
96             }
97             else
98             {
99                uint16_t *lut = (uint16_t *)(b->GetBinArea());  
100                for( int i=0; i < length; ++i )
101                {
102                   std::cout << i+deb << " : \t"
103                               << (int) (((uint16_t *)lut)[i])
104                               << std::endl;
105                }             
106             }
107          }  
108          else
109             std::cout << "No LUT Data DataEntry (0x0028,0x3006) found?!? " 
110                         << std::endl;
111       }
112       else
113          std::cout << "No First SQ Item within (0x0028,0x3000) ?!? " 
114                      << std::endl;      
115    }
116    else
117       std::cout << "No LUT Data SeqEntry (0x0028,0x3000) found " 
118                   << std::endl;
119 }
120
121 int main(int argc, char *argv[])
122 {
123
124    START_USAGE(usage)
125    " \n PrintFile : \n                                                        ",
126    " Display the header of a ACR-NEMA/PAPYRUS/DICOM File                      ",
127    " usage: PrintFile {filein=inputFileName|dirin=inputDirectoryName}[level=n]",
128    "                       [forceload=listOfElementsToForceLoad] [rec] [noex] ",
129    "                       [4DLoc= ][dict= privateDirectory]                  ",
130    "                       [ { [noshadowseq] | [noshadow][noseq] } ] [load]   ",
131    "                       [debug] [warning]                                  ",
132    "      level = 0,1,2 : depending on the amount of details user wants to see",
133    "      rec : user wants to parse recursively the directory                 ",
134    "      load : user wants to load the pixels, as well (to see warning info) ",
135    "      noex : user doesn't want extra 'user friendly' info                 ",   
136    "      4DLoc: group-elem(in hexa, no space) of the DataEntry holdind 4thDim",
137    "      listOfElementsToForceLoad : group-elem,g2-e2,... (in hexa, no space)",
138    "                                of Elements to load whatever their length ",
139    "      privateDirectory : source file full path name of Shadow Group elems ",
140    "      noshadowseq: user doesn't want to load Private Sequences            ",
141    "      noshadow   : user doesn't want to load Private groups (odd number)  ",
142    "      noseq      : user doesn't want to load Sequences                    ",
143    "      debug      : user wants to run the program in 'debug mode'          ",
144    "      warning    : user wants to be warned about any oddity in the File   ",
145    "      showlut :user wants to display the Palette Color (as an int array)  ",
146    FINISH_USAGE
147
148    // Initialize Arguments Manager   
149    GDCM_NAME_SPACE::ArgMgr *am= new GDCM_NAME_SPACE::ArgMgr(argc, argv);
150   
151    if (argc == 1 || am->ArgMgrDefined("usage") )
152    {
153       am->ArgMgrUsage(usage); // Display 'usage'
154       delete am;
155       return 1;
156    }
157
158    const char *fileName = am->ArgMgrGetString("filein");
159    const char *dirName  = am->ArgMgrGetString("dirin");
160
161    if ( (fileName == 0 && dirName == 0) ||
162         (fileName != 0 && dirName != 0) )
163    {
164       std::cerr << std::endl
165         << "Either 'filein=' or 'dirin=' must be present;" 
166         << std::endl << "Not both" << std::endl;
167       am->ArgMgrUsage(usage); // Display 'usage'  
168       delete am;
169       return 1;
170    }   
171       
172    bool noex = ( 0 != am->ArgMgrDefined("noex") );
173    bool rec  = ( 0 != am->ArgMgrDefined("rec") );   
174         
175    if (am->ArgMgrDefined("debug"))
176       GDCM_NAME_SPACE::Debug::DebugOn();
177
178    if (am->ArgMgrDefined("warning"))
179       GDCM_NAME_SPACE::Debug::WarningOn();
180        
181    int loadMode = GDCM_NAME_SPACE::LD_ALL;
182    if ( am->ArgMgrDefined("noshadowseq") )
183       loadMode |= GDCM_NAME_SPACE::LD_NOSHADOWSEQ;
184    else 
185    {
186       if ( am->ArgMgrDefined("noshadow") )
187          loadMode |= GDCM_NAME_SPACE::LD_NOSHADOW;
188       if ( am->ArgMgrDefined("noseq") )
189          loadMode |= GDCM_NAME_SPACE::LD_NOSEQ;
190    }
191
192    int level = am->ArgMgrGetInt("level", 1);
193
194    int forceLoadNb;
195    uint16_t *elemsToForceLoad 
196                            = am->ArgMgrGetXInt16Enum("forceload", &forceLoadNb);
197
198    int nbP =0;
199    uint16_t *FourthDimLoc;
200    if ( am->ArgMgrDefined("4DLoc") )
201    {
202       FourthDimLoc = am->ArgMgrGetXInt16Enum("4DLoc", &nbP);
203    
204       if (nbP != 1) 
205       {   
206          std::cout << "4DLoc must have 2 and only 2 components!" << std::endl;
207          delete am;
208          return 1;      
209       }
210    }
211
212    bool load = ( 0 != am->ArgMgrDefined("load") );
213    
214    bool showlut = ( 0 != am->ArgMgrDefined("SHOWLUT") );
215
216    bool ddict = am->ArgMgrDefined("dict") ? true : false;
217    const char *dict = 0;
218
219    if (ddict)
220    {
221      dict = am->ArgMgrGetString("dict",0);
222    }
223
224    /* if unused Param we give up */
225    if ( am->ArgMgrPrintUnusedLabels() )
226    {
227       am->ArgMgrUsage(usage);
228       delete am;
229       return 1;
230    } 
231
232    delete am;  // we don't need Argument Manager any longer
233
234    // ----------- End Arguments Manager ---------
235
236
237    if (ddict)
238    {
239       GDCM_NAME_SPACE::Global::GetDicts()->GetDefaultPubDict()->AddDict(dict);
240    }
241
242    if ( fileName != 0 ) // ====== Deal with a single file ======
243    {
244       GDCM_NAME_SPACE::File *f = GDCM_NAME_SPACE::File::New();
245       f->SetLoadMode(loadMode);
246       f->SetFileName( fileName );
247    f->SetMaxSizeLoadEntry(0xffff);
248
249       for (int ri=0; ri<forceLoadNb; ri++)
250       {
251          f->AddForceLoadElement((uint32_t)elemsToForceLoad[2*ri], 
252                                 (uint32_t)elemsToForceLoad[2*ri+1] );
253       }
254 // TODO : find why such a polution
255 // To avoid polluting the output with messages
256 // 'Last system error was : No such file or directory'
257
258 errno = 0; 
259
260
261       bool res = false;
262       try
263         {
264         res = f->Load();
265         }
266       catch(std::exception &ex)
267         {
268         std::cerr << "sorry an exception was thrown: " << ex.what() << std::endl;
269         }
270       // GDCM_NAME_SPACE::File::IsReadable() is no usable here, because we deal with
271       // any kind of gdcm-Parsable *document*
272       // not only GDCM_NAME_SPACE::File (as opposed to GDCM_NAME_SPACE::DicomDir)
273       if ( !res )
274       {
275          std::cout << "Cannot process file [" << fileName << "]" << std::endl;
276          std::cout << "Either it doesn't exist, or it's read protected "
277                    << std::endl;
278          std::cout << "or it's not a Dicom File, or its 'header' is bugged"
279                    << std::endl;
280          std::cout << "use 'PrintFile filein=... debug' to try to guess the pb"
281                    << std::endl;
282          f->Delete();
283          return 0;
284       }
285
286       if (nbP == 1)
287          f->SetFourthDimensionLocation(FourthDimLoc[0],FourthDimLoc[1]);
288
289
290       GDCM_NAME_SPACE::FileHelper *fh = GDCM_NAME_SPACE::FileHelper::New(f);
291       fh->SetPrintLevel( level );
292
293       fh->Print();
294
295       std::cout << "\n\n" << std::endl;
296
297       std::cout <<std::endl;
298       std::cout <<" dataSize    " << fh->GetImageDataSize()    << std::endl;
299       std::cout <<" dataSizeRaw " << fh->GetImageDataRawSize() << std::endl;
300 if (!noex)
301 {
302       int nX,nY,nZ,nT,sPP,planarConfig;
303       std::string pixelType;
304       nX=f->GetXSize();
305       nY=f->GetYSize();
306       nZ=f->GetZSize();
307       nT=f->GetTSize();
308       std::cout << " DIMX=" << nX << " DIMY=" << nY 
309                 << " DIMZ=" << nZ << " DIMT=" << nT
310                 << std::endl;
311
312       pixelType    = f->GetPixelType();
313       sPP          = f->GetSamplesPerPixel();
314       std::cout << " pixelType= ["            << pixelType 
315                 << "] SamplesPerPixel= ["     << sPP
316                 << "] ";
317
318       if (sPP == 3)
319       {
320          planarConfig = f->GetPlanarConfiguration();
321          std::cout << " PlanarConfiguration= [" << planarConfig 
322                 << "] "<< std::endl;
323       } 
324       std::cout << " PhotometricInterpretation= [" 
325                 << f->GetEntryString(0x0028,0x0004)
326                 << "] "<< std::endl;
327
328       int numberOfScalarComponents=f->GetNumberOfScalarComponents();
329       std::cout << " NumberOfScalarComponents = " << numberOfScalarComponents 
330                 <<std::endl
331                 << " LUT = " << (f->HasLUT() ? "TRUE" : "FALSE")
332                 << std::endl;
333
334       if ( f->GetDataEntry(0x0002,0x0010) )
335          if ( f->GetDataEntry(0x0002,0x0010)->IsNotLoaded() ) 
336          {
337             std::cout << "Transfer Syntax not loaded. " << std::endl
338                      << "Better you increase MAX_SIZE_LOAD_ELEMENT_VALUE"
339                   << std::endl;
340             f->Delete();
341             return 0;
342          }
343   
344       std::string transferSyntaxName = f->GetTransferSyntaxName();
345       std::cout << " TransferSyntaxName= [" << transferSyntaxName << "]" 
346                 << std::endl;
347       std::cout << " SwapCode= " << f->GetSwapCode() << std::endl;
348       std::cout << " ------" << std::endl;
349
350       std::cout << "\n\n" << std::endl; 
351       std::cout << "X spacing " << f->GetXSpacing() << std::endl;
352       std::cout << "Y spacing " << f->GetYSpacing() << std::endl;
353       std::cout << "Z spacing " << f->GetZSpacing() << std::endl;
354     
355 //------------------------------
356
357       // Let's get and print some usefull fields about 'Orientation'
358       // ------------------------------------------------------------
359
360       std::string strPatientPosition = 
361                                       f->GetEntryString(0x0018,0x5100);
362       if ( strPatientPosition != GDCM_NAME_SPACE::GDCM_UNFOUND 
363         && strPatientPosition != "" )  
364             std::cout << "PatientPosition (0x0010,0x5100)= [" 
365                       << strPatientPosition << "]" << std::endl;
366  
367       std::string strViewPosition = 
368                                       f->GetEntryString(0x0018,0x5101);
369       if ( strViewPosition != GDCM_NAME_SPACE::GDCM_UNFOUND 
370         && strViewPosition != "" )  
371             std::cout << "View Position (0x0018,0x5101)= [" 
372                       << strViewPosition << "]" << std::endl;
373       
374      std::string strPatientOrientation = 
375                                       f->GetEntryString(0x0020,0x0020);
376       if ( strPatientOrientation != GDCM_NAME_SPACE::GDCM_UNFOUND
377         && strPatientOrientation != "")  
378          std::cout << "PatientOrientation (0x0020,0x0020)= [" 
379                    << strPatientOrientation << "]" << std::endl;
380
381       std::string strImageOrientationPatient = 
382                                       f->GetEntryString(0x0020,0x0037);  
383       if ( strImageOrientationPatient != GDCM_NAME_SPACE::GDCM_UNFOUND
384         && strImageOrientationPatient != "" )  
385          std::cout << "ImageOrientationPatient (0x0020,0x0037)= [" 
386                    << strImageOrientationPatient << "]" << std::endl;
387
388       std::string strImageOrientationRET = 
389                                       f->GetEntryString(0x0020,0x0035);
390       if ( strImageOrientationRET != GDCM_NAME_SPACE::GDCM_UNFOUND
391         && strImageOrientationRET != "" )  
392          std::cout << "ImageOrientationRET (0x0020,0x0035)= [" 
393                    << strImageOrientationRET << "]" << std::endl;
394
395       std::string strImagePositionPatient = 
396                                       f->GetEntryString(0x0020,0x0032);  
397       if ( strImagePositionPatient != GDCM_NAME_SPACE::GDCM_UNFOUND
398         && strImagePositionPatient != "" )  
399          std::cout << "ImagePositionPatient (0x0020,0x0032)= [" 
400                    << strImagePositionPatient << "]" << std::endl;
401
402       std::string strImagePositionPatientRET = 
403                                       f->GetEntryString(0x0020,0x0030);
404       if ( strImagePositionPatientRET != GDCM_NAME_SPACE::GDCM_UNFOUND
405         && strImagePositionPatientRET != "" )  
406          std::cout << "ImagePositionPatientRET (0x0020,0x0030)= [" 
407                    << strImagePositionPatientRET << "]" << std::endl;
408   
409      float iop[6];
410      /*bool riop = */f->GetImageOrientationPatient(iop);  
411      float ipp[3];
412      /*bool ripp = */f->GetImagePositionPatient(ipp);
413
414      std::cout << "Image Position (0x0020,0x0032|0x0030) : "
415                << ipp[0] << " , " << ipp[1] << " , "<< ipp[2]
416                << std::endl;
417      std::cout << "Image Orientation (0x0020,0x0037|0x0035) : "
418                << iop[0] << " , " << iop[1] << " , "<< iop[2] << " , "
419                << iop[3] << " , " << iop[4] << " , "<< iop[5]
420                << std::endl; 
421
422
423       // Let's compute 'user friendly' results about 'Orientation'
424       // ---------------------------------------------------------
425  
426       GDCM_NAME_SPACE::Orientation *o = GDCM_NAME_SPACE::Orientation::New();
427
428       if ( strImageOrientationPatient != GDCM_NAME_SPACE::GDCM_UNFOUND ||
429            strImageOrientationRET     != GDCM_NAME_SPACE::GDCM_UNFOUND )
430       {
431   
432          GDCM_NAME_SPACE::OrientationType orient = o->GetOrientationType( f );
433  
434          std::cout << "TypeOrientation = " << orient << " (-> " 
435                    << o->GetOrientationTypeString(orient) << " )" << std::endl;
436       }
437
438       std::string ori = o->GetOrientation ( f );
439       if (ori != "\\" )
440          std::cout << "Orientation [" << ori << "]" << std::endl;
441       o->Delete();
442       
443       
444 /*      
445 std::vector <double> valueVector; 
446 GDCM_NAME_SPACE::DataEntry *e_0018_5212 = f->GetDataEntry(0x0018, 0x5212);
447 bool resJP = e_0018_5212->GetDSValue(valueVector);
448 if (resJP) {
449    double test;
450    for ( int i=0; i < 3; i++ ) {
451        test = valueVector[i];
452        std::cout << " test " << test << std::endl;
453     }
454 }
455 //e_0018_5212->Delete();
456 */       
457
458
459 /* -----------------------------
460
461 // Try :
462 std::cout << std::endl << std::endl << "===========Try Get Numerical ======="
463           << std::endl;
464 GDCM_NAME_SPACE::DataEntry *e;
465 bool res;
466 std::vector<double> vd;
467
468 // Transfert Syntax
469 e=f->GetDataEntry(0x0002,0x0010);
470 if (e){
471   res=e->GetNumerical(vd);
472   if (!res){
473     std::cout << "0x0002,0x0010 not numerical, size =" << vd.size() << std::endl;  
474   }
475 }
476 // Columns
477 e=f->GetDataEntry(0x0028,0x0011);
478 if (e){
479   res=e->GetNumerical(vd);
480   if (!res){
481     std::cout << "0x0028,0x0011 not numerical, size =" << vd.size() << std::endl;  
482   } else {
483     std::cout << "0x0028,0x0011 numerical, size =" << vd.size() << std::endl;
484     std::cout << vd[0]<< std::endl;
485   }
486 }
487 // Im Orient (Pat)
488 e=f->GetDataEntry(0x0020,0x0032);
489 if (e){
490   res=e->GetNumerical(vd);
491   if (!res){
492     std::cout << "0x0020,0x0032 not numerical, size =" << vd.size() << std::endl;  
493   } else {
494     std::cout << "0x0020,0x0032 numerical, size =" << vd.size() << std::endl;
495     for(int l=0; l<vd.size(); l++)
496       std::cout << "vd[" << l << "]=" << vd[l]<< std::endl;
497   }
498 }
499
500 // Pixel Spacing
501
502 e=f->GetDataEntry(0x0028,0x0030);
503 if (e){
504   res=e->GetNumerical(vd);
505   if (!res){
506     std::cout << "0x0028,0x0030 not numerical, size =" << vd.size() << std::endl;  
507   } else {
508     std::cout << "0x0028,0x0030 numerical, size =" << vd.size() << std::endl;
509     for(int l=0; l<vd.size(); l++)
510       std::cout << "vd[" << l << "]=" << vd[l]<< std::endl;
511   }
512 }
513
514 ----------------------------------------------*/  
515     
516 }  
517 //------------------------------
518
519
520       // Display the LUT as an int array (for debugging purpose)
521       if ( f->HasLUT() && showlut )
522       {
523          uint8_t* lutrgba = fh->GetLutRGBA();
524          if ( lutrgba == 0 )
525          {
526             std::cout << "Lut RGBA (Palette Color) not built " << std::endl;
527  
528            // Nothing is written yet to get LUT Data user friendly
529            // The following is to be moved into a PixelRedaConvert method
530   
531             GDCM_NAME_SPACE::SeqEntry *modLutSeq = f->GetSeqEntry(0x0028,0x3000);
532             if ( modLutSeq !=0 )
533             {
534                GDCM_NAME_SPACE::SQItem *sqi= modLutSeq->GetFirstSQItem();
535                if ( !sqi )
536                {
537                   std::string lutDescriptor = sqi->GetEntryString(0x0028,0x3002);
538                   int length;   // LUT length in Bytes
539                   int deb;      // Subscript of the first Lut Value
540                   int nbits;    // Lut item size (in Bits)
541                   int nbRead;   // nb of items in LUT descriptor (must be = 3)
542
543                   nbRead = sscanf( lutDescriptor.c_str(),
544                                     "%d\\%d\\%d",
545                                      &length, &deb, &nbits );
546                   if ( nbRead != 3 )
547                   {
548                       std::cout << "Wrong LUT descriptor" << std::endl;
549                   }                                                  
550                   GDCM_NAME_SPACE::DataEntry *b = sqi->GetDataEntry(0x0028,0x3006);
551                   if ( b != 0 )
552                   {
553                      if ( b->GetLength() != 0 )
554                      {
555                         std::cout << "---------------------------------------"
556                                << " We should never reach this point      "
557                                << std::endl;
558                         //LoadEntryBinArea(b);    //LUT Data (CTX dependent)
559                      }   
560                  }
561               }      
562             }
563             else
564                std::cout << "No LUT Data (0x0028,0x3000) found " << std::endl;
565         }
566         /*
567          else
568          {
569             if ( fh->GetLutItemSize() == 8 )
570             {
571                for (int i=0;i<fh->GetLutItemNumber();i++)
572                   std::cout << i << " : \t"
573                          << (int)(lutrgba[i*4])   << " "
574                          << (int)(lutrgba[i*4+1]) << " "
575                          << (int)(lutrgba[i*4+2]) << std::endl;
576             }
577             else // LutItemSize assumed to be = 16
578             {
579                uint16_t* lutrgba16 = (uint16_t*)lutrgba;
580                for (int i=0;i<fh->GetLutItemNumber();i++)
581                   std::cout << i << " : \t"
582                          << (int)(lutrgba16[i*4])   << " "
583                          << (int)(lutrgba16[i*4+1]) << " "
584                          << (int)(lutrgba16[i*4+2]) << std::endl;
585             }
586          }
587          */
588       }
589       else if (showlut)
590       {
591          std::cout << "Try LUT Data "<< std::endl;
592          ShowLutData(f);
593       }
594
595       // Parsability of the GDCM_NAME_SPACE::Document already checked, after Load() !
596       
597       if ( f->IsReadable() )
598       {
599          std::cout <<std::endl<<fileName<<" is Readable"<<std::endl;
600       }
601       else if ( f->GetSeqEntry(0x0041,0x1010) )
602       {
603          std::cout <<std::endl<<fileName<<" looks like a 'PAPYRUS image' file"
604                    <<std::endl;
605       }
606       else if ( f->GetSeqEntry(0x0004,0x1220) )
607       {
608          std::cout <<std::endl<<fileName<<" looks like a 'DICOMDIR file'"
609                    <<std::endl;
610       }
611       else 
612       {
613          std::cout <<std::endl<<fileName<<" doesn't look like an image file "
614              <<std::endl; 
615       }
616  
617       std::cout<<std::flush;
618       f->Delete();
619       fh->Delete();
620    }
621          // ===========================================================================
622    else  // =============================== Deal with a Directory =====================
623    {     // ===========================================================================
624       std::cout << "dirName [" << dirName << "]" << std::endl;
625       
626       GDCM_NAME_SPACE::DirList dirList(dirName,rec); // gets recursively (or not) the file list
627       GDCM_NAME_SPACE::DirListType fileList = dirList.GetFilenames();
628       GDCM_NAME_SPACE::File *f;
629       bool res;
630
631       if (fileList.size() == 0)
632       {
633          std::cout << "No file found in : [" << dirName << "]" << std::endl;
634       }
635       
636       for( GDCM_NAME_SPACE::DirListType::iterator it  = fileList.begin();
637                                  it != fileList.end();
638                                  ++it )
639       {
640          std::cout << std::endl<<" Start processing :[" << it->c_str() << "]"
641                    << std::endl;
642          f = GDCM_NAME_SPACE::File::New();
643          f->SetLoadMode(loadMode);
644          f->SetFileName( it->c_str() );
645
646          for (int ri=0; ri<forceLoadNb; ri++)
647          {
648             printf("%04x,%04x\n",elemsToForceLoad[2*ri], 
649                                  elemsToForceLoad[2*ri+1]);
650             f->AddForceLoadElement((uint32_t)elemsToForceLoad[2*ri], 
651                                    (uint32_t)elemsToForceLoad[2*ri+1]); 
652          }
653          res = f->Load();
654
655          if ( !res )
656          {
657             std::cout << "Cannot process file [" << it->c_str() << "]" 
658                       << std::endl;
659             std::cout << "Either it doesn't exist, or it's read protected " 
660                       << std::endl;
661             std::cout << "or it's not a Dicom File, or its 'header' is bugged" 
662                       << std::endl;
663             std::cout << "use 'PrintFile filein=... debug' "
664                       << "to try to guess the pb"
665                       << std::endl;
666             f->Delete();
667             continue;
668          }
669
670          GDCM_NAME_SPACE::FileHelper *fh = GDCM_NAME_SPACE::FileHelper::New(f);
671          fh->SetPrintLevel( level );
672          fh->Print();
673
674 //------------------------------
675 if (!noex)
676 {
677          // Lets's get and print some usefull fields about 'Orientation'
678          // ------------------------------------------------------------
679
680          std::string strPatientPosition = 
681                                        f->GetEntryString(0x0018,0x5100);
682          if ( strPatientPosition != GDCM_NAME_SPACE::GDCM_UNFOUND 
683          && strPatientPosition != "" )  
684                std::cout << "PatientPosition (0x0010,0x5100)= [" 
685                         << strPatientPosition << "]" << std::endl;
686     
687          std::string strViewPosition = 
688                                        f->GetEntryString(0x0018,0x5101);
689          if ( strViewPosition != GDCM_NAME_SPACE::GDCM_UNFOUND 
690          && strViewPosition != "" )  
691                std::cout << "strViewPosition (0x0010,0x5101)= [" 
692                         << strViewPosition << "]" << std::endl;
693          
694          std::string strPatientOrientation = 
695                                        f->GetEntryString(0x0020,0x0020);
696          if ( strPatientOrientation != GDCM_NAME_SPACE::GDCM_UNFOUND
697          && strPatientOrientation != "")  
698             std::cout << "PatientOrientation (0x0020,0x0020)= [" 
699                       << strPatientOrientation << "]" << std::endl;
700
701          std::string strImageOrientationPatient = 
702                                        f->GetEntryString(0x0020,0x0037);  
703          if ( strImageOrientationPatient != GDCM_NAME_SPACE::GDCM_UNFOUND
704          && strImageOrientationPatient != "" )  
705             std::cout << "ImageOrientationPatient (0x0020,0x0037)= [" 
706                      << strImageOrientationPatient << "]" << std::endl;
707
708          std::string strImageOrientationRET = 
709                                        f->GetEntryString(0x0020,0x0035);
710          if ( strImageOrientationRET != GDCM_NAME_SPACE::GDCM_UNFOUND
711          && strImageOrientationRET != "" )
712          {
713             std::cout << "ImageOrientationRET (0x0020,0x0035)= [" 
714                      << strImageOrientationRET << "]" << std::endl;
715          }
716
717          // Let's compute 'user friendly' results about 'Orientation'
718          // ---------------------------------------------------------
719     
720          GDCM_NAME_SPACE::Orientation *o = GDCM_NAME_SPACE::Orientation::New(); 
721
722
723          if ( strImageOrientationPatient != GDCM_NAME_SPACE::GDCM_UNFOUND ||
724             strImageOrientationRET     != GDCM_NAME_SPACE::GDCM_UNFOUND )
725          {
726      
727             GDCM_NAME_SPACE::OrientationType orient = o->GetOrientationType( f );
728     
729             std::cout << "TypeOrientation = " << orient << " (-> " 
730                      << o->GetOrientationTypeString(orient) << " )" << std::endl;
731          }
732
733          std::string ori = o->GetOrientation ( f );
734          if (ori != "\\" )
735             std::cout << "Orientation [" << ori << "]" << std::endl;
736          o->Delete();
737 }
738 //------------------------------- 
739         
740          if (f->IsReadable())
741          {
742             if (load)  // just to see warning messages at load time !
743             {
744                uint8_t *pixels = fh->GetImageData(); (void)pixels;
745                uint32_t lgth   = fh->GetImageDataSize(); (void)lgth;
746             }         
747
748             std::cout <<std::endl<<it->c_str()<<" is Readable"<<std::endl;
749          }
750          else
751             std::cout <<std::endl<<it->c_str()<<" is NOT Readable"<<std::endl;
752          std::cout << "\n\n" << std::endl;
753          
754
755
756          f->Delete();
757          fh->Delete();
758       }
759       std::cout<<std::flush;
760    }
761    return 0;
762 }