/*========================================================================= Program: gdcm Module: $RCSfile: TestDicomDir.cxx,v $ Language: C++ Date: $Date: 2005/01/17 13:24:15 $ Version: $Revision: 1.28 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or http://www.creatis.insa-lyon.fr/Public/Gdcm/License.html for details. This software is distributed WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the above copyright notices for more information. =========================================================================*/ #include "gdcmDocEntry.h" #include "gdcmDicomDir.h" #include "gdcmDicomDirPatient.h" #include "gdcmDicomDirStudy.h" #include "gdcmDicomDirSerie.h" #include "gdcmDicomDirImage.h" #include "gdcmTS.h" #include #include int TestDicomDir(int argc, char* argv[]) { gdcm::DicomDir *e1; gdcm::DicomDirPatient *pa; gdcm::DicomDirStudy *st; gdcm::DicomDirSerie *se; gdcm::DicomDirImage *im; gdcm::TSKey v; std::string file; if (argc > 1) file = argv[1]; else { file += GDCM_DATA_ROOT; file += "/DICOMDIR"; } std::cout << "----------------- " << file << "-----" < 2) { int level = atoi(argv[2]); e1->SetPrintLevel(level); } // Test if the DicomDir is readable if( !e1->IsReadable() ) { std::cout<<" DicomDir '"<InitTraversal(); // Test if the DicomDir contains any Patient if( !e1->GetNextEntry() ) { std::cout<<" DicomDir '"<InitTraversal(); pa = e1->GetNextEntry(); while ( pa ) { // on degouline la liste de PATIENT std::cout << pa->GetEntry(0x0010, 0x0010) << std::endl; // Patient's Name pa->InitTraversal(); st = pa->GetNextEntry(); while ( st ) { // on degouline les STUDY de ce patient std::cout << "--- "<< st->GetEntry(0x0008, 0x1030) << std::endl; // Study Description std::cout << " Stud.ID:[" << st->GetEntry(0x0020, 0x0010); // Study ID st->InitTraversal(); se = st->GetNextEntry(); while ( se ) { // on degouline les SERIES de cette study std::cout << "--- --- "<< se->GetEntry(0x0008, 0x103e) << std::endl; // Serie Description std::cout << " Ser.nb:[" << se->GetEntry(0x0020, 0x0011); // Series number std::cout << "] Mod.:[" << se->GetEntry(0x0008, 0x0060) << "]"; // Modality se->InitTraversal(); im = se->GetNextEntry(); while ( im ) { // on degouline les Images de cette serie std::cout << "--- --- --- "<< im->GetEntry(0x0004, 0x1500) << std::endl; // File name im = se->GetNextEntry(); } se = st->GetNextEntry(); } st = pa->GetNextEntry(); } pa = e1->GetNextEntry(); } std::cout << std::endl << std::endl << " = DICOMDIR full content ====================================" << std::endl<< std::endl; e1->Print(); std::cout<