how to combine two different images in matlab?
2 次查看(过去 30 天)
显示 更早的评论
how can i add two functions ? how can i add two images
0 个评论
采纳的回答
Walter Roberson
2014-2-1
newimage = image1 + image2;
Unless the two images are not the same size. Or unless you do not mean "add" in the arithmetic sense and instead mean something like "put them side by side".
2 个评论
Image Analyst
2014-2-1
编辑:Image Analyst
2014-2-1
If they're integers (uint8 or uint16), cast to double to prevent clipping.
Regarding Walter's display suggestion, try imshowpair(), imfuse(), or montage().
Walter Roberson
2014-2-1
Ashok didn't say anything about wanting to prevent clipping. I suspect Ashok has not thought about that problem.
更多回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!