how to combine two different images in matlab?
7 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
ashok
am 1 Feb. 2014
Kommentiert: Walter Roberson
am 1 Feb. 2014
how can i add two functions ? how can i add two images
0 Kommentare
Akzeptierte Antwort
Walter Roberson
am 1 Feb. 2014
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 Kommentare
Image Analyst
am 1 Feb. 2014
Bearbeitet: Image Analyst
am 1 Feb. 2014
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
am 1 Feb. 2014
Ashok didn't say anything about wanting to prevent clipping. I suspect Ashok has not thought about that problem.
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Image Preview and Device Configuration finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!