MATLABでフォルダ内の全てのDICOM画像を読み込む方法
17 views (last 30 days)
Show older comments
特定のフォルダ内にある複数のDICOM画像を全てMATLABで読み込む方法をご享受願います。
0 Comments
Accepted Answer
Atsushi Ueno
on 5 Oct 2022
Edited: Atsushi Ueno
on 6 Oct 2022
dicomDir = uigetdir(pwd); % 画像が含まれるフォルダを選択する
dicomds = imageDatastore(dicomDir,'FileExtensions','.dcm','ReadFcn',@dicomread); % イメージデータストア作成
dicomimg = readall(dicomds);
0 Comments
More Answers (0)
See Also
Categories
Find more on DICOM Format in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!