필터 지우기
필터 지우기

Fusing edges of the images..

조회 수: 2 (최근 30일)
D.Regan
D.Regan 2013년 12월 11일
댓글: D.Regan 2013년 12월 11일
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?

채택된 답변

David Sanchez
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
  댓글 수: 1
D.Regan
D.Regan 2013년 12월 11일
thanks for ur response..

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by