2 questions as a newbie

Hello. I am currently measuring the brain tumor volumes of multiple patients using 3D Slicer and have encountered some issues that I hope you can help me resolve. Thank you in advance for your assistance.

  1. Patient Recognition in DICOM Database: When I load DICOM files for multiple patients into the DICOM database in 3D Slicer, the software seems to recognize them as a single patient with multiple MRI studies. How can I load each patient with their respective MRI data separately?
  2. Measuring Tumor Volumes for Multiple MRI Series: When measuring tumor volumes for two MRI series (e.g., the initial MRI and follow-up MRI for the same patient) and checking the volumes using segmentation statistics, do I need to perform these measurements one by one? For instance, measuring the tumor volume of the initial MRI, checking the volume, and then repeating the same process for the follow-up MRI. If I measure all volumes first and then check the statistics, I am only able to see the volume of the last MRI, and cannot review volumes for the prior MRIs. How can I address this issue?

It looks like all your studies have been given the same patient name and ID, which is why they are all treated as the same patient. You would need to revisit your anonymization procedure to, for example, assign pseudonym IDs for each patient.

For the tumor metrics, the first calculation creates a table and this is re-used unless you create a new one. One option is to create new tables for each calculation or you can copy-paste the results from the table into a spreadsheet or other document to track. Or you could write some small python scripts to help work through a large number of studies and organize the results.

Thank you for your help.
Some point, I don’t understand…
could you tell me more?

  1. Is the anonymization occurring during the process of downloading DICOM files?
    Because, I downloaded all the dicom data from different patients.
  2. The main point of my question is whether it’s possible to measure tumor volumes in a continuous manner across multiple MRIs first and then obtain statistical values collectively.

ThankS!

Yes, your anonymization process is assigning the same IDs to all patients. It should assign different names to different patients.

It’s not clear to me what you mean by continuous. You can segment each case one by one and record the statistics someplace like a spreadsheet or database.