-
Notifications
You must be signed in to change notification settings - Fork 66
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How to stop DObject.read from setting some tags to nil? #76
Comments
If you want to just change the Patient's ID, then you can achieve that like this:
Hope that helps. Best regards, |
Thanks for the quick reply Chris, I appreciate that.
Thats Correct, but other tag elements like StudyInstanceUID become nil. I have used exactly the same code you have suggested above. It looks like private tags are getting removed on DObject.read, there is such thing? I can provide the file before and the file after if that helps. Thanks in advance, |
Hmm, this is not expected. I am very surprised if this is the case. Any other tags (including private) should be left alone when this is performed. Please provide your before and after example, so I can have a look at it. Best regards, |
I was surprised as well. So the only code i executed after our discussion is:
The file size reduced from 1.7 MB to 852 bytes. Environment: Once again I appreciate your help :) Thanks. |
Thanks for supplying the file in question. I understand now what is going on. This DICOM file is actually invalid. It contains tags which have odd length (0010,0020 Patient ID and 0020,000D Study Instance UID). If you study the log, ruby-dicom will inform you that it failed reading the file because of this. With ruby-dicom 0.9.8, I get the following output:
I would complain about this to the software responsible for outputting this DICOM file. From tag 0002,0013, the name of this software seems to be: That being said, it is possible ruby-dicom should still be able to parse this file, and I will look into that. Still though, this would not be a problem if the source software encoded this file properly. Best regards, |
Amazingly I missed this on the log yeah.
Seems like the initial parsing and encoding happening on js from that library is wrong yeah. :( Thanks again |
I noticed that just by reading a dicom file,
dcm = DObject.read("some_file.dcm")
is setting some tags like (PatientID, StudyInstanceUID, SeriesInstanceUID) to nil.
There is any way to stop that and read all of the tags without removing any?
I do not want any anonymization or tags removal, just to replace PatientID, keep all other tags as they are and save to a different file.
Is this possible?
Environment:
Ruby 1.9.3
dicom 0.9.6
The text was updated successfully, but these errors were encountered: