Very new, Can't seem to load a 4D CT scanning sequence in DICOM format

Hi all,

as said in the title, I am very new to Slicer and its applications. I want to analyze a series of 4-dimensional CT-scans (xyzt). I have the files in DICOM format. It seems I have the same problem as posted in this post before, however I can not seem to fix it.

My files have been handed over in different frames, where each folder is 1 frame, consisting of a number of .dcm files

These are my steps:

  1. Add data through the Add DICOM Data module
  2. Select folder containing the “frame sub-folders”
  3. Check advanced button
  4. Check the plugins. I have tried multiple combinations, with and without MultiVolumeImporterPlugin, with and without DICOMVolumeSequencePlugin, etc.

From here on, when I click “Examine”, I only get entries in the advanced tab when I check the DICOMScalarVolumePlugin. There is no ‘MultiVolume’ Entry.
image

If I don’t check the ScalarVolumePlugin, it shows nothing

image

I have also tried this with both Volume Sequence and Multi-volume selected in settings under preferred multi-volume import format.

Do you guys have any tips on how to get this to work?

Sadly, I can’t share my database.

Thanks for any advice on the topic!

Unfortunately when you are doing advanced processing on data you can’t share it’s hard to get the help you need. Your best be here is to get to know the dicom headers used to define frames and read the code to see how the parsing is done. You can use the metadata viewer (from right click menu on any item in the browser). You can also look at the DICOM Patcher module for ideas if you need to patch the files.

I agree with the approach @pieper suggests. However, I want to offer a correction of where to look at the code. DICOMImageSequencePlugin sounds like the right place to be looking, but isn’t (it handles 2D image sequences like ultrasound). Sequences of 3D image volumes are loaded from DICOM using MultiVolumeImporterPlugin, and the code for that is here: MultiVolumeImporter/MultiVolumeImporterPlugin.py at master · fedorov/MultiVolumeImporter · GitHub. You can look at what DICOM tags the MultiVolumeImporterPlugin looks at to decide if a set of DICOM files can be imported as a image volume Sequence, and then also look through the values in your DICOM headers to figure out why they are not being recognized as appropriate for import as a Sequence. Two likely possibilities are that the DICOM headers in your images are incorrect in some way (there are a lot of malformed DICOM files out there!) or, alternatively, your files are fine and the MultiVolumeImporterPlugin needs a new heuristic added to catch the type of files you have and correctly organize them.

thanks for the clarification @mikebind :+1: