How to overlap edges from different images?
조회 수: 1 (최근 30일)
이전 댓글 표시
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:
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1081085/image.png)
while the second one is:
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1081090/image.png)
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
Jonas
2022년 7월 28일
if your edge images are binary and a edge is 1, try
imagesc(im1 | im2)
or imagesc(im1+im2)
채택된 답변
추가 답변 (0개)
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!