You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Feb 2, 2022. It is now read-only.
I have opened an a patient and displayed some ROIs and Dose, You can see that the location and scaling appear to be incorrect. The first image shows how it should look, and the second shows it in dicompyler.
The text was updated successfully, but these errors were encountered:
Thank you. I was able to reproduce the issue. I'm pretty sure it has to do with the pixel spacing being reversed for rows and columns. Let me work on a fix.
when opening the patient, the RxDose cannot be read automatically from Plan due to the problem of the new version, so the RxDose needs to be input by hand below the "Open Patient Window".
solution:
replace lines 794 to 798 of “dicomparser.py” file with the following code:
if (("FractionGroupSequence" in self.ds) and (self.plan['rxdose'] == 0)): fg = self.ds.FractionGroupSequence[0] if ("ReferencedBeamSequence" in fg) and ("NumberOfFractionsPlanned" in fg): beams = fg.ReferencedBeamSequence fx = fg.NumberOfFractionsPlanned
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
I have opened an a patient and displayed some ROIs and Dose, You can see that the location and scaling appear to be incorrect. The first image shows how it should look, and the second shows it in dicompyler.
The text was updated successfully, but these errors were encountered: