overlay to image matrix together
3 ビュー (過去 30 日間)
古いコメントを表示
I want to overlay two images (in resultant image I want to see details of both images.) any one can help me?
1 件のコメント
Jan
2013 年 9 月 12 日
Please avoid posting multiple thread containing the same questions, see http://www.mathworks.com/matlabcentral/answers/87007-overlay-two-image-matrix-together. Now both threads contains answers and the confusion level is increased without any need.
採用された回答
Image Analyst
2013 年 9 月 12 日
Try imfuse() or imshowpair().
3 件のコメント
Image Analyst
2013 年 9 月 12 日
編集済み: Image Analyst
2013 年 9 月 12 日
You used a + instead of a comma. Try imfuse(H,V). Plus you need to have a modern version of MATLAB. You probably should upgrade to R2013b, because you probably have an ancient version.
その他の回答 (2 件)
Laurent
2013 年 9 月 12 日
It depends a lot on your images and what you exactly want, but did you try to just sum them?
overlay_im=image1+image2;
If this is not what you need, please elaborate more on what you would like to achieve.
Steve Eddins
2013 年 9 月 12 日
Image Analyst's answer to use imfuse is good. To use imfuse, you have to have the Image Processing Toolbox with version R2012a or later.
参考
カテゴリ
Help Center および File Exchange で Image Processing Toolbox についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!