How do i get the filename of a dicom file ? I want to open dicom file with study description -"CSP"

6 Ansichten (letzte 30 Tage)
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)

Akzeptierte Antwort

yanqi liu
yanqi liu am 28 Okt. 2021
clc; clear all
details = dicomCollection(fullfile(matlabroot,'toolbox/images/imdata'));
disp(details);
A=details("s3",14)
A(1,:).Filenames{1}
  4 Kommentare
yanqi liu
yanqi liu am 29 Okt. 2021
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]);

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (1)

Cris LaPierre
Cris LaPierre am 27 Okt. 2021
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 Kommentare

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Geometric Transformation and Image Registration finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by