The group_by argument of DicomReader currently defaults to EchoNumbers, which is not commonly present in DICOM files.
Typically, I would only load one DICOM study and not use grouping at all. I would suggest to default to None and to disable grouping that scenario (i.e., not returning a list of MedicalVolume, but a single instance).
The
group_byargument ofDicomReadercurrently defaults toEchoNumbers, which is not commonly present in DICOM files.Typically, I would only load one DICOM study and not use grouping at all. I would suggest to default to
Noneand to disable grouping that scenario (i.e., not returning a list ofMedicalVolume, but a single instance).