Borrar filtros
Borrar filtros

Fusing edges of the images..

2 visualizaciones (últimos 30 días)
D.Regan
D.Regan el 11 de Dic. de 2013
Comentada: D.Regan el 11 de Dic. de 2013
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?

Respuesta aceptada

David Sanchez
David Sanchez el 11 de Dic. de 2013
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 comentario
D.Regan
D.Regan el 11 de Dic. de 2013
thanks for ur response..

Iniciar sesión para comentar.

Más respuestas (0)

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by