MATLABでフォルダ内の全てのDICOM画像を読み込む方法
8 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
RYO ARATA
le 5 Oct 2022
Modifié(e) : Atsushi Ueno
le 6 Oct 2022
特定のフォルダ内にある複数のDICOM画像を全てMATLABで読み込む方法をご享受願います。
0 commentaires
Réponse acceptée
Atsushi Ueno
le 5 Oct 2022
Modifié(e) : Atsushi Ueno
le 6 Oct 2022
dicomDir = uigetdir(pwd); % 画像が含まれるフォルダを選択する
dicomds = imageDatastore(dicomDir,'FileExtensions','.dcm','ReadFcn',@dicomread); % イメージデータストア作成
dicomimg = readall(dicomds);
0 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur DICOM Format dans Help Center et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!