X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=gdcmPython%2Fdemo%2FPrintHeader.py;h=3239266fa9e658ff7dc4907f1a529716273e8e20;hb=38d772b8588bc4e7106dbafcb24f6bff91b8c4c1;hp=4dafd14092d28bcc9da4295a4f6e54b93976982a;hpb=7b8dcad5fbb9b248952ad6819ef984e7880ef81e;p=gdcm.git diff --git a/gdcmPython/demo/PrintHeader.py b/gdcmPython/demo/PrintHeader.py index 4dafd140..3239266f 100644 --- a/gdcmPython/demo/PrintHeader.py +++ b/gdcmPython/demo/PrintHeader.py @@ -1,5 +1,6 @@ from gdcmPython import * import sys +import os ### Get filename from command line or default it try: @@ -20,7 +21,8 @@ except IndexError: #s = raw_input("Hit any key in this window to exit") ### Build the header element list -toRead = gdcmHeader(FileName) +print FileName, type(FileName) +toRead = gdcm.Header(FileName) if not toRead.IsReadable(): print "The ", FileName, " file is not readable with gdcm. Sorry." sys.exit() @@ -29,10 +31,10 @@ print "##############################################################" print "### Display all the elements and their respective values" print "## found in the ", FileName, " file." print "##############################################################" -toRead.SetPrintLevel(printLevel) -toRead.Print() +###toRead.SetPrintLevel(printLevel) +###toRead.Print() -# ValDict = toRead.GetEntry() -# for key in ValDict.keys(): -# print "[%s] = [%s]" %(key, ValDict[key]) +ValDict = toRead.GetEntry() +for key in ValDict.keys(): + print "[%s] = [%s]" %(key, ValDict[key])