View Revisions: Issue #4474

Summary 0004474: TypeError in DICOMUtils
Revision 2017-11-09 10:08 by alexis.girault
Additional Information

Regarding the second case: loadPatientByUID input is not a UID, but the index of the patient in the DICOM database (between '1' and the number of patients in the list). That does not seem to be the expected behavior:

d.loadPatientByUID(1) # works (if at least one patient is in the database)
d.loadPatientByUID('valid_patient_UID') # fails with TypeError.
Revision 2017-11-09 10:07 by alexis.girault
Additional Information

Regarding 0000002: loadPatientByUID input is not a UID, but the index of the patient in the DICOM database (between '1' and the number of patients in the list). That does not seem to be the expected behavior:

d.loadPatientByUID(1) # works (if at least one patient is in the database)
d.loadPatientByUID('valid_patient_UID') # fails with TypeError.
Revision 2017-11-09 10:06 by alexis.girault
Additional Information

Regarding 0000002: loadPatientByUID input is not a UID, but the index of the patient in the DICOM database (between '1' and the number of patients in the list). That does not seem to be the expected behavior:

d.loadPatientByUID(1) -> works (if at least one patient is in the database)
d.loadPatientByUID('valid_patient_UID') -> fails with TypeError.