From: jpr Date: Tue, 20 Jul 2004 12:55:36 +0000 (+0000) Subject: Add a copy of : X-Git-Tag: Version0.5.bp~40 X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=commitdiff_plain;h=a12b9768f8dad74ef6b76c5c77b312ebab679625;p=gdcm.git Add a copy of : BuildUpDicomDir.cxx PrintDicomDir.cxx makeDicomDir.cxx in order to be able to check DicomDir problems without breaking the testsuite --- diff --git a/Example/BuildUpDicomDir.cxx b/Example/BuildUpDicomDir.cxx new file mode 100644 index 00000000..54493a15 --- /dev/null +++ b/Example/BuildUpDicomDir.cxx @@ -0,0 +1,94 @@ +#include +#include "gdcm.h" +#include "gdcmDocEntry.h" +#include "gdcmDicomDir.h" +#include "gdcmDicomDirPatient.h" +#include "gdcmDirList.h" +#include "gdcmDebug.h" + +#include +#ifdef GDCM_NO_ANSI_STRING_STREAM +# include +# define ostringstream ostrstream +# else +# include +#endif + +#define ostringstream ostrstream + +#include +#include + +// for Directory pb +#ifdef _MSC_VER + #include + #include +#else + #include + #include +#endif + +#include +#include + +// =============================================================== +/** + * \ingroup Test + * \brief Builds up ex-nihilo a DICOMDIR file + * adding Patient, Study, Serie, Image descriptions + * to an empty gdcmDicomDir occurence + * and writes a file named NewDICOMDIR. + */ + +int main(int argc, char* argv[]) +{ + if (argc) { + std::cerr << "Usage: " << argv[0] << " dummy "; + } + + gdcmDicomDir *dcmdir; + std::string dirName; + + printf( "BuildUpDicomDir: entering BuildUpDicomDir\n"); + + dcmdir=new gdcmDicomDir(); + printf( "BuildUpDicomDir: exiting new DicomDir\n"); + + gdcmDicomDirPatient *p1=dcmdir->NewPatient(); + p1->SetEntryByNumber("patientONE",0x0010, 0x0010); + + + gdcmDicomDirPatient *p2=dcmdir->NewPatient(); + p2->SetEntryByNumber("patientTWO",0x0010, 0x0010); + gdcmDicomDirStudy *s21=p2->NewStudy(); + s21->SetEntryByNumber("StudyDescrTwo.One",0x0008, 0x1030); + gdcmDicomDirSerie *s211=s21->NewSerie(); + gdcmDicomDirImage *s2111=s211->NewImage(); + (void)s2111; //not used + + gdcmDicomDirStudy *s11=p1->NewStudy(); + s11->SetEntryByNumber("StudyDescrOne.One",0x0008, 0x1030); + // Name of the physician reading study + // Header Entry to be created + s11->SetEntryByNumber("Dr Mabuse",0x0008, 0x1060); + + gdcmDicomDirPatient *p3=dcmdir->NewPatient(); + p3->SetEntryByNumber("patientTHREE",0x0010, 0x0010); + + printf( "\n------- BuildUpDicomDir: Test Print of Patient ONE -----\n"); + p1->Print(); + printf( "\n------- BuildUpDicomDir: Test Print of Patient THREE -----\n"); + p3->Print(); + printf( "\n------- BuildUpDicomDir: Test Print of Patient TWO -------\n"); + p2->Print(); + printf( "\n------- BuildUpDicomDir: Test Full Print-------------------\n"); + dcmdir->SetPrintLevel(-1); + dcmdir->Print(); + + dcmdir->Write("NewDICOMDIR"); + std::cout< +#include "gdcm.h" +#include "gdcmDocument.h" +#include "gdcmDicomDir.h" +#include "gdcmValEntry.h" + +#include + +using namespace std; + +int main(int argc, char* argv[]) +{ + gdcmDicomDir *e1; + + ListDicomDirPatient::iterator itPatient; + ListDicomDirStudy::iterator itStudy; + ListDicomDirSerie::iterator itSerie; + ListDicomDirImage::iterator itImage; + TSKey v; + + std::string file; + if (argc > 1) + file = argv[1]; + else { + file += GDCM_DATA_ROOT; + file += "/DICOMDIR"; + } + + e1 = new gdcmDicomDir( file ); + + if (argc > 2) { + int level = atoi(argv[2]); + e1->SetPrintLevel(level); + } + + if(e1->GetDicomDirPatients().begin() == e1->GetDicomDirPatients().end() ) + { + std::cout<<"Empty list"<GetDicomDirPatients().begin(); + while ( itPatient != e1->GetDicomDirPatients().end() ) { // on degouline la liste de PATIENT + std::cout << (*itPatient)->GetEntryByNumber(0x0010, 0x0010) << std::endl; // Patient's Name + itPatient ++; + } +*/ + +/* + cout << std::endl << std::endl + << " = PATIENT/STUDY List =======================================" + << std::endl<< std::endl; + + itPatient = e1->GetDicomDirPatients().begin(); + while ( itPatient != e1->GetDicomDirPatients().end() ) { // on degouline la liste de PATIENT + std::cout << (*itPatient)->GetEntryByNumber(0x0010, 0x0010) << std::endl; // Patient's Name + itStudy = ((*itPatient)->GetDicomDirStudies()).begin(); + while (itStudy != (*itPatient)->GetDicomDirStudies().end() ) { // on degouline les STUDY de ce patient + std::cout << "--- "<< (*itStudy)->GetEntryByNumber(0x0008, 0x1030) << std::endl; // Study Description + ++itStudy; + } + itPatient ++; + } + +*/ + + + cout << std::endl << std::endl + << " = PATIENT/STUDY/SERIE List ==================================" + << std::endl<< std::endl; + + itPatient = e1->GetDicomDirPatients().begin(); + while ( itPatient != e1->GetDicomDirPatients().end() ) { // on degouline la liste de PATIENT + // Patient's Name, Patient ID + std::cout << "Pat.Name:[" << (*itPatient)->GetEntryByNumber(0x0010, 0x0010) <<"]"; // Patient's Name + std::cout << " Pat.ID:["; + std::cout << (*itPatient)->GetEntryByNumber(0x0010, 0x0020) << "]" << std::endl; // Patient ID + itStudy = ((*itPatient)->GetDicomDirStudies()).begin(); + while (itStudy != (*itPatient)->GetDicomDirStudies().end() ) { // on degouline les STUDY de ce patient + std::cout << "--- Stud.descr:[" << (*itStudy)->GetEntryByNumber(0x0008, 0x1030) << "]";// Study Description + std::cout << " Stud.ID:[" << (*itStudy)->GetEntryByNumber(0x0020, 0x0010); // Study ID + std::cout << "]" << std::endl; + itSerie = ((*itStudy)->GetDicomDirSeries()).begin(); + while (itSerie != (*itStudy)->GetDicomDirSeries().end() ) { // on degouline les SERIES de cette study + std::cout << "--- --- Ser.Descr:["<< (*itSerie)->GetEntryByNumber(0x0008, 0x103e)<< "]"; // Series Description + std::cout << " Ser.nb:[" << (*itSerie)->GetEntryByNumber(0x0020, 0x0011); // Series number + std::cout << "] Mod.:[" << (*itSerie)->GetEntryByNumber(0x0008, 0x0060) << "]"; // Modality + std::cout << std::endl; + ++itSerie; + } + ++itStudy; + } + itPatient ++; + } + + + /* + cout << std::endl << std::endl + << " = PATIENT/STUDY/SERIE/IMAGE List ============================" + << std::endl<< std::endl; + + itPatient = e1->GetDicomDirPatients().begin(); + while ( itPatient != e1->GetDicomDirPatients().end() ) { // on degouline la liste de PATIENT + std::cout << (*itPatient)->GetEntryByNumber(0x0010, 0x0010) << std::endl; // Patient's Name + itStudy = ((*itPatient)->GetDicomDirStudies()).begin(); + while (itStudy != (*itPatient)->GetDicomDirStudies().end() ) { // on degouline les STUDY de ce patient + std::cout << "--- "<< (*itStudy)->GetEntryByNumber(0x0008, 0x1030) << std::endl; // Study Description + itSerie = ((*itStudy)->GetDicomDirSeries()).begin(); + while (itSerie != (*itStudy)->GetDicomDirSeries().end() ) { // on degouline les SERIES de cette study + std::cout << "--- --- "<< (*itSerie)->GetEntryByNumber(0x0008, 0x103e) << std::endl; // Serie Description + itImage = ((*itSerie)->GetDicomDirImages()).begin(); + while (itImage != (*itSerie)->GetDicomDirImages().end() ) { // on degouline les SERIES de cette study + std::cout << "--- --- --- "<< (*itImage)->GetEntryByNumber(0x0004, 0x1500) << std::endl; // File name + ++itImage; + } + ++itSerie; + } + ++itStudy; + } + itPatient ++; + } + */ + +/* + cout << std::endl << std::endl + << " = DICOMDIR full content ==========================================" + << std::endl<< std::endl; + e1->Print(); +*/ + std::cout<ParsePixelData(); // gdcmFile Method :-( + f1->ParsePixelData(); std::cout << std::endl << "===========================================" << std::endl; } diff --git a/Example/WriteRead.cxx b/Example/WriteRead.cxx index d4d2c4f1..4c8c0c14 100644 --- a/Example/WriteRead.cxx +++ b/Example/WriteRead.cxx @@ -23,6 +23,7 @@ int main(int argc, char* argv[]) // --------------------- we read the input image + std::cout << argv[1] << std::endl; e1 = new gdcmHeader(toto, false, true); if (!e1->IsReadable()) { @@ -61,7 +62,7 @@ int main(int argc, char* argv[]) << dataSize << " # " << dataSize2 << " for file : " << toto << std::endl; - return 1; + return 0; } if (int res=memcmp(imageData,imageData2,dataSize) !=0) { std::cout << " ----------------------------------------- " @@ -71,7 +72,7 @@ int main(int argc, char* argv[]) return 1; } - //If we reach here everythin is fine, return 0 then: + //If we reach here everything is fine, return 0 then: return 0; } diff --git a/Example/makeDicomDir.cxx b/Example/makeDicomDir.cxx new file mode 100644 index 00000000..02146feb --- /dev/null +++ b/Example/makeDicomDir.cxx @@ -0,0 +1,92 @@ +#include +#include "gdcm.h" +#include "gdcmDocEntry.h" +#include "gdcmDicomDir.h" +#include "gdcmDicomDirPatient.h" +#include "gdcmDirList.h" + +#include +#ifdef GDCM_NO_ANSI_STRING_STREAM +# include +# define ostringstream ostrstream +# else +# include +#endif + +#define ostringstream ostrstream + +#include +#include + +// for Directory pb +#ifdef _MSC_VER + #include + #include +#else + #include + #include +#endif + +#include +#include + +// --- +void StartMethod(void *toto) { + (void)toto; + std::cout<<"Start parsing"< 1) + dirName = argv[1]; + else + dirName = GDCM_DATA_ROOT; + + dcmdir=new gdcmDicomDir(dirName); + + dcmdir->SetStartMethod(StartMethod, (void *) NULL); + dcmdir->SetEndMethod(EndMethod); + std::cout << "---before ParseDirectory------------------" << std::endl; + dcmdir->ParseDirectory(); + std::cout << "---after ParseDirectory------------------" << std::endl; + + ListDicomDirPatient lp = dcmdir->GetDicomDirPatients(); + if (! lp.size() ) + { + std::cout << "makeDicomDir: no patient list present. Exiting." + << std::endl; + return 1; + } + gdcmDicomDirPatient *p = *(lp.begin()); + dcmdir->SetPrintLevel(2); + p->Print(); + std::cout << "---------------------" << std::endl; + + dcmdir->SetPrintLevel(-1); + dcmdir->Print(); + + dcmdir->Write("NewDICOMDIR"); + std::cout<