hi,how to display two image in the same window with matlab?

1 view (last 30 days)
i write a code in the matlab in order to improve the qulity of my dicom image and after implement this change, i want to show the original and improved image in the same window for comparing two obtained image. my matlab platform is R2013a in the unix system. thanks in advance to your attention and maybe your answer.

Accepted Answer

Image Analyst
Image Analyst on 3 Jul 2016
Try imshowpair() or imfuse(). If they're not in your 3 year old version then upgrade to the newest version or else stitch them together with , or ;.
wideImage = [image1,image2];
tallImage = [image1;image2];

More Answers (0)

Categories

Find more on DICOM Format in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!