to display multiple images on a single frame
이전 댓글 표시
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.
댓글 수: 1
Chandra Kurniawan
2012년 1월 10일
What is the error message?
채택된 답변
추가 답변 (1개)
Walter Roberson
2012년 1월 10일
0 개 추천
Instead of posting another copy of your question, answer the query put to you in your existing copy.
Your duplicate copy has been deleted.
카테고리
도움말 센터 및 File Exchange에서 Convert Image Type에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!