Medinria doest not read correctly dicom anymore
paulineMig opened this issue · 0 comments
Try to open a dicom instead of a volume you will have multiple files (one for each slice) this is due to the fact that in medAbstractDatabaseImporter.cpp the generateUniqueVolumeId function generate an unique key tintende to be unique for each volume however this key is create as follow:
QString key = patientName+studyDicomId+seriesDescription+orientation+sequenceName+sliceThickness+rows+columns;
Which is problematic for anonymized dicom images because the name of the file is used in serieDescription which means a different key for each slice (dicom file name increment a number between each file of a volume).
We should use another parameter than seriesDescription but which one is the best? SeriesNumber should do the job fine