]> Creatis software - gdcm.git/blob - Example/exSerieHelper.cxx
fb48ad03075a4d189f254810546fa9216435c5b3
[gdcm.git] / Example / exSerieHelper.cxx
1 /*=========================================================================
2                                                                                 
3   Program:   gdcm
4   Module:    $RCSfile: exSerieHelper.cxx,v $
5   Language:  C++
6   Date:      $Date: 2005/11/14 15:55:17 $
7   Version:   $Revision: 1.7 $
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 "gdcmSerieHelper.h"
19 #include "gdcmFile.h"
20 #include "gdcmDebug.h"
21 #include <iostream>
22
23 int main(int argc, char *argv[])
24 {  
25    gdcm::SerieHelper *s;
26   
27    std::string dirName; 
28    if (argc > 1) 
29       dirName = argv[1];    
30    else 
31    {
32       dirName = GDCM_DATA_ROOT;
33    }
34
35    if (argc > 2)
36       gdcm::Debug::DebugOn();
37
38   
39    std::cout << "Dir Name :[" << dirName << "]" << std::endl;
40
41    s = gdcm::SerieHelper::New();
42    s->SetLoadMode(gdcm::LD_ALL);     // Load everything for each File
43    //gdcm::TagKey t(0x0020,0x0013);
44    //s->AddRestriction(t, "340", gdcm::GDCM_LESS); // Keep only files where
45                                               // restriction is true
46    s->SetDirectory(dirName, true); // true : recursive exploration
47
48    std::cout << " ---------------------------------------- Finish parsing :["
49              << dirName << "]" << std::endl;
50
51    s->Print();
52    std::cout << " ---------------------------------------- Finish printing (1)"
53              << std::endl;
54
55    int nbFiles;
56    // For all the Single SerieUID Files Sets of the gdcm::Serie
57    gdcm::FileList *l = s->GetFirstSingleSerieUIDFileSet();
58    while (l)
59    { 
60       nbFiles = l->size() ;
61       if ( l->size() > 3 ) // Why not ? Just an example, for testing
62       {
63          std::cout << "Sort list : " << nbFiles << " long" << std::endl;
64          s->OrderFileList(l);  // sort the list
65       }
66       l = s->GetNextSingleSerieUIDFileSet();
67    } 
68    std::cout << " -------------------------------------------- Finish sorting"
69              << std::endl;
70    s->Print(); // Prints all the Single SerieUID File Sets (sorted or not)
71    std::cout << " -------------------------------------------- Finish printing"
72              << std::endl;
73
74
75    // Only for the first Coherent File List 
76    // ( Why not ? Just an example, for testing )
77    // Display all the file names
78
79    std::string fileName; 
80    l = s->GetFirstSingleSerieUIDFileSet();
81    for (std::vector<gdcm::File* >::iterator it =  l->begin();
82                                             it != l->end();
83                                           ++it)
84    {
85       fileName = (*it)->GetFileName();
86       std::cout << fileName << std::endl;
87    } 
88      
89
90    s->Delete();
91
92    return 0;
93 }