How to overlap edges from different images?
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Francesco Pignatelli
am 28 Jul. 2022
Kommentiert: Francesco Pignatelli
am 29 Jul. 2022
Hello all,
I have a series of picture from which I have successfully extracted the edge. Now I want to superimpose all the edges but everytime I plot a new figure on the sequence, the new one substitues the old one. For example in my time sequence I have the following as first:

while the second one is:

and when I run my script for these 2 pictures I only have the second one
I have tried with the hold on option but it does not work.
Any suggestion?
2 Kommentare
Jonas
am 28 Jul. 2022
if your edge images are binary and a edge is 1, try
imagesc(im1 | im2)
or imagesc(im1+im2)
Akzeptierte Antwort
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Image Processing Toolbox 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!