to display multiple images on a single frame

1 次查看(过去 30 天)
I tried to display a X-Ray image .. and it successfully working. the code is below..
Y = dicomread('C:\Users\Rehana\Desktop\dicom\test.DCM');
imshow(Y);
imcontrast;
but getting error in the below code, here i am trynig to display multiple images on a single frame .. please help me..
load dicom
[X2,map2] = imread('C:\Program Files\MATLAB\images\'test'*.DCM');
subplot(1,2,1), subimage(X,map)
subplot(1,2,2), subimage(X2,map2)
in this case 'images' is one folder where i stored test1.DCM, test2.DCM,test3.DCM,test4.DCM ( samples of x-ray images )files.

采纳的回答

Chandra Kurniawan
Chandra Kurniawan 2012-1-10
Hi,
It seem you tried to display multiple dicom files in a folder but you use wrong syntax.
And please don't use imread to read dicom file. Use dicomread instead.
Assume that I have 4 dicom files in folder named 'New Folder'.
files = dir(fullfile(pwd,'New Folder\*.dcm'));
for i = 1 : numel(files)
[X map] = dicomread(fullfile(pwd,'New Folder',files(i).name));
if ~isempty(map)
subplot(2,2,i);
subimage(X,map);
else
subplot(2,2,i);
imshow(X,[]);
end
end
  13 个评论
REHANA M.B
REHANA M.B 2012-1-11
Mr.Chandra do you know any text books or any references, sites for learning displaying images in different ways on matlab?? (image processing on matlab).
let me know please..
i hit google for that but unable to get a good one.
REHANA M.B
REHANA M.B 2012-1-16
Hey please tell me how do i display it on GUI with pushbutton??

请先登录,再进行评论。

更多回答(1 个)

Walter Roberson
Walter Roberson 2012-1-10
Instead of posting another copy of your question, answer the query put to you in your existing copy.
Your duplicate copy has been deleted.

类别

Help CenterFile Exchange 中查找有关 Data Import and Analysis 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by