Fusing edges of the images..
조회 수: 1 (최근 30일)
이전 댓글 표시
I do edge extraction of an image using edge operator then i linked all the edges. Now i want to overlay this edges again on the original image to show the edges of the image..How i can i do this?
댓글 수: 0
채택된 답변
David Sanchez
2013년 12월 11일
I = imread('circuit.tif');
BW1 = edge(I,'prewitt');
BW3 = uint8(BW1*255);
imshow(BW1)
figure,imshow(I)
figure,imshow(I+BW3) % this shows the original image with the edges on top
추가 답변 (0개)
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!