フィルターのクリア

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