X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=gdcmPython%2Fdemo%2FPrintDicomDir.py.in;h=dcd47fef32a27530b8e3407318497e67d5c46637;hb=5f2f63726d61c93ece8e85fe9fc7c5fa8093bf61;hp=a76944997823b599f47152b4df0362a7d975b601;hpb=a0401014c0c575820453fab2197d97607a89150f;p=gdcm.git diff --git a/gdcmPython/demo/PrintDicomDir.py.in b/gdcmPython/demo/PrintDicomDir.py.in index a7694499..dcd47fef 100644 --- a/gdcmPython/demo/PrintDicomDir.py.in +++ b/gdcmPython/demo/PrintDicomDir.py.in @@ -12,6 +12,14 @@ def PrintUse(): print "" print "" +### Progress methods +def startMethod(): + print "Start" +def progressMethod(): + print "Progress",dicomdir.GetProgress() +def endMethod(): + print "End" + ### Get filename from command line or default it try: fileName = sys.argv[1] @@ -26,7 +34,12 @@ except IndexError: printLevel = 1 ### Build the DicomDir element list -dicomdir = gdcm.DicomDir() +dicomdir = gdcm.DicomDir.New() + +dicomdir.SetStartMethod(startMethod) +dicomdir.SetProgressMethod(progressMethod) +dicomdir.SetEndMethod(endMethod) + dicomdir.SetFileName(fileName) dicomdir.Load() if not dicomdir.IsReadable(): @@ -54,9 +67,23 @@ while(patient): image=serie.GetFirstImage() while(image): print " Image" - print " ---",image.GetValEntry(0x0004,0x1500).GetValue() + print " ---",image.GetDataEntry(0x0004,0x1500).GetString() image=serie.GetNextImage() serie=study.GetNextSerie() study=patient.GetNextStudy() patient=dicomdir.GetNextPatient() +dicomdir.SetDirectoryName(os.path.dirname(fileName)) +dicomdir.Load() +if not dicomdir.IsReadable(): + PrintUse() + raise RuntimeError,"The '%s' DicomDir is not readable with gdcm." % fileName + +print "DICOMDIR -->",fileName +print "##############################################################" +print "## Display all the elements and their respective values" +print "## found in the ", fileName, " file." +print "##############################################################" +dicomdir.SetPrintLevel(-1) +dicomdir.Print() +