How do i get the filename of a dicom file ? I want to open dicom file with study description -"CSP"
4 ビュー (過去 30 日間)
古いコメントを表示
Samson David Puthenpeedika
2021 年 10 月 27 日
コメント済み: Samson David Puthenpeedika
2021 年 10 月 30 日
Tried getting info from dicomcollection but filename variable was showing 22x1 string
details = dicomCollection(fullfile(matlabroot,'toolbox/images/imdata'));
disp(details);
A=details("s3",14)
0 件のコメント
採用された回答
yanqi liu
2021 年 10 月 28 日
clc; clear all
details = dicomCollection(fullfile(matlabroot,'toolbox/images/imdata'));
disp(details);
A=details("s3",14)
A(1,:).Filenames{1}
4 件のコメント
yanqi liu
2021 年 10 月 29 日
clc; clear all; close all;
details = dicomCollection(fullfile(matlabroot,'toolbox/images/imdata'));
disp(details);
A=details("s3",14);
B=A(1,:).Filenames{1};
Y=[];cmap=[];
for i = 1 : length(B)
Y{i}=mat2gray(dicomread(B{i}));
end
montage(Y, 'Size', [5 5]);
その他の回答 (1 件)
Cris LaPierre
2021 年 10 月 27 日
That appears to be correct. That is a series of images (22 images). You can find them here:
fullfile(matlabroot,'toolbox/images/imdata/dog')
4 件のコメント
Walter Roberson
2021 年 10 月 29 日
[Y,cmap]=dicomread(fullfile(matlabroot,'toolbox/images/imdata/dog', A.Filenames{1,1}));
m
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!