From: regrain Date: Tue, 5 Apr 2005 09:15:37 +0000 (+0000) Subject: * Amelioration of demo X-Git-Tag: Version1.2.bp~803 X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=commitdiff_plain;h=404c8b83212e675c77458f9cf2c3cfb851c7eee2;p=gdcm.git * Amelioration of demo -- BeNours --- diff --git a/gdcmPython/demo/PrintDicomDir.py.in b/gdcmPython/demo/PrintDicomDir.py.in index 16f171e1..a6aa6d74 100644 --- a/gdcmPython/demo/PrintDicomDir.py.in +++ b/gdcmPython/demo/PrintDicomDir.py.in @@ -39,3 +39,22 @@ print "##############################################################" dicomdir.SetPrintLevel(-1) dicomdir.Print() +print "" +patient=dicomdir.GetFirstPatient() +while(patient): + print "Patient" + study=patient.GetFirstStudy() + while(study): + print " Study" + serie=study.GetFirstSerie() + while(serie): + print " Serie" + image=serie.GetFirstImage() + while(image): + print " Image" + print " ---",image.GetValEntry(0x0004,0x1500).GetValue() + image=serie.GetNextImage() + serie=study.GetNextSerie() + study=patient.GetNextStudy() + patient=dicomdir.GetNextPatient() +