How to run 'dicomanon' on all '.dcm' files in a directory (including all subfolders)?

3 vues (au cours des 30 derniers jours)
Peter Rush
Peter Rush le 29 Juil 2019
Réponse apportée : Rik le 29 Juil 2019
Hi,
I'm new to Matlab and coding in general. I need to remove the patient information from a large number of dicom files. I need to write a script that finds all the dicom files in a given directory (including all subfolders) and applies to 'dicomanon' function to them.
The root directory contains 14 separate folders for different batches of scans, and each of those 14 folders contains two subfolders (one subfolder containing DTI scans and the other for T1 scans).
I've got a backup copy of the folder so I'd like to anonymise the files without changing the names or the strcuture of the file hierarchy. Any advice on how I might do this would be much appreciated.
Thanks!

Réponses (1)

Rik
Rik le 29 Juil 2019
Use the dir function to generate a full file list and then loop through them.
list=dir('C:\path\**\*.dcm');

Catégories

En savoir plus sur DICOM Format dans Help Center et File Exchange

Tags

Produits


Version

R2018b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by