how are number of edges differ from one edge detecting method to another?

1 visualización (últimos 30 días)
on basis of what parameter edges can be identified in an imge? and what makes different in number of edges from each edge detecting methods like canny,sobel and fuzzy?

Respuestas (2)

Image Analyst
Image Analyst el 16 de Ag. de 2019
They use different algorithm so of course they're not going to agree on every single pixel. You can look up the precise algorithms online if you want - no sense in me explaining them, or copying and pasting the descriptions here, when you can just look them up.

jagadeesh gondela
jagadeesh gondela el 19 de Ag. de 2019
how can i get count of total number of edges in an image? Is there any code for that?
  1 comentario
Image Analyst
Image Analyst el 19 de Ag. de 2019
If you like the edges that your algorithm gives you, then you can count them with bwlabel():
[~, numEdges] = bwlabel(binaryImage);

Iniciar sesión para comentar.

Community Treasure Hunt

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

Start Hunting!

Translated by